*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --navy: #0F2D4A;
    --amber: #E8A020;
    --amber-light: #FFF3DC;
    --amber-mid: #F5C46A;
    --green: #1D9E75;
    --green-light: #E1F5EE;
    --cream: #FAF7F2;
    --cream-dark: #F2EDE4;
    --text: #1A1A2E;
    --text-mid: #4A4A6A;
    --text-light: #8A8AA0;
    --white: #FFFFFF;
    --border: rgba(15, 45, 74, 0.1);
    --shadow: 0 4px 24px rgba(15, 45, 74, 0.08);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(15, 45, 74, 0.06)
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--navy)
}

.logo-name span {
    color: var(--amber)
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--navy)
}

.nav-cta {
    background: var(--amber);
    color: var(--navy);
    border: none;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 2.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto
}

.pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.75rem
}

.pill {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    cursor: pointer
}

.pill-amber {
    background: var(--amber);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(232, 160, 32, 0.3)
}

.pill-outline {
    background: transparent;
    color: var(--text-mid);
    border: 1px solid var(--border)
}

.hero-h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--navy)
}

.hero-h1 .amber-line {
    color: var(--amber);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500
}

.hero-sub {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    max-width: 520px;
    margin: 1.25rem 0 2rem
}

.hero-sub strong {
    color: var(--navy);
    font-weight: 600;
    background: var(--amber-light);
    padding: 1px 5px;
    border-radius: 3px
}

.btn-group {
    display: flex;
    gap: 12px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 13px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s
}

.btn-primary:hover {
    background: #1a3d5c
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 13px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white)
}

.trust-badges {
    display: flex;
    gap: 12px
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: var(--shadow)
}

.badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0
    
}

.badge-icon.navy {
    background: var(--navy);
}

.badge-icon.amber {
    background: var(--amber-light);
}

.badge-text-top {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.badge-text-sub {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 1px
}

.hero-right {
    position: relative
}

.ca-cert-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem
}

.ca-cert-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(232, 160, 32, 0.08)
}

.cert-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 160, 32, 0.15);
    border: 1px solid rgba(232, 160, 32, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 1.5rem
}

.cert-badge-top span {
    font-size: 11px;
    font-weight: 600;
    color: var(--amber-mid);
    letter-spacing: 0.05em;
    text-transform: uppercase
}

.cert-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

.cert-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0.5rem
}

.cert-title .amber {
    color: var(--amber-mid)
}

.cert-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.75rem
}

.cert-preview {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--amber)
}

.cert-preview-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem
}

.cert-preview-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

.cert-preview-body {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 300
}

.cert-preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(15, 45, 74, 0.08)
}

.cert-ca-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy)
}

.cert-ca-num {
    font-size: 11px;
    color: var(--text-light)
}

.cert-stamp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.cert-stamp span {
    font-size: 7px;
    font-weight: 700;
    color: var(--amber);
    line-height: 1.2;
    text-align: center
}

.mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.mini-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
    cursor: pointer
}

.mini-card:hover {
    border-color: var(--amber)
}

.mini-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    font-size: 15px
}

.mini-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px
}

.mini-card-sub {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.5
}

.float-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--amber);
    color: var(--navy);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(232, 160, 32, 0.4);
    z-index: 10;
    white-space: nowrap
}

.stats-strip {
    background: var(--navy);
    padding: 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat-item {
    text-align: center;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgb(255 255 255 / 50%);
}

.stat-item:last-child {
    border-right: none
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--amber-mid);
    display: block;
    margin-bottom: 4px
}
.stat-label {
    font-size: 12px;
    color: rgb(255 255 255);
}


.section {
    padding: 5rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto
}

.section-full {
    padding: 5rem 2.5rem;
    background: var(--cream-dark)
}

.section-full .inner {
    max-width: 1200px;
    margin: 0 auto
}

.sec-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.6rem
}

.sec-h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--navy);
    margin-bottom: 0.6rem;
    line-height: 1.2
}

.sec-h2 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--amber);
    font-weight: 500
}

.sec-sub {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    /* max-width: 540px; */
    margin-bottom: 2.5rem
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0
}

.ca-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.ca-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem
}

.ca-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border)
}

.ca-point-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--amber-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px
}

.ca-point-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px;
}

.ca-point-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 300;
}

.cert-full {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative
}

.cert-full::before {
    content: 'OFFICIAL';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 80px;
    font-weight: 800;
    color: rgba(232, 160, 32, 0.04);
    white-space: nowrap;
    pointer-events: none
}

.cert-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border)
}

.cert-logo-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--navy)
}

.cert-logo-text span {
    color: var(--amber)
}

.cert-header-right {
    text-align: right
}

.cert-header-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em
}

.cert-header-val {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy)
}

.cert-title-big {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.5rem
}

.cert-subtitle {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem
}

.cert-body-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 300
}

.cert-body-text strong {
    color: var(--navy);
    font-weight: 600
}

.cert-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.cert-detail-item {
    padding: 0.75rem 1rem;
    background: var(--cream);
    border-radius: 8px
}

.cert-detail-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px
}

.cert-detail-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy)
}

.cert-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border)
}

.cert-sign-area {
    text-align: center
}

.cert-sign-line {
    width: 100px;
    height: 1px;
    background: var(--navy);
    margin: 0 auto 4px
}

.cert-sign-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy)
}

.cert-sign-label {
    font-size: 10px;
    color: var(--text-light)
}

.cert-seal {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2.5px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--amber-light);
}

.cert-seal-text {
    font-size: 8px;
    font-weight: 700;
    color: var(--amber);
    text-align: center;
    line-height: 1.3
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem
}

.serve-card {
    padding: 1.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s
}

.serve-card:hover {
    border-color: var(--amber);
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.serve-card.featured {
    background: var(--navy);
    border-color: var(--navy)
}

.serve-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    margin: 0 auto 15px;
    background: #0f2d4a;
}


.serve-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px
}

.serve-card.featured .serve-title {
    color: var(--white)
}

.serve-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6
}

.serve-card.featured .serve-desc {
    color: rgba(255, 255, 255, 0.55)
}

.serve-tag {
    display: inline-block;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    background: var(--amber-light);
    color: var(--amber);
    font-weight: 600;
    margin-top: 0.5rem
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.svc-card {
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s
}

.svc-card:hover {
    border-color: var(--amber);
    box-shadow: var(--shadow)
}

.svc-card.flagship {
    background: var(--navy);
    border-color: var(--navy);
    grid-column: span 2
}

.svc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    margin-bottom: 1rem
}

.svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 20px
}

.svc-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem
}

.svc-card.flagship .svc-title {
    color: var(--white);
    font-size: 18px
}

.svc-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 300
}

.svc-card.flagship .svc-desc {
    color: rgba(255, 255, 255, 0.6)
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1rem
}

.svc-tag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 4px;
    background: var(--cream);
    color: var(--text-mid)
}

.svc-card.flagship .svc-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7)
}

.svc-arrow {
    font-size: 13px;
    color: var(--amber);
    font-weight: 600
}

.svc-ca-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--amber);
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 1rem
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.why-card {
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition: all 0.2s
}

.why-card:hover {
    border-color: var(--amber)
}

.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 0.75rem;
    line-height: 1
}

.why-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem
}

.why-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 8px, transparent 8px, transparent 16px);
    z-index: 0
}

.step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--cream-dark)
}

.step:first-child .step-circle,
.step:last-child .step-circle {
    background: var(--amber);
    color: var(--navy)
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem
}

.step-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.65
}

.testi-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1rem
}

.testi-card {
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white)
}

.testi-card.featured {
    background: var(--navy);
    border-color: var(--navy)
}

.testi-stars {
    color: var(--amber);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 1rem
}

.testi-quote {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.25rem;
    font-weight: 300
}

.testi-card.featured .testi-quote {
    color: rgba(255, 255, 255, 0.7)
}

.testi-card.featured .testi-stars {
    color: var(--amber-mid)
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0
}

.testi-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy)
}

.testi-card.featured .testi-name {
    color: var(--white)
}

.testi-role {
    font-size: 11px;
    color: var(--text-light)
}

.testi-card.featured .testi-role {
    color: rgba(255, 255, 255, 0.5)
}

.testi-service {
    display: inline-block;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-top: 0.5rem
}

.cta-section {
    padding: 5rem 2.5rem;
    background: var(--navy)
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center
}

.cta-h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2
}

.cta-h2 em {
    color: var(--amber-mid);
    font-style: italic
}

.cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 480px;
    line-height: 1.7
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0
}

.btn-gold {
    padding: 14px 28px;
    background: var(--amber);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif
}

.btn-ghost {
    padding: 14px 28px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
}

.faq-section {
    padding: 5rem 2.5rem;
    background: var(--cream)
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto
}

.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    margin-top: 3rem
}

.faq-cats {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.faq-cat-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    background: var(--white);
    transition: all 0.2s;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    width: 100%
}

.faq-cat-btn:hover {
    border-color: var(--amber);
    background: var(--amber-light)
}

.faq-cat-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.faq-cat-icon {
    font-size: 18px;
    flex-shrink: 0
}

.faq-cat-text {
    flex: 1
}

.faq-cat-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    display: block;
    line-height: 1.2
}

.faq-cat-btn.active .faq-cat-name {
    color: var(--white)
}

.faq-cat-count {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
    display: block
}

.faq-cat-btn.active .faq-cat-count {
    color: rgba(255, 255, 255, 0.5)
}

.faq-cat-badge {
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 10px;
    background: var(--amber-light);
    color: var(--amber);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0
}

.faq-cat-btn.active .faq-cat-badge {
    background: rgba(232, 160, 32, 0.2);
    color: var(--amber-mid)
}

.coming-badge {
    background: #E6F1FB !important;
    color: #185FA5 !important
}

.faq-panel {
    display: none
}

.faq-panel.active {
    display: block
}

.faq-panel-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border)
}

.faq-panel-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

.faq-panel-sub {
    font-size: 13px;
    color: var(--text-light)
}

.faq-item {
    border-bottom: 1px solid var(--border)
}

.faq-item:first-of-type {
    border-top: 1px solid var(--border)
}

.faq-q-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    cursor: pointer
}

.faq-q-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
    flex: 1
}

.faq-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    margin-top: 1px
}

.faq-item.open .faq-toggle {
    background: var(--amber);
    color: var(--navy);
    transform: rotate(45deg)
}

.faq-answer {
    display: none;
    padding: 0 0 1.1rem;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    max-width: 620px
}

.faq-item.open .faq-answer {
    display: block
}

.faq-answer a {
    color: var(--amber);
    text-decoration: none;
    font-weight: 500
}

.faq-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.5rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--amber);
    text-decoration: none;
    cursor: pointer
}

.footer {
    background: var(--navy);
    padding: 3rem 2.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem
}

.footer-logo-text {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 0.75rem
}

.footer-logo-text span {
    color: var(--amber)
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.social-btn:hover {
    background: var(--amber);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.footer-col a:hover {
    color: var(--amber)
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-copy a{
    color: var(--amber);
    text-decoration: none;
}
.brands-section {
    padding: 40px 0 36px;
    background: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.brands-label {
    font-size: 25px;
    color: var(--navy);
    letter-spacing: 0.3px;
    margin-bottom: 24px;
    font-weight: 600;
}

.brands-label span{
    color: var(--amber);
}


.brands-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
}

.brands-ticker.is-dragging {
    cursor: grabbing;
}

.brands-ticker::before,
.brands-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-ticker::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 30%, transparent);
}

.brands-ticker::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 30%, transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
    will-change: transform;
}

.brands-track.paused {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 44px;
    height: 72px;
    flex-shrink: 0;
}

.brand-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.55); */
    transition: filter 0.3s ease, transform 0.2s ease;
    pointer-events: none;
    display: block;
}

.brand-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

.btn-ghost i {
    margin-right: 8px;
    color: #25D366;
    font-size: 16px;
}

/* HERO SECTION */
.fs-hero {
    background: var(--navy);
    padding: 5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.fs-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232,160,32,0.06);
}

.fs-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

/* LAYOUT */
.fs-hero-inner {
 max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* TEXT */
.fs-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--amber-mid);
    margin-bottom: 1rem;
}

.fs-title {
   font-family: 'DM Sans', sans-serif;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.fs-title em {
   font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--amber-mid);
    font-weight: 500;
}

.fs-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.fs-desc strong {
    color: var(--amber-mid);
    font-weight: 600;
}
/* BUTTONS */
.fs-btns {
    display: flex;
    gap: 12px;
}

.btn-outline {
       padding: 13px 26px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

/* STATS */
.fs-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fs-stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.2rem;
    border-radius: 12px;
}

.fs-stat-num {
    font-size: 30px;
    color: var(--amber-mid);
}

.fs-stat-title {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.fs-stat-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}
/* BREADCRUMB */
.breadcrumb {
    background: var(--cream-dark);
    padding: 0.75rem 2.5rem;
    border-bottom: 1px solid var(--border)
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light)
}

.breadcrumb a {
    color: var(--amber);
    text-decoration: none;
    font-weight: 500
}

/* WHO WE ARE */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.who-body {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.25rem
}

.who-highlight {
    padding: 1.5rem 1.75rem;
    border-left: 3px solid var(--amber);
    background: var(--amber-light);
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0
}

.who-highlight p {
    font-size: 15px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    font-weight: 500
}

.who-highlight cite {
    font-size: 12px;
    color: var(--amber);
    font-style: normal;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.pillar {
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color 0.2s
}

.pillar:hover {
    border-color: var(--amber)
}

.pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--amber-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px
}

.pillar-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

.pillar-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300
}

button.btn-whatsapp {
    padding: 13px 26px;
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

/* FINSPYNE NAME */
.name-meaning {
    background: var(--navy);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden
}

.name-meaning::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(232, 160, 32, 0.06)
}

.name-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 160, 32, 0.15);
    border: 1px solid rgba(232, 160, 32, 0.3);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 1.25rem
}

.name-tag span {
    font-size: 11px;
    font-weight: 600;
    color: var(--amber-mid);
    letter-spacing: 0.05em;
    text-transform: uppercase
}

.name-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

.name-heading {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3
}

.name-heading span {
    color: var(--amber-mid)
}

.name-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
    font-weight: 300
}

.name-body strong {
    color: var(--amber-mid);
    font-weight: 600
}

/* MISSION VISION */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.mv-card {
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border)
}

.mv-card.light {
    background: var(--white)
}

.mv-card.dark {
    background: var(--navy);
    border-color: var(--navy)
}

.mv-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 22px
}

.mv-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem
}

.mv-card.dark .mv-label {
    color: var(--amber-mid)
}

.mv-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.35
}

.mv-card.dark .mv-title {
    color: var(--white)
}

.mv-body {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300
}

.mv-card.dark .mv-body {
    color: rgba(255, 255, 255, 0.6)
}

/* SERVICES OVERVIEW */
.services-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem
}

.svc-overview-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    transition: all 0.2s
}

.svc-overview-card:hover {
    border-color: var(--amber);
    box-shadow: var(--shadow)
}

.svc-overview-card.flagship {
    background: var(--navy);
    border-color: var(--navy)
}

.svc-ov-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 20px
}

.svc-ov-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px
}

.svc-overview-card.flagship .svc-ov-title {
    color: var(--white)
}

.svc-ov-desc {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300
}

.svc-overview-card.flagship .svc-ov-desc {
    color: rgba(255, 255, 255, 0.6)
}

.svc-ca-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.5rem
}

/* TIMELINE */
.timeline {
    display: grid;
    grid-template-columns: 110px 1px 1fr;
    gap: 0 1.5rem
}

.tl-year {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--amber);
    text-align: right;
    padding-top: 4px;
    padding-bottom: 2.5rem;
    line-height: 1.3
}

.tl-line-col {
    display: flex;
    flex-direction: column;
    align-items: center
}

.tl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
    margin-top: 4px;
    border: 3px solid var(--cream)
}

.tl-rule {
    flex: 1;
    width: 1px;
    background: var(--border);
    margin-top: 4px
}

.tl-content {
    padding-bottom: 2.5rem
}

.tl-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px
}

.tl-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300
}

.tl-tag {
    display: inline-block;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
    background: var(--amber-light);
    color: var(--amber);
    font-weight: 600;
    margin-top: 6px
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.val-card {
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition: all 0.2s
}

.val-card:hover {
    border-color: var(--amber);
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.val-num {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.75rem
}

.val-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem
}

.val-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.team-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    overflow: hidden;
    transition: all 0.2s
}

.team-card:hover {
    border-color: var(--amber);
    box-shadow: var(--shadow)
}

.team-card-top {
    padding: 2rem 1.75rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border)
}

.team-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 1rem;
    border: 3px solid var(--amber-light)
}

.team-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

.team-role {
    font-size: 12px;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 4px
}

.team-qual {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px
}

.team-prev {
    font-size: 11px;
    color: var(--text-light);
    font-style: italic
}

.big4-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    background: #E6F1FB;
    color: #185FA5;
    font-weight: 600;
    margin-top: 4px
}

.team-card-body {
    padding: 1.25rem 1.75rem
}

.team-spec-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0.75rem
}

.team-tag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 4px;
    background: var(--cream);
    color: var(--text-mid)
}

.team-exp {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300
}

/* OFFICES */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.office-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    transition: border-color 0.2s
}

.office-card:hover {
    border-color: var(--amber)
}

.office-card.hq {
    border-color: var(--amber);
    background: var(--amber-light)
}

.office-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem
}

.office-status {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 10px
}

.office-status.active {
    background: var(--amber);
    color: var(--navy)
}

.office-status.hq-badge {
    background: var(--navy);
    color: var(--white)
}

.office-status.soon {
    background: #E6F1FB;
    color: #185FA5
}

.office-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color:#fff;
}

.office-city {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

.office-state {
    font-size: 12px;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 0.75rem
}

.office-addr {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-weight: 300
}

.office-ph {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy)
}

/* JOIN */
.join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.join-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    text-align: center
}

.join-icon {
    font-size: 28px;
    margin-bottom: 0.75rem
}

.join-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px
}

.join-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6
}

/* CTA */
.cta-section {
    padding: 5rem 2.5rem;
    background: var(--navy)
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center
}

.cta-h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2
}

.cta-h2 em {
    color: var(--amber-mid);
    font-style: italic
}

.cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 480px;
    line-height: 1.7
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0
}

.btn-whatsapp-white {
padding: 13px 26px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

/* WRAPPER */
.contact-hero-sec {
    background: var(--navy);
    padding: 5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-hero-sec::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232,160,32,0.06);
}

.contact-hero-sec::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

/* INNER */
.contact-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* TEXT */
.contact-hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-mid);
    margin-bottom: 1rem;
}

.contact-hero-h1 {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
    max-width: 600px;
}

.contact-hero-h1 em {
    font-style: italic;
    color: var(--amber-mid);
}

.contact-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 2.5rem;
}

/* GRID */
.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* CARD */
.contact-channel-card {
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    transition: 0.2s;
    cursor: pointer;
}

.contact-channel-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--amber);
}

/* HIGHLIGHT */
.contact-channel-card.highlight {
    background: var(--amber);
    border-color: var(--amber);
}

/* ICON */
.contact-ch-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 18px;
}

/* TEXT */
.contact-ch-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.contact-channel-card.highlight .contact-ch-title {
    color: var(--navy);
}

.contact-ch-val {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 15px;
}

.contact-channel-card.highlight .contact-ch-val {
    color: rgba(15,45,74,0.7);
}

.contact-ch-badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
}

.contact-channel-card.highlight .contact-ch-badge {
    background: rgba(15,45,74,0.15);
    color: var(--navy);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-channels-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-h1 {
        font-size: 32px;
    }
}


/* MAIN CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start
}

/* FORM */
.form-section {}

.form-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem
}

.form-sub {
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.7
}

.service-selector {
    margin-bottom: 1.5rem
}

.service-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: block
}

.service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.svc-opt {
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-mid);
    background: var(--white);
    text-align: center;
    transition: all 0.15s;
    font-family: 'DM Sans', sans-serif
}

.svc-opt:hover {
    border-color: var(--amber);
    color: var(--amber)
}

.svc-opt.selected {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy)
}

.svc-opt.other {
    grid-column: span 2;
    background: var(--cream-dark)
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem
}

.form-row {
    margin-bottom: 1rem
}

.form-row label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
    letter-spacing: 0.03em
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--amber)
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--text-light)
}

.form-row textarea {
    height: 110px;
    resize: none;
    line-height: 1.6
}

.form-row select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8AA0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    margin-top: 0.5rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.submit-btn:hover {
    background: #1a3d5c
}

.form-note {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.65
}

.profile-note {
    padding: 1rem 1.25rem;
    background: var(--amber-light);
    border-radius: 10px;
    border-left: 3px solid var(--amber);
    margin-top: 1.25rem
}

.profile-note-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px
}

.profile-note-desc {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 300
}

/* INFO PANEL */
.info-panel {}

.info-block {
    margin-bottom: 2rem
}

.info-block-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border)
}

.info-item:last-child {
    border-bottom: none
}

.info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px
}

.info-label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 3px
}

.info-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px
}

.info-sub {
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 300
}

/* HOURS */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 0.5rem
}

.hour-item {
    padding: 10px 12px;
    background: var(--cream-dark);
    border-radius: 8px
}

.hour-day {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 3px
}

.hour-time {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy)
}

.hour-time.closed {
    color: var(--text-light);
    font-weight: 400
}

.tax-season-note {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: var(--green-light, #E1F5EE);
    border-radius: 10px;
    border-left: 3px solid #1D9E75
}

.tax-note-title {
    font-size: 12px;
    font-weight: 600;
    color: #085041;
    margin-bottom: 3px
}

.tax-note-desc {
    font-size: 12px;
    color: #0F6E56;
    line-height: 1.6;
    font-weight: 300
}

/* WHATSAPP */
.whatsapp-box {
    padding: 1.25rem 1.5rem;
    background: #E1F5EE;
    border-radius: 12px;
    border: 1px solid #9FE1CB;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.2s
}

.whatsapp-box:hover {
    background: #d0f0e4
}

.wa-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1D9E75;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px
}

.wa-title {
    font-size: 14px;
    font-weight: 600;
    color: #085041;
    margin-bottom: 3px
}

.wa-sub {
    font-size: 12px;
    color: #0F6E56;
    font-weight: 300
}

.wa-arrow {
    margin-left: auto;
    font-size: 18px;
    color: #1D9E75;
    font-weight: 600
}

/* SOCIAL */
.social-strip {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem
}

.social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    justify-content: center
}

.social-item:hover {
    border-color: var(--amber)
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0
}

.social-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--navy)
}


/* OFFICES */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.office-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    transition: border-color 0.2s
}

.office-card:hover {
    border-color: var(--amber)
}

.office-card.hq {
    border-color: var(--amber);
    background: var(--amber-light)
}

.office-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem
}

.office-status {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 10px
}

.office-status.hq-badge {
    background: var(--navy);
    color: var(--white)
}

.office-status.active {
    background: var(--amber);
    color: var(--navy)
}

.office-status.soon {
    background: #E6F1FB;
    color: #185FA5
}

.office-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px
}

.office-city {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

.office-state {
    font-size: 12px;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 0.75rem
}

.office-ph {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px
}

.office-ph-sub {
    font-size: 12px;
    color: var(--text-light)
}


/* GRID */
.contact-faq-sec .contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

/* STRIP */
.contact-faq-sec .contact-faq-strip {
    display: flex;
    flex-direction: column;
}

/* ITEM */
.contact-faq-sec .contact-faq-item {
    border-bottom: 1px solid var(--border);
}

.contact-faq-sec .contact-faq-item:first-child {
    border-top: 1px solid var(--border);
}

/* QUESTION */
.contact-faq-sec .contact-faq-q-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
}

.contact-faq-sec .contact-faq-q-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

/* TOGGLE */
.contact-faq-sec .contact-faq-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: none;
}

/* OPEN STATE */
.contact-faq-sec .contact-faq-item.open .contact-faq-toggle {
    background: var(--amber);
    transform: rotate(45deg);
}

/* ANSWER */
.contact-faq-sec .contact-faq-answer {
    display: none;
    padding-bottom: 1rem;
    font-size: 13px;
    color: var(--text-mid);
}

.contact-faq-sec .contact-faq-item.open .contact-faq-answer {
    display: block;
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-faq-sec .contact-faq-grid {
        grid-template-columns: 1fr;
    }
}


/* WRAPPER */
.contact-cta-sec {
    padding: 5rem 2.5rem;
    background: var(--navy);
}

/* INNER */
.contact-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

/* HEADING */
.contact-cta-h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.contact-cta-h2 em {
    color: var(--amber-mid);
    font-style: italic;
}

/* SUBTEXT */
.contact-cta-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    max-width: 480px;
    line-height: 1.7;
}

/* BUTTONS */
.contact-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-cta-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .contact-cta-btns {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-cta-h2 {
        font-size: 28px;
    }
}



/* ─── SERVICE HERO ─── */
.service-hero {
    background: var(--navy);
    padding: 4.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232, 160, 32, 0.06);
}

.service-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-mid);
    margin-bottom: 1rem;
}

.service-hero-h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
    max-width: 700px;
}

.service-hero-h1 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--amber-mid);
    font-weight: 500;
}

.service-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* OFFER STRIP */
.service-offer-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.service-offer-card {
    padding: 1.5rem 2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.service-offer-card.hot {
    background: var(--amber);
    border-color: var(--amber);
}

.service-offer-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.service-offer-card.hot .service-offer-label {
    color: rgba(15, 45, 74, 0.6);
}

.service-offer-price {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.service-offer-card.hot .service-offer-price {
    color: var(--navy);
}

.service-offer-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.service-offer-card.hot .service-offer-title {
    color: var(--navy);
}

.service-offer-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    line-height: 1.5;
}

.service-offer-card.hot .service-offer-sub {
    color: rgba(15, 45, 74, 0.65);
}

.service-offer-badge {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 10px;
    background: rgba(15, 45, 74, 0.15);
    color: var(--navy);
    font-weight: 600;
}

.service-offer-badge-white {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-weight: 500;
}


/* ─── SERVICE TABS ─── */
.tab-section {
    background: var(--cream);
    padding: 0 2.5rem
}

.tab-header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid var(--border);
    overflow-x: auto
}

.tab-btn {
    padding: 23px 32px 15px 9px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    border: none;
    background: #ffffff;
  
    border-radius: 7px;
    margin-top: 10px;
    border-bottom: 2.5px solid transparent;
    border-bottom-color: var(--amber);
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
}

.tab-btn:hover {
    color: var(--navy)
}

.tab-btn.active {
    color: var(--navy);
    border-bottom-color: var(--amber);
    font-weight: 600;
    background: #ffffff;
    padding: 23px 32px 15px 9px;
    border-radius: 7px;
    margin-top: 10px;
}

.tab-btn .tab-icon {
    font-size: 15px
}

/* CLIENT TYPE TABS */
.client-tab-header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    padding: 1.5rem 0 0;
    flex-wrap: wrap
}

.client-tab {
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    background: var(--white);
    color: var(--text-mid);
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s
}

.client-tab:hover {
    border-color: var(--amber);
    color: var(--amber)
}

.client-tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy)
}

/* TAB PANELS */
.tab-panels {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 0 4rem
}

.tab-panel {
    display: none
}

.tab-panel.active {
    display: block
}

/* SERVICE DETAIL LAYOUT */
.service-detail {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start
}

.sd-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem
}

.sd-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.2
}

.sd-intro {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.5rem
}

.sd-why-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem
}

.sd-why-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem
}

.sd-why-item {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.sd-why-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
    margin-top: 6px
}

.sd-why-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300
}

.sd-includes {
    margin-bottom: 1.5rem
}

.sd-includes-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem
}

.sd-tag-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.sd-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--cream-dark);
    color: var(--text-mid);
    font-weight: 500
}

.sd-tag.amber {
    background: var(--amber-light);
    color: #633806
}

.sd-docs {
    margin-bottom: 1.5rem
}

.sd-docs-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem
}

.sd-doc-list {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.sd-doc-item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 300
}

.sd-doc-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px
}

.sd-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2rem
}

/* PRICING CARDS */
.pricing-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.price-card {
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    transition: border-color 0.2s
}

.price-card:hover {
    border-color: var(--amber)
}

.price-card.featured {
    background: var(--navy);
    border-color: var(--navy)
}

.price-card.hot-card {
    background: var(--amber);
    border-color: var(--amber)
}

.pc-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.4rem
}

.price-card.featured .pc-label {
    color: rgba(255, 255, 255, 0.4)
}

.price-card.hot-card .pc-label {
    color: rgba(15, 45, 74, 0.55)
}

.pc-price {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 3px
}

.price-card.featured .pc-price {
    color: var(--amber-mid)
}

.price-card.hot-card .pc-price {
    color: var(--navy)
}

.pc-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

.price-card.featured .pc-title {
    color: var(--white)
}

.price-card.hot-card .pc-title {
    color: var(--navy)
}

.pc-desc {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 300
}

.price-card.featured .pc-desc {
    color: rgba(255, 255, 255, 0.55)
}

.price-card.hot-card .pc-desc {
    color: rgba(15, 45, 74, 0.65)
}

.pc-badge {
    display: inline-block;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 8px;
    font-weight: 600
}

.pc-badge.new {
    background: var(--green-light);
    color: var(--green)
}

.pc-badge.popular {
    background: rgba(232, 160, 32, 0.2);
    color: var(--amber)
}

.pc-badge.best {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white)
}

.pc-badge.amber-b {
    background: rgba(15, 45, 74, 0.12);
    color: var(--navy)
}

.price-cta {
    margin-top: 1rem
}

.price-cta-btn {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    border: none
}

.price-cta-btn.dark {
    background: var(--navy);
    color: var(--white)
}

.price-cta-btn.amber {
    background: var(--amber);
    color: var(--navy);
    font-weight: 600
}

.price-cta-btn.outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--navy)
}

.price-cta-btn.white {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2)
}


/* SUBSCRIPTION CARDS */
.sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem
}

.sub-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white)
}

.sub-card.prime {
    background: var(--navy);
    border-color: var(--navy)
}

.sub-icon {
    font-size: 24px;
    margin-bottom: 0.75rem
}

.sub-plan {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 4px
}

.sub-card.prime .sub-plan {
    color: var(--amber-mid)
}

.sub-price {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

.sub-card.prime .sub-price {
    color: var(--amber-mid)
}

.sub-period {
    font-size: 11px;
    color: var(--text-light)
}

.sub-card.prime .sub-period {
    color: rgba(255, 255, 255, 0.4)
}

.sub-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0.75rem 0
}

.sub-card.prime .sub-divider {
    border-color: rgba(255, 255, 255, 0.1)
}

.sub-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 300
}

.sub-card.prime .sub-item {
    color: rgba(255, 255, 255, 0.65)
}

.sub-check {
    color: var(--green);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px
}

.sub-card.prime .sub-check {
    color: var(--amber-mid)
}

button.btn-navy-new {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

button.btn-outline-whatsapp {
        background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}


/* WHO FOR CHIPS */
.who-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem
}

.who-chip {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--cream-dark);
    color: var(--text-mid)
}

/* CLIENT PANELS */
.client-panel {
    display: none
}

.client-panel.active {
    display: block
}

.client-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.cs-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    transition: all 0.2s
}

.cs-card:hover {
    border-color: var(--amber);
    box-shadow: var(--shadow)
}

.cs-card.flagship {
    background: var(--navy);
    border-color: var(--navy)
}

.cs-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 18px
}

.cs-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

.cs-card.flagship .cs-title {
    color: var(--white)
}

.cs-desc {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 0.75rem
}

.cs-card.flagship .cs-desc {
    color: rgba(255, 255, 255, 0.6)
}

.cs-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--amber)
}

.cs-badge {
    display: inline-block;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 3px;
    background: var(--amber);
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem
}

/* REFERRAL */
.referral-box {
    background: var(--navy);
    border-radius: 16px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem
}

.ref-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem
}

.ref-title span {
    color: var(--amber-mid)
}

.ref-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-weight: 300;
    max-width: 500px
}

.ref-steps {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap
}

.ref-step {
    display: flex;
    align-items: center;
    gap: 8px
}

.ref-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ref-step-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6)
}

.ref-reward {
    text-align: center;
    flex-shrink: 0
}

.ref-amount {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--amber-mid);
    line-height: 1
}

.ref-amount-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px
}

.ref-amount-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px
}

/* PROFILE OFFER */
.profile-offer {
    background: linear-gradient(135deg, var(--amber) 0%, #F5A800 100%);
    border-radius: 16px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center
}

.po-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(15, 45, 74, 0.6);
    margin-bottom: 0.5rem
}

.po-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.2
}

.po-desc {
    font-size: 14px;
    color: rgba(15, 45, 74, 0.7);
    line-height: 1.7;
    font-weight: 300
}

.po-steps {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap
}

.po-step {
    display: flex;
    align-items: center;
    gap: 6px
}

.po-step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.po-step-text {
    font-size: 12px;
    color: rgba(15, 45, 74, 0.7)
}

.po-arrow {
    font-size: 12px;
    color: rgba(15, 45, 74, 0.4)
}

.po-right {
    text-align: center
}

.po-price-old {
    font-size: 16px;
    color: rgba(15, 45, 74, 0.45);
    text-decoration: line-through;
    margin-bottom: 4px
}

.po-price-new {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px
}

.po-price-label {
    font-size: 12px;
    color: rgba(15, 45, 74, 0.6)
}

.po-cta {
    margin-top: 1.5rem
}

.po-btn {
    padding: 12px 28px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif
}

/* ─── SOCIAL PROOF POPUP ─── */
.social-proof-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(15, 45, 74, 0.15);
    max-width: 300px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.social-proof-popup.show {
    transform: translateY(0);
    opacity: 1
}

.sp-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid var(--amber-light)
}

.sp-content {}

.sp-action {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 2px
}

.sp-service {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
    line-height: 1.3
}

.sp-time {
    font-size: 11px;
    color: var(--text-light)
}

.sp-close {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1
}

.sp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
    animation: pulse-dot 1.5s infinite
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8)
    }
}


/* PAGE HERO */
.kc-hero {
    background: var(--navy);
    padding: 4rem 2.5rem;
    position: relative;
    overflow: hidden
}

.kc-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232, 160, 32, 0.06)
}

.kc-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.kc-hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
    max-width: 650px
}

.kc-hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--amber-mid);
    font-weight: 500
}

.kc-hero-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-weight: 300;
    max-width: 580px;
    margin-bottom: 2rem
}

.kc-hero-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.kc-hero-tag {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s
}

.kc-hero-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--amber)
}


/* UPDATES SECTION */
.updates-section {
    background: var(--amber-light);
    border-bottom: 2px solid var(--amber)
}

.updates-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2.5rem
}

.updates-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-live 1.5s infinite
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8)
    }
}

.updates-h {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy)
}

.updates-sub {
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 300
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.update-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden
}

.update-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s
}

.update-card-header:hover {
    background: var(--cream)
}

.update-card.open .update-card-header {
    background: var(--navy)
}

.update-act {
    display: flex;
    align-items: center;
    gap: 8px
}

.upd-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 3px
}

.b-it61 {
    background: #E6F1FB;
    color: #185FA5
}

.b-it25 {
    background: var(--green-light);
    color: #085041
}

.b-gst {
    background: var(--amber-light);
    color: #633806
}

.b-mca {
    background: #EEEDFE;
    color: #3C3489
}

.b-invest {
    background: #FAECE7;
    color: #712B13
}

.b-insure {
    background: #E1F5EE;
    color: #085041
}

.update-card.open .upd-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white)
}

.update-act-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy)
}

.update-card.open .update-act-title {
    color: var(--white)
}

.update-toggle {
    font-size: 16px;
    color: var(--text-light);
    transition: transform 0.2s
}

.update-card.open .update-toggle {
    transform: rotate(45deg);
    color: var(--amber-mid)
}

.update-card-body {
    display: none;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border)
}

.update-card.open .update-card-body {
    display: block
}

.upd-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.upd-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.upd-new {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    background: var(--amber);
    color: var(--navy);
    flex-shrink: 0;
    margin-top: 2px;
    white-space: nowrap
}

.upd-text {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 300
}

.upd-date {
    font-size: 10px;
    color: var(--text-light);
    margin-top: 2px
}

/* WHATSAPP QUERY */
.wa-query-section {
    background: var(--navy);
    padding: 4rem 2.5rem
}

.wa-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.waq-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-mid);
    margin-bottom: 0.75rem
}

.waq-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3
}

.waq-title em {
    color: var(--amber-mid);
    font-style: italic
}

.waq-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    font-weight: 300
}

.waq-promise {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem
}

.waq-promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55)
}

.waq-promise-item span:first-child {
    color: var(--green)
}

.waq-form {}

.waq-row {
    margin-bottom: 1rem
}

.waq-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 5px
}

.waq-input,
.waq-select,
.waq-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    outline: none
}

.waq-input::placeholder,
.waq-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3)
}

.waq-select {
    appearance: none
}

.waq-select option {
    background: var(--navy);
    color: var(--white)
}

.waq-textarea {
    height: 100px;
    resize: none;
    line-height: 1.6
}

.waq-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.waq-btn {
    width: 100%;
    padding: 13px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem
}

.waq-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.6
}

/* PAGE HERO */
.kc2-hero {
    background: var(--navy);
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden
}

.kc2-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232, 160, 32, 0.06)
}

.kc2-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.kc2-hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-mid);
    margin-bottom: 0.75rem
}

.kc2-hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 0.75rem
}

.kc2-hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--amber-mid);
    font-weight: 500
}

.kc2-hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-weight: 300;
    max-width: 560px
}



/* ═══ HERO ═══ */
.kc3-hero {
    background: var(--navy);
    padding: 5rem 2.5rem 4rem;
    position: relative;
    overflow: hidden
}

.kc3-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(232, 160, 32, 0.05)
}

.kc3-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02)
}

.kc3-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.kc3-hero-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3.5rem
}

.kc3-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(232, 160, 32, 0.12);
    border: 1px solid rgba(232, 160, 32, 0.22);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 1.25rem
}

.kc3-hero-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    animation: kc3-dot-pulse 2s infinite
}

@keyframes kc3-dot-pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.kc3-hero-pill span {
    font-size: 11px;
    font-weight: 600;
    color: var(--amber-mid);
    letter-spacing: 0.1em;
    text-transform: uppercase
}

.kc3-hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1rem
}

.kc3-hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--amber-mid);
    font-weight: 500
}

.kc3-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
    font-weight: 300;
    max-width: 500px
}

.kc3-hero-right {
    text-align: right
}

.kc3-rating-score {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 600;
    color: var(--amber-mid);
}

.kc3-rating-stars {
    display: flex;
    gap: 3px;
    justify-content: flex-end;
}

.kc3-rating-star {
    font-size: 18px;
    color: var(--amber)
}

.kc3-rating-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4)
}

/* STAT STRIP */
.kc3-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden
}

.kc3-stat-strip-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 1.25rem 1.5rem;
    text-align: center
}

.kc3-stat-strip-num {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white)
}

.kc3-stat-strip-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45)
}

/* FILTER TABS */
.filter-row {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 2.5rem;
    position: sticky;
    top: 61px;
    z-index: 90
}

.filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    overflow-x: auto
}

.filter-tab {
    padding: 1rem 1.25rem;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    border: none;
    background: transparent;
    border-bottom: 2.5px solid transparent;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.15s
}

.filter-tab:hover {
    color: var(--navy)
}

.filter-tab.active {
    color: var(--navy);
    border-bottom-color: var(--amber);
    font-weight: 600
}

/* SECTION LABELS */
.sec-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem
}

.sec-label-line {
    flex: 1;
    height: 1px;
    background: var(--border)
}

.sec-label-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    white-space: nowrap
}

/* MOSAIC LAYOUT — video + review mix */
.mosaic-a {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-bottom: 1rem
}

.mosaic-b {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 1rem;
    margin-bottom: 1rem
}

.mosaic-c {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem
}

/* VIDEO CARD */
.video-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.22s;
    position: relative;
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(15, 45, 74, 0.22);
}

/* THUMB */
.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

/* IMAGE FIX */
.video-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.video-thumb-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 45, 74, 0.9), rgba(15, 45, 74, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PLAY BUTTON */
.video-play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.video-card:hover .video-play {
    transform: scale(1.1);
}

.video-play-tri {
    border-style: solid;
    border-width: 9px 0 9px 16px;
    border-color: transparent transparent transparent var(--navy);
    margin-left: 3px;
}

/* iframe FIX (MOST IMPORTANT) */
.video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
}

/* PLAY STATE */
.video-thumb.playing .video-iframe {
    display: block;
}

.video-thumb.playing .video-thumb-bg,
.video-thumb.playing .video-thumb-img,
.video-thumb.playing .yt-tag {
    display: none;
}

.video-play-tri {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 16px;
    border-color: transparent transparent transparent var(--navy);
    margin-left: 3px
}

.video-ph-txt {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300
}

.yt-tag {
    position: absolute;
    top: 10px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 4px;
    padding: 3px 8px
}

.yt-tag-icon {
    font-size: 10px;
    color: var(--white)
}

.yt-tag span {
    font-size: 10px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.03em
}

.video-info {
    padding: 1.1rem 1.25rem
}

.video-svc-tag {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 10px;
    background: rgba(232, 160, 32, 0.15);
    color: var(--amber-mid);
    display: inline-block;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.video-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.45;
    margin-bottom: 0.35rem
}

.video-client {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300
}

.video-card.tall .video-thumb {
    aspect-ratio: 4/5
}

/* REVIEW CARD */
.review-card {
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--white);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: all 0.18s;
    position: relative;
    overflow: hidden
}

.review-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(15, 45, 74, 0.15)
}

.review-card.dark {
    background: var(--navy);
    border-color: var(--navy)
}

.review-card.amber-bg {
    background: var(--amber);
    border-color: var(--amber)
}

.rc-qmark {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 0.8;
    opacity: 0.12;
    font-weight: 600;
    color: var(--navy)
}

.review-card.dark .rc-qmark {
    color: var(--white)
}

.review-card.amber-bg .rc-qmark {
    color: var(--navy)
}

.rc-svc {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.rc-svc.blue {
    background: #E6F1FB;
    color: #185FA5
}

.rc-svc.green {
    background: var(--green-light);
    color: #085041
}

.rc-svc.amber-s {
    background: var(--amber-light);
    color: #633806
}

.rc-svc.purple {
    background: #EEEDFE;
    color: #3C3489
}

.rc-svc.coral {
    background: #FAECE7;
    color: #712B13
}

.review-card.dark .rc-svc,
.review-card.amber-bg .rc-svc {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white)
}

.review-card.amber-bg .rc-svc {
    color: var(--navy);
    background: rgba(15, 45, 74, 0.12)
}

.rc-stars {
    display: flex;
    gap: 2px
}

.rc-star {
    font-size: 12px;
    color: var(--amber)
}

.review-card.amber-bg .rc-star {
    color: var(--navy)
}

.rc-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
    flex: 1
}

.review-card.dark .rc-text {
    color: rgba(255, 255, 255, 0.65)
}

.review-card.amber-bg .rc-text {
    color: rgba(15, 45, 74, 0.75)
}

.rc-text.lg {
    font-size: 15px;
    line-height: 1.8
}

.rc-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border);
    margin-top: auto
}

.review-card.dark .rc-bottom {
    border-color: rgba(255, 255, 255, 0.1)
}

.review-card.amber-bg .rc-bottom {
    border-color: rgba(15, 45, 74, 0.12)
}

.rc-person {
    display: flex;
    align-items: center;
    gap: 9px
}

.rc-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0
}

.rc-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy)
}

.review-card.dark .rc-name {
    color: var(--white)
}

.review-card.amber-bg .rc-name {
    color: var(--navy)
}

.rc-city {
    font-size: 11px;
    color: var(--text-light)
}

.review-card.dark .rc-city {
    color: rgba(255, 255, 255, 0.4)
}

.review-card.amber-bg .rc-city {
    color: rgba(15, 45, 74, 0.5)
}

.rc-check {
    font-size: 11px;
    color: var(--green);
    font-weight: 500
}

/* INSTAGRAM CARD */
.insta-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    transition: all 0.18s
}

.insta-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.insta-img {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.insta-img-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.4
}

.insta-img-icon {
    font-size: 24px
}

.insta-img-ph {
    font-size: 10px;
    color: var(--text-light)
}

.insta-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: 4px 10px
}

.insta-grad-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--white);
    font-weight: 700;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888)
}

.insta-handle-txt {
    font-size: 10px;
    font-weight: 600;
    color: #C13584
}

.insta-body {
    padding: 1rem
}

.insta-caption {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem
}

.insta-likes {
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px
}

/* WIDE REVIEW — spans full width */
.review-wide {
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--white);
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    transition: all 0.18s;
    margin-bottom: 1rem
}

.review-wide:hover {
    box-shadow: var(--shadow)
}

.rw-left {}

.rw-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem
}

.rw-text {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300
}

.rw-text strong {
    color: var(--navy);
    font-weight: 600
}

.rw-right {
    text-align: right;
    flex-shrink: 0
}

.rw-rating {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 4px
}

.rw-stars {
    display: flex;
    gap: 3px;
    justify-content: flex-end;
    margin-bottom: 6px
}

.rw-star {
    font-size: 14px;
    color: var(--amber)
}

.rw-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px
}

.rw-meta {
    font-size: 12px;
    color: var(--text-light)
}

/* INSTA FOLLOW STRIP */
.insta-strip {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap
}

.insta-strip-left {
    display: flex;
    align-items: center;
    gap: 14px
}

.insta-strip-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0
}

.insta-strip-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px
}

.insta-strip-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300
}

.insta-follow-btn {
    padding: 11px 24px;
    background: var(--white);
    color: #C13584;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap
}

/* YT STRIP */
.yt-strip {
    background: var(--navy);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap
}

.yt-strip-left {
    display: flex;
    align-items: center;
    gap: 14px
}

.yt-strip-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.yt-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--white);
    margin-left: 3px
}

.yt-strip-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px
}

.yt-strip-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300
}

.yt-sub-btn {
    padding: 11px 24px;
    background: #FF0000;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap
}

/* RATING BAR INLINE */
.rating-inline {
    background: var(--navy);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 1rem
}

.ri-score {
    text-align: center
}

.ri-big {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 600;
    color: var(--amber-mid);
    line-height: 1
}

.ri-stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin: 5px 0
}

.ri-star {
    font-size: 16px;
    color: var(--amber)
}

.ri-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4)
}

.ri-bars {}

.ri-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px
}

.ri-bar-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    width: 28px;
    text-align: right;
    flex-shrink: 0
}

.ri-bar-track {
    flex: 1;
    height: 7px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden
}

.ri-bar-fill {
    height: 100%;
    background: var(--amber);
    border-radius: 4px;
    transition: width 0.8s ease
}

.ri-bar-cnt {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    width: 28px;
    flex-shrink: 0
}

/* SUBMIT SECTION */
.submit-wrap {
    background: var(--cream-dark);
    padding: 5rem 2.5rem
}

.submit-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start
}

.submit-left {}

.submit-promise {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem
}

.promise-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border)
}

.promise-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
}

.promise-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px
}

.promise-desc {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.5
}

.submit-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 2.5rem;
    box-shadow: var(--shadow)
}

.field-grp {
    margin-bottom: 1.1rem
}

.field-lbl {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 5px;
    letter-spacing: 0.03em
}

.field-in {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s
}

.field-in:focus {
    border-color: var(--amber);
    background: var(--white)
}

.field-sel {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8AA0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 34px
}

.field-sel:focus {
    border-color: var(--amber);
    background: var(--white)
}

.field-ta {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    outline: none;
    height: 110px;
    resize: none;
    line-height: 1.65
}

.field-ta:focus {
    border-color: var(--amber);
    background: var(--white)
}

.f2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.star-row {
    display: flex;
    gap: 6px;
    margin-top: 4px
}

.s-btn {
    font-size: 26px;
    cursor: pointer;
    color: var(--cream-dark);
    transition: color 0.1s;
    background: none;
    border: none;
    padding: 0;
    line-height: 1
}

.s-btn.on {
    color: var(--amber)
}

.sub-btn {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.sub-btn:hover {
    background: #1a3d5c
}

.form-note {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.6
}







