/* Payment Pages Stylesheet — Ajeet Yadav Portfolio */
:root {
    --bg-main: #f8fafc;
    --bg-alt: #ffffff;
    --bg-card: #ffffff;
    --text-main: #334155;
    --text-heading: #0f172a;
    --text-muted: #64748b;
    --primary: #4f46e5;
    --primary-glow: rgba(79, 70, 229, 0.25);
    --secondary: #0ea5e9;
    --accent: #f43f5e;
    --success: #10b981;
    --border: #e2e8f0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0/0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0/0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0/0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0/0.1);
    --shadow-colored: 0 10px 25px -5px var(--primary-glow);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font-body);
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-heading)
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}

.section-padding {
    padding: 100px 0
}

/* Utility */
.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: .5rem
}

.section-heading {
    text-align: center;
    margin-bottom: 4rem
}

.section-heading h2 {
    font-size: 2.8rem;
    font-weight: 800
}

.hidden {
    display: none !important
}

/* Navigation */
.pill-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 850px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

.pill-nav {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.pill-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -.5px
}

.nav-back {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: .9rem;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: white;
    transition: var(--transition)
}

.nav-back:hover {
    color: var(--primary);
    border-color: var(--primary)
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
    text-align: center;
    width: 100%
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff !important;
    box-shadow: var(--shadow-colored)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px var(--primary-glow)
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary) !important
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-2px)
}

.btn-white {
    background: #fff !important;
    color: var(--primary) !important;
    border: none;
    width: auto;
    padding: 14px 40px
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2)
}

.btn-auto {
    width: auto
}

/* Hero */
.pay-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 50%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    text-align: center
}

.pay-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(79, 70, 229, .05) 0%, transparent 60%)
}

.pay-hero-content {
    position: relative;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 8px 20px;
    background: rgba(79, 70, 229, .1);
    border: 1px solid rgba(79, 70, 229, .2);
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem
}

.pay-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1rem
}

.pay-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border)
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 500
}

.trust-item i {
    color: var(--success)
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-main)
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap
}

.toggle-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition)
}

.toggle-label.active {
    color: var(--text-heading)
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    cursor: pointer;
    flex-shrink: 0
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    transition: var(--transition)
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition)
}

.toggle-switch input:checked+.toggle-slider::before {
    transform: translateX(28px)
}

.save-badge {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl)
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, .08);
    transform: scale(1.03)
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px)
}

.popular-badge {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: .8rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 30px;
    white-space: nowrap
}

.pricing-card.popular .popular-badge {
    display: block
}

.plan-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem
}

.plan-icon.starter {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: var(--secondary)
}

.plan-icon.growth {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: var(--primary)
}

.plan-icon.elite {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706
}

.plan-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: .3rem
}

.plan-desc {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    min-height: 40px
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: .3rem;
    margin-bottom: .3rem
}

.currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-heading)
}

.amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-heading);
    line-height: 1
}

.period {
    font-size: .85rem;
    color: var(--text-muted)
}

.original-price {
    font-size: .85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 1.2rem
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 1.2rem 0
}

.plan-features {
    margin-bottom: 1.8rem
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    margin-bottom: .8rem;
    font-size: .9rem;
    color: var(--text-main)
}

.feature-item i {
    margin-top: 3px;
    flex-shrink: 0;
    font-size: .85rem
}

.feature-item:not(.na) i {
    color: var(--success)
}

.feature-item.na i {
    color: #cbd5e1
}

.feature-item.na span {
    color: var(--text-muted)
}

.plan-note {
    font-size: .78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: .8rem
}

/* Services */
.services-section {
    padding: 80px 0;
    background: white
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.service-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-main);
    transition: var(--transition)
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, .3)
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: .4rem
}

.service-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-main)
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden
}

.faq-q {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text-heading);
    gap: 1rem;
    user-select: none;
    transition: var(--transition)
}

.faq-q:hover {
    color: var(--primary)
}

.faq-q i {
    transition: var(--transition);
    color: var(--primary);
    flex-shrink: 0
}

.faq-item.open .faq-q i {
    transform: rotate(180deg)
}

.faq-a {
    display: none;
    padding: 0 1.5rem 1.2rem;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7
}

.faq-item.open .faq-a {
    display: block
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
    text-align: center
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 70, 229, .3), transparent 70%)
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, .3), transparent 70%)
}

.cta-content {
    position: relative;
    z-index: 2
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem
}

.cta-content p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    margin-bottom: 2rem
}

.cta-accent {
    color: #a5b4fc
}

/* Footer */
.site-footer {
    background: #0f172a;
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, .5);
    font-size: .9rem
}

.site-footer a {
    color: rgba(255, 255, 255, .7);
    margin: 0 .8rem
}

.site-footer a:hover {
    color: white
}

/* Checkout page specific */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: start;
    padding-top: 130px;
    padding-bottom: 80px
}

/* checkout-form-section and checkout-summary-section use default block layout */

.form-card,
.summary-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm)
}

.form-card+.form-card {
    margin-top: 1.5rem
}

.form-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: .3rem
}

.form-card .sub {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem
}

.form-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.form-card h3 i {
    color: var(--primary)
}

.form-group {
    margin-bottom: 1.2rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: .4rem
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text-heading);
    background: white;
    transition: var(--transition);
    outline: none
}

input:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .12)
}

.card-input-wrapper {
    position: relative
}

.card-icon-group {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
    align-items: center
}

.card-icon-group img,
.card-icon-group .ci {
    width: 32px;
    height: 20px;
    border-radius: 3px;
    object-fit: contain
}

.card-brand-icons {
    display: flex;
    gap: .4rem;
    margin-top: .8rem;
    flex-wrap: wrap
}

.card-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 30px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: .65rem;
    font-weight: 700;
    color: var(--text-muted);
    background: white
}

.card-brand.visa {
    color: #1a1f71
}

.card-brand.mc {
    color: #eb001b
}

.card-brand.rupay {
    color: #1a6bb5
}

.card-brand.amex {
    color: #007bc1
}

/* UPI section */
.upi-option {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: .8rem
}

.upi-option:hover {
    border-color: var(--primary)
}

.upi-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    flex-shrink: 0
}

.upi-option-label {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-heading)
}

.upi-option-label span {
    font-size: .8rem;
    color: var(--text-muted);
    display: block
}

.upi-apps {
    display: flex;
    gap: .8rem;
    margin-top: 1rem;
    flex-wrap: wrap
}

.upi-app-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    background: white;
    transition: var(--transition)
}

.upi-app-btn:hover {
    border-color: var(--primary);
    color: var(--primary)
}

/* Pay method tabs */
.pay-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0
}

.pay-tab {
    padding: 10px 16px;
    border-radius: 8px 8px 0 0;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    margin-bottom: -2px
}

.pay-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(79, 70, 229, .04)
}

.pay-panel {
    display: none
}

.pay-panel.active {
    display: block
}

/* Order Summary */
.summary-plan-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: .3rem
}

.summary-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 4px 12px;
    background: rgba(79, 70, 229, .1);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 1.2rem
}

.summary-features {
    margin-bottom: 1.2rem
}

.summary-feature {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    color: var(--text-main);
    margin-bottom: .6rem
}

.summary-feature i {
    color: var(--success);
    font-size: .8rem
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: .5rem
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-heading)
}

.gst-note {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .3rem;
    text-align: right
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: 1rem
}

.secure-note i {
    color: var(--success)
}

.secure-badges {
    display: flex;
    gap: .8rem;
    justify-content: center;
    margin-top: .8rem;
    flex-wrap: wrap
}

.s-badge {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    color: var(--text-muted);
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white
}

.s-badge i {
    font-size: .75rem;
    color: var(--primary)
}

/* Success / failed pages */
.result-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    text-align: center
}

.result-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 1.5rem;
    animation: pop 0.5s cubic-bezier(.175, .885, .32, 1.275) both
}

.result-icon-wrap.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: var(--success)
}

.result-icon-wrap.failed {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #ef4444
}

@keyframes pop {
    0% {
        transform: scale(0);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.result-page h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: .8rem
}

.result-page p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2rem
}

.result-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    margin: 0 auto 2rem;
    text-align: left
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .92rem
}

.result-row:last-child {
    border-bottom: none
}

.result-row .label {
    color: var(--text-muted)
}

.result-row .value {
    font-weight: 700;
    color: var(--text-heading)
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.result-actions .btn {
    width: auto;
    padding: 12px 28px
}

/* Confetti canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999
}

/* Responsive */
@media(max-width:1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 120px
    }

    .checkout-summary-section {
        order: -1
    }
}

@media(max-width:900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto
    }

    .pricing-card.popular {
        transform: none
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px)
    }

    .services-grid {
        grid-template-columns: 1fr 1fr
    }

    .pay-hero h1 {
        font-size: 2.5rem
    }
}

@media(max-width:600px) {
    .services-grid {
        grid-template-columns: 1fr
    }

    .pay-hero h1 {
        font-size: 2rem
    }

    .section-heading h2 {
        font-size: 2rem
    }

    .trust-bar {
        gap: .8rem
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .cta-content h2 {
        font-size: 1.8rem
    }
}

/* =============================================
   FULL FOOTER — Payment Pages
   ============================================= */
.main-footer {
    background: #0f172a;
    padding: 60px 0 0;
    color: rgba(255, 255, 255, .65);
    font-size: .92rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    display: inline-block;
    margin-bottom: .8rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, .5);
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 1.2rem;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    list-style: none;
}

.footer-links-group ul li a {
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
    transition: var(--transition);
}

.footer-links-group ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .35);
    font-size: .85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .35);
    font-size: .82rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, .8);
}

/* =============================================
   LEGAL / INFO PAGES
   ============================================= */
.legal-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: .8rem;
}

.legal-hero p {
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .6);
}

.breadcrumb a:hover {
    color: #fff;
}

.legal-body {
    padding: 70px 0;
    background: var(--bg-main);
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 2rem 0 .8rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: .8rem 0 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    list-style: disc;
}

.legal-content ul li {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--text-heading);
}

.legal-content a {
    color: var(--primary);
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 6px 14px;
    background: rgba(79, 70, 229, .08);
    border: 1px solid rgba(79, 70, 229, .15);
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

/* Contact page */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 920px;
    margin: 0 auto;
}

.contact-info-card,
.contact-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: .2rem;
}

.contact-detail p,
.contact-detail a {
    font-size: .9rem;
    color: var(--text-muted);
}

.contact-form-card h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text-heading);
    background: white;
    transition: var(--transition);
    outline: none;
    resize: vertical;
    min-height: 120px;
}

textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .12);
}

/* About page */
.about-hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem auto;
    max-width: 820px;
}

.about-stat {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.about-stat h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: .3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stat p {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.team-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 820px;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.team-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: .2rem;
}

.team-info .role {
    color: var(--primary);
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .6rem;
    display: block;
}

.team-info p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.value-card p {
    font-size: .85rem;
    color: var(--text-muted);
}

@media(max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-card {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:600px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .about-stats,
    .values-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================
   PLAN SELECTION — Card Selected State
   ========================================== */
.pricing-card.card-selected {
    border-color: #4f46e5 !important;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.18), 0 20px 50px rgba(79, 70, 229, 0.15) !important;
    transform: translateY(-6px) !important;
}

.select-plan-btn {
    transition: all .25s;
}

.select-plan-btn.btn-selected {
    background: linear-gradient(135deg, #4f46e5, #0ea5e9) !important;
    color: white !important;
    border-color: transparent !important;
}

.pricing-card.popular.card-selected {
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25), 0 24px 60px rgba(79, 70, 229, 0.2) !important;
}

/* ==========================================
   STICKY PLAN BAR — Bottom Proceed Bar
   ========================================== */
.plan-sticky-bar {
    position: fixed;
    bottom: -120px;
    left: 0;
    right: 0;
    z-index: 999;
    background: #0f172a;
    border-top: 2px solid rgba(79, 70, 229, 0.5);
    padding: .9rem 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,.3);
    transition: bottom .4s cubic-bezier(.34,1.56,.64,1);
}

.plan-sticky-bar.visible {
    bottom: 0;
}

.sticky-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.sticky-plan-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-label {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sticky-plan-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: white;
}

.sticky-plan-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #a5b4fc;
    background: rgba(79,70,229,.25);
    padding: 3px 12px;
    border-radius: 20px;
}

.sticky-actions {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.sticky-change-btn {
    display: flex; align-items: center; gap: .35rem;
    padding: 9px 16px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px;
    font-size: .82rem; font-weight: 600;
    cursor: pointer; transition: all .2s;
}
.sticky-change-btn:hover {
    background: rgba(255,255,255,.14);
    color: white;
}

.sticky-proceed-btn {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: 12px 28px;
    background: linear-gradient(135deg, #4f46e5, #0ea5e9);
    color: white !important;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: .95rem; font-weight: 800;
    text-decoration: none;
    transition: all .25s;
    box-shadow: 0 6px 24px rgba(79,70,229,.5);
    white-space: nowrap;
    animation: pulse-glow 2s infinite;
}
.sticky-proceed-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 32px rgba(79,70,229,.6);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 6px 24px rgba(79,70,229,.5); }
    50%       { box-shadow: 0 8px 32px rgba(79,70,229,.8); }
}

@media (max-width: 600px) {
    .plan-sticky-bar .container { flex-direction: column; text-align: center; }
    .sticky-plan-info { justify-content: center; }
    .sticky-actions { width: 100%; justify-content: center; }
    .sticky-proceed-btn { flex: 1; justify-content: center; }
}
