:root {
    --blue: #3d52a0;
    /* brand indigo — pms-aif-india.com accent */
    --blue-dark: #2e3f7f;
    /* hover state only */
    --blue-deeper: #2e3f7f;
    --blue-light: #f0f3fb;
    /* barely-blue tint for badges only */
    --blue-mid: #c5cce8;
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --amber-light: #fef3c7;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --text: #1a202c;
    /* near-black charcoal */
    --text-mid: #2d3748;
    --text-muted: #64748b;
    --text-faint: #94a3b8;
    --border: #e8edf5;
    --border-blue: #d0d8ef;
    --success: #16a34a;
    --success-bg: #f0fdf4;
    --danger: #dc2626;
    --danger-bg: #fef2f2;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(61, 82, 160, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(61, 82, 160, 0.12), 0 4px 16px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.page-content {
    padding-top: 0;
    padding-bottom: 0;
}

/* HERO — split layout */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 460px;
    min-height: 100vh;
}

/* Hero left — white bg, dark text, indigo accent only on small elements */
.hero-left {
    background: var(--white);
    padding: 72px 24px 72px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--border);
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(61, 82, 160, 0.03);
    pointer-events: none;
}

.hero-left::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(61, 82, 160, 0.02);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-light);
    border: 1px solid var(--border-blue);
    color: var(--blue);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    width: fit-content;
    animation: fadeUp .5s ease both;
}

.eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amber);
}

.hero-left h1 {
    font-size: clamp(36px, 3.6vw, 54px);
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -2px;
    color: var(--text);
    margin-bottom: 22px;
    animation: fadeUp .5s .08s ease both;
}

.hero-left h1 em {
    font-style: normal;
    color: var(--blue);
}

.hero-problem {
    background: var(--off-white);
    border-left: 3px solid var(--amber);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin-bottom: 28px;
    animation: fadeUp .5s .14s ease both;
}

.hero-problem p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.hero-problem strong {
    color: var(--text-mid);
    font-weight: 600;
}

.hero-checks {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    animation: fadeUp .5s .2s ease both;
}

.hero-checks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.hc-tick {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.12);
    border: 1.5px solid rgba(245, 158, 11, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-dark);
    font-size: 9px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    animation: fadeUp .5s .26s ease both;
}

.btn-amber-pill {
    background: #fdaa38;
    color: #fff;
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .15s, transform .15s, box-shadow .15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-amber-pill:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 82, 160, 0.25);
}

.btn-ghost-white {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
}

.btn-ghost-white:hover {
    color: var(--text);
}

.hero-trust {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 28px;
    animation: fadeUp .5s .32s ease both;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.trust-label {
    font-size: 11px;
    color: var(--text-faint);
    font-weight: 400;
}

/* Right: form */
.hero-right {
    /* background: var(--off-white); */
    border-left: 1px solid var(--border);
    padding: 52px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeUp .5s .1s ease both;
}

.form-heading {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.form-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.fg {
    margin-bottom: 12px;
}

.fg label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 5px;
    letter-spacing: 0.2px;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 13px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: var(--text-faint);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(48, 74, 166, 0.09);
}

.fg select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
}

.fg textarea {
    resize: none;
    height: 76px;
}

.fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 9px;
}

.check-row input[type=checkbox] {
    width: 15px;
    height: 15px;
    accent-color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.check-row label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.check-row label a {
    color: var(--blue);
    text-decoration: none;
}

.check-row label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background .15s, transform .15s, box-shadow .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(48, 74, 166, 0.3);
}

.form-lock {
    font-size: 11px;
    color: var(--text-faint);
    text-align: center;
    margin-top: 10px;
}

/* STATS BAR */
.stats-bar {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0 56px;
    display: flex;
    align-items: stretch;
}

.stat-item {
    flex: 1;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 20px;
}

.stat-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.stat-lbl {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 1px;
}

/* SECTION UTILS */
section#services, section.compare-bg, section.who-bg{
    padding: 64px 0;
}

.section-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 56px;
}

.section-head {
    padding: 68px 0 44px;
    padding-top: 0;
}

.s-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

.s-title {
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 10px;
}

.s-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.65;
}

hr.divider {
    border: none;
    border-top: 1px solid var(--border);
}

/* SERVICES */
.services-bg {
    background: var(--off-white);
}

.services-bg .section-wrap {
    padding-bottom: 68px;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.svc-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 24px 22px;
    position: relative;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    cursor: default;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity .2s;
}

.svc-card:hover {
    border-color: var(--border-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.svc-num-badge {
    background: var(--blue-light);
    color: var(--blue);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.svc-emoji {
    font-size: 22px;
}

.svc-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.svc-card ul {
    list-style: none;
    margin-bottom: 14px;
}

.svc-card ul li {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    padding: 3px 0 3px 16px;
    position: relative;
}

.svc-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
}

.svc-result {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
}

/* COMPARE */
.compare-bg {
    background: var(--white);
}

.compare-bg .section-wrap {
    padding-bottom: 68px;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cmp-col {
    border-radius: 14px;
    padding: 28px 26px;
    border: 1.5px solid transparent;
}

.cmp-col.bad {
    background: var(--danger-bg);
    border-color: #fecaca;
}

.cmp-col.good {
    background: var(--success-bg);
    border-color: #bbf7d0;
}

.cmp-col h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cmp-col.bad h3 {
    color: #b91c1c;
}

.cmp-col.good h3 {
    color: #15803d;
}

.cmp-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 13.5px;
    line-height: 1.5;
}

.cmp-step:last-child {
    border-bottom: none;
}

.cmp-col.bad .cmp-step {
    color: #991b1b;
}

.cmp-col.good .cmp-step {
    color: #166534;
}

.cmp-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

/* WHO */
.who-bg {
    background: var(--off-white);
}

.who-bg .section-wrap {
    padding-bottom: 68px;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.who-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 22px 20px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.who-card:hover {
    border-color: var(--border-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.who-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.who-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.who-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}

.goals-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.goal-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1.5px solid var(--border-blue);
    color: var(--blue);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    transition: background .15s, border-color .15s;
}

.goal-pill:hover {
    background: var(--blue-light);
    border-color: var(--blue);
}

.goal-pill::before {
    content: '✓';
    font-weight: 700;
    font-size: 11px;
}



.btn-amber-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 15px 38px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s, transform .15s, box-shadow .15s;
}

.btn-amber-lg:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(61, 82, 160, 0.25);
}

.cta-band {
  background: linear-gradient(135deg, #fdaa38, #ffd051);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-band h3 {
  font-size: 26px;
  margin-bottom: 22px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn--ghost-white {
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.2s ease;
}


/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .07s;
}

.d2 {
    transition-delay: .14s;
}

.d3 {
    transition-delay: .21s;
}

.d4 {
    transition-delay: .28s;
}

.d5 {
    transition-delay: .35s;
}

.d6 {
    transition-delay: .42s;
}

/* RESPONSIVE */
@media(max-width:1024px) {
    nav {
        padding: 0 28px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 56px 28px;
    }

    .hero-right {
        padding: 40px 28px;
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .stats-bar {
        padding: 0 28px;
        flex-wrap: wrap;
    }

    .stat-item {
        padding: 20px 16px;
    }

    .section-wrap {
        padding: 0 28px;
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:640px) {
    .hero-left h1 {
        letter-spacing: -1px;
    }

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

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

    .fg-row {
        grid-template-columns: 1fr;
    }

    .nav-right a:not(.nav-btn) {
        display: none;
    }
}


@media screen and (max-width: 512px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-left::before {
        visibility: hidden;
    }

    .stats-bar {
        padding: 0 8px;
    }

    .who-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}