*,
*::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:18px 40px;
    background:#fff;
    border-bottom:1px solid #ececec;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 12px rgba(15,45,74,.06);
}

/* Logo */

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: #18304F;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-name {
    font-size: 24px;
    font-weight: 700;
    color: #18304F;
    letter-spacing: .5px;
}

.logo-name span{
    color:#E8A020;
}

/* Desktop */

.nav-links{
    display:flex;
    list-style:none;
    gap:38px;
    margin:0;
    padding:0;
}

.nav-links a { 
    font-size: 13px; 
    font-weight: 500; 
    color: var(--text-mid); 
    text-decoration: none; 
    
}

.nav-links a:hover{
    color:#18304F;
}

.nav-cta{
    background:#E8A020;
    color:#18304F;
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:700;
}

/* Hamburger */

.menu-toggle{
    display:none;
    width:38px;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    height:3px;
    background:#18304F;
    margin:7px 0;
    border-radius:5px;
    transition:.3s;
}

/* Mobile Menu */

.mobile-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    display:none;
    flex-direction:column;
    padding:15px 25px;
    z-index:998;
}

.mobile-menu.active{
    display:flex;
}

.mobile-menu a{
    text-decoration:none;
    color:#18304F;
    font-size:16px;
    padding:14px 0;
    border-bottom:1px solid #eee;
}

.mobile-btn{
    margin-top:18px;
    background:#E8A020;
    color:#18304F !important;
    text-align:center;
    border-radius:8px;
    padding:14px;
    font-weight:700;
    border:none !important;
}

/* Tablet */

@media(max-width:992px){

    nav{
        padding:15px 20px;
    }

    .logo-name{
        font-size:28px;
    }

    .nav-links,
    .nav-cta{
        display:none;
    }

    .menu-toggle{
        display:block;
    }
}

/* Mobile */

@media(max-width:576px){

    .logo-icon{
        width:42px;
        height:42px;
    }

    .logo-icon svg{
        width:18px;
        height:18px;
    }

    .logo-name{
        font-size:24px;
    }

    nav{
        padding:12px 16px;
    }

    .menu-toggle{
        width:30px;
    }

    .menu-toggle span{
        margin:5px 0;
    }
}
.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
}




/*==============================
Hero
==============================*/

.itr-hero{

    background:var(--navy);
    color:#fff;
    position:relative;
    overflow:hidden;
    padding:30px 0 80px;

}

.hero-pattern{

    position:absolute;
    right:-180px;
    top:-120px;
    width:900px;
    height:900px;
    pointer-events:none;
    opacity:.12;

    background:
    radial-gradient(circle,
    transparent 67%,
    rgba(255,255,255,.12) 68%,
    transparent 69%),
    radial-gradient(circle,
    transparent 50%,
    rgba(255,255,255,.10) 51%,
    transparent 52%),
    radial-gradient(circle,
    transparent 84%,
    rgba(255,255,255,.10) 85%,
    transparent 86%);

}

.container{

    width:92%;
    max-width:1320px;
    margin:auto;

}

/* Breadcrumb */

.breadcrumb-wrap{

    display:flex;
    gap:14px;
    align-items:center;
    margin-bottom:60px;
    color:#d6d6d6;
    font-size:15px;

}

.breadcrumb-wrap a{

    color:#cfcfcf;
    text-decoration:none;

}

.breadcrumb-wrap span:last-child{

    color:var(--amber);

}

/* Grid */

.hero-grid{

    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;

}

/* Left */

.hero-tag{

    display:flex;
    align-items:center;
    gap:12px;
    color:var(--amber);
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:35px;

}

.hero-tag span{

    width:28px;
    height:2px;
    background:var(--amber);

}

.hero-content h1{

    font-size:35px;
    line-height:1.05;
    font-weight:800;
    max-width:760px;

}

.hero-content h1 span,
.hero-content h1 strong{

    color:var(--amber);

}

.hero-content h1 strong{

    display:block;

}

.hero-content p{

    margin:40px 0;
    color:#d8d8d8;
    line-height:1.8;
    font-size:16px;
    max-width:760px;

}

.hero-list{

    list-style:none;
    display:flex;
    flex-direction:column;
    gap:20px;

}

.hero-list li{

    display:flex;
    align-items:center;
    gap:16px;
    font-size:15px;
    font-weight:600;

}

.hero-list i{

    width:34px;
    height:34px;
    background:var(--amber);
    color:var(--navy);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;

}

.hero-btns{

    display:flex;
    gap:20px;
    margin-top:55px;

}

a.it-btn-primary{

    background:var(--amber);
    color:#122f4d;
    text-decoration:none;
    padding:20px 36px;
    border-radius:16px;
    font-size:17px;
    font-weight:700;

}

.btn-outline{

    border:1px solid rgba(255,255,255,.3);
    color:#fff;
    text-decoration:none;
    padding:20px 36px;
    border-radius:16px;
    font-size:17px;
    font-weight:700;

}

/* Right */

.certificate{

    background:#fff;
    color:var(--navy);
    border-radius:28px;
    padding:36px;
    border:4px solid #efe6d6;
    position:relative;
    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.ca-badge {
    width: 55px;
    height: 55px;
    background: var(--amber);
    border-radius: 50%;
    position: absolute;
    right: 34px;
    top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.brand h4 {
    font-size: 18px;
    letter-spacing: 2px;
}

.brand small{

    color:var(--amber);
    font-size:12px;
    letter-spacing:3px;

}

.certificate h3{

    margin-top:30px;
    font-size:20px;

}

.certificate-text{

    color:#56657a;
    margin:18px 0 40px;
    line-height:1.7;
    font-size:16px;

}

.certificate-row{

    display:flex;
    justify-content:space-between;
    padding:22px 0;
    border-top:1px solid #ececec;
    font-size:14px;

}

.certificate-row span{

    color:#777;

}

.certificate-footer{

    display:flex;
    justify-content:space-between;
    margin-top:35px;
    align-items:center;
    font-size:14px;

}

.verified{

    color:#1c9d76;
    font-weight:700;

}

/*==============================
Responsive
==============================*/

@media(max-width:1200px){

.hero-grid{

grid-template-columns:1fr;
gap:60px;

}

.hero-content{

text-align:center;

}

.hero-content h1,
.hero-content p{

margin-left:auto;
margin-right:auto;

}

.hero-list{

/*align-items:center;*/

}

.hero-btns{

justify-content:center;

}

.certificate{

max-width:700px;
margin:auto;

}

}

@media(max-width:768px){

.itr-hero{

padding:25px 0 60px;

}

    .hero-content h1 {
        font-size: 25px;
        line-height: 1.5;
    }

.hero-content p{

font-size:16px;

}

.hero-list li{
font-size:13px;
}

.hero-btns{

flex-direction:column;

}

.btn-primary,
.btn-outline{

width:100%;
text-align:center;
font-size:18px;

}

.certificate{

padding:24px;

}

.certificate h3{

font-size:28px;

}

.certificate-row{

font-size:15px;

}

.ca-badge{

width:60px;
height:60px;
font-size:22px;

}

}


/*=============================
WHAT WE DO
=============================*/

.what-we-do{

    padding:90px 0;
       background: var(--cream);

}

.wwd-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:flex-start;

}

/* Tag */

.section-tag{

    display:flex;
    align-items:center;
    gap:12px;
    color:var(--amber);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:22px;

}

.section-tag span{
    width:28px;
    height:2px;
    background:var(--amber);

}

.wwd-content h2 {
    font-size: 25px;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 10px;
    max-width: 550px;
    font-weight: 700;
}


.wwd-content h2 em{

    display:block;
    font-style:italic;
    font-weight:700;

}

.wwd-content p{

    font-size:15px;
    color:#5c6470;
    line-height:1.9;
    margin-bottom:10px;

}

/* Cards */

.wwd-boxes{

    display:flex;
    flex-direction:column;
    

}

.service-card{

    display:flex;
    gap:18px;
    align-items:flex-start;
    border:1px solid #ece7de;
    border-radius:20px;
    padding:24px;
    transition:.3s;
    background:#fff;

}

.service-card:hover{

    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(0,0,0,.07);

}

.number{

    width:42px;
    height:42px;
    min-width:42px;

    border-radius:12px;

    background:#faebc9;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--navy);

    font-weight:700;
    font-size:16px;

}

.service-card h4 {
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 0px;
    font-weight: 700;
}

.service-card p{

    font-size:14px;
    color:#5c6470;
    line-height:1.8;
    margin:0;

}

/*=========================
Responsive
=========================*/

@media(max-width:992px){

.wwd-grid{

grid-template-columns:1fr;
gap:45px;

}

}

@media(max-width:768px){

.what-we-do{

padding:60px 0;

}

.wwd-content h2{

font-size:30px;

}

.wwd-content p{

font-size:15px;

}

.service-card{

padding:18px;
gap:15px;

}

.service-card h4{

font-size:18px;

}

.service-card p{

font-size:14px;
line-height:1.7;

}

.number{

width:36px;
height:36px;
min-width:36px;
font-size:15px;

}

.section-tag{

font-size:12px;

}

}

/*==========================
Tax Audience Section
==========================*/

.tax-audience-area{
    padding:90px 0;
    background:#fff;
}

.tax-audience-header{
    
    margin-bottom:55px;
}

.tax-audience-label{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
    color:var(--amber);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.tax-audience-label span{
    width:30px;
    height:2px;
    background:var(--amber);
}

.tax-audience-title {
    font-size: 30px;
    line-height: 1.25;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 10px;
}

.tax-audience-title span{
    color:var(--amber);
}

.tax-audience-desc{
    font-size:16px;
    line-height:1.8;
    color:#5e6675;
}

.tax-audience-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.tax-audience-card{
    background:#fff;
    border:1px solid #ece6db;
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.tax-audience-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(15,45,74,.08);
}

.tax-audience-icon{
    width:50px;
    height:50px;
    border-radius:16px;
    background:var(--navy);
    color:var(--amber);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
    font-weight:700;
    margin-bottom:22px;
}

.tax-audience-card h4{
    font-size:16px;
    color:var(--navy);
    line-height:1.45;
    margin-bottom:10px;
    font-weight:700;
}

.tax-audience-card p{
    font-size:14px;
    color:#5e6675;
    line-height:1.8;
}

/* Responsive */

@media (max-width:1199px){

.tax-audience-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:767px){

.tax-audience-area{
    padding:60px 0;
}

.tax-audience-title{
    font-size:30px;
}

.tax-audience-desc{
    font-size:15px;
}

.tax-audience-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.tax-audience-card{
    padding:22px;
}

.tax-audience-card h4{
    font-size:18px;
}

.tax-audience-card p{
    font-size:14px;
}

.tax-audience-icon{
    width:50px;
    height:50px;
    font-size:18px;
}

}

/*=========================
ITR Scope
=========================*/

.itr-scope-section{
    padding:60px 0;
    background:var(--cream);
}

.itr-scope-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.itr-scope-tag{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--amber);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.itr-scope-tag span{
    width:28px;
    height:2px;
    background:var(--amber);
}

.itr-scope-heading h2{
    font-size:30px;
    line-height:1.25;
    color:var(--navy);
    font-weight:700;
    margin-bottom:20px;
}

.itr-scope-heading h2 span{
    color:var(--amber);
}

.itr-scope-heading p{
    font-size:16px;
    color:#5f6676;
    line-height:1.8;
}

.itr-scope-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.itr-scope-card{
    background:#fff;
    border:1px solid rgba(15,45,74,.08);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.itr-scope-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(15,45,74,.08);
}

.itr-scope-number{
    width:45px;
    height:45px;
    background:var(--navy);
    color:var(--amber);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
}

.itr-scope-card h4{
    font-size:18px;
    color:var(--navy);
    line-height:1.45;
    margin-bottom:16px;
    font-weight:700;
}

.itr-scope-card p{
    font-size:14px;
    line-height:1.8;
    color:#5f6676;
    margin:0;
}

/*====================
Responsive
====================*/

@media(max-width:1199px){

.itr-scope-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.itr-scope-section{
    padding:60px 0;
}

.itr-scope-heading{
    margin-bottom:35px;
}

.itr-scope-heading h2{
    font-size:30px;
}

.itr-scope-heading p{
    font-size:15px;
}

.itr-scope-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.itr-scope-card{
    padding:22px;
}

.itr-scope-number{
    width:48px;
    height:48px;
    font-size:20px;
    margin-bottom:18px;
}

.itr-scope-card h4{
    font-size:18px;
}

.itr-scope-card p{
    font-size:14px;
    line-height:1.7;
}

.itr-scope-tag{
    font-size:12px;
}

}

/*===================================
ITR PROCESS
====================================*/

.itr-process-section{
    padding:60px 0;
    background:#fff;
}

.itr-process-header{
    
    margin-bottom:30px;
}

.itr-process-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--amber);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:22px;
}

.itr-process-tag span{
    width:30px;
    height:2px;
    background:var(--amber);
}

.itr-process-header h2{
    font-size:30px;
    line-height:1.25;
    color:var(--navy);
    font-weight:700;
    margin-bottom:15px;
    max-width:760px;
}
.itr-process-header h3{
    font-size:30px;
    line-height:1.25;
    color:var(--navy);
    font-weight:700;
    margin-bottom:15px;
    max-width:760px;
}

.itr-process-header h2 span{
    color:var(--amber);
}
.itr-process-header h3 span{
    color:var(--amber);
}

.itr-process-header p{
    color:#5d6777;
    font-size:16px;
    line-height:1.8;
}

/* Timeline */

.itr-process-wrapper{
    position:relative;
}

.itr-process-line{
    position:absolute;
    left:0;
    right:0;
    top:28px;
    border-top:2px dashed #e6dfd5;
    z-index:1;
}

.itr-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    position:relative;
    z-index:2;
}

.itr-process-item{
    position:relative;
}

.itr-process-count{

    width:45px;
    height:45px;

    background:var(--navy);
    color:var(--amber);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:17px;
    font-weight:700;

    margin-bottom:34px;

    box-shadow:0 0 0 8px #fff;

}

.itr-process-item h4{

    color:var(--navy);
    font-size:18px;
    /*margin-bottom:15px;*/
    line-height:1.4;
    font-weight:700;

}

.itr-process-item p{

    color:#5d6777;
    font-size:14px;
    line-height:1.8;

}

/*======================
Tablet
=======================*/

@media(max-width:992px){

.itr-process-grid{

grid-template-columns:repeat(2,1fr);

}

.itr-process-line{

display:none;

}

}

/*======================
Mobile
=======================*/

@media(max-width:767px){

.itr-process-section{

padding:60px 0;

}

.itr-process-header{

margin-bottom:40px;

}

.itr-process-header h2{

font-size:32px;

}

.itr-process-header p{

font-size:15px;

}

.itr-process-grid{

grid-template-columns:1fr;
gap:35px;

}

.itr-process-count{

width:50px;
height:50px;
font-size:20px;
margin-bottom:18px;

}

.itr-process-item h4{

font-size:18px;

}

.itr-process-item p{

font-size:14px;
line-height:1.7;

}

.itr-process-tag{

font-size:12px;

}

}


/*=========================
Pricing
==========================*/

.tax-price-section{
    padding:60px 0;
  background: var(--cream);
}

.tax-price-heading{
    max-width:700px;
    margin:0 auto 50px;
    text-align:center;
}

.tax-price-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--amber);
    font-size:12px;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:18px;
}

.tax-price-tag span{
    width:28px;
    height:2px;
    background:var(--amber);
}

.tax-price-heading h2{
    font-size:30px;
    color:var(--navy);
    margin-bottom:15px;
    font-weight:700;
}

.tax-price-heading h2 span{
    color:var(--amber);
}

.tax-price-heading p{
    font-size:16px;
    line-height:1.8;
    color:#5f6677;
}

/* Cards */

.tax-price-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.tax-price-card{

    border:1px solid #ebe4d8;
    border-radius:22px;
    padding:32px;
    background:#fff;
    position:relative;
    transition:.3s;

}

.tax-price-card:hover{

    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(15,45,74,.08);

}

.featured-plan{

    border:2px solid var(--amber);

}

.popular-badge{
    position:absolute;
    top:-18px;
    left:34px;
    background:var(--amber);
    color:var(--navy);
    font-size:14px;
    font-weight:700;
    padding:10px 18px;
    border-radius:40px;

}

.tax-price-card h4{
    font-size:17px;
    color:var(--navy);
    margin-bottom:10px;
    font-weight:700;

}

.plan-price{
    font-size:25px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:20px;

}

.plan-desc{
    font-size:14px;
    line-height:1.8;
    color:#5f6677;
    margin-bottom:15px;

}

.tax-price-card ul{

    list-style:none;
    margin:0;
    padding:0 0 25px;

}

.tax-price-card li{

    font-size:15px;
    color:var(--navy);
    margin-bottom:15px;
    padding-left:24px;
    position:relative;

}

.tax-price-card li::before{

    content:"✓";
    position:absolute;
    left:0;
    color:#1a9d74;
    font-weight:700;

}

.plan-btn{

    display:block;
    text-align:center;
    border:2px solid var(--navy);
    color:var(--navy);
    text-decoration:none;
    border-radius:14px;
    padding:15px;
    font-size:17px;
    font-weight:600;
    transition:.3s;

}

.active-btn{

    background:var(--amber);
    border-color:var(--amber);

}

.plan-btn:hover{

    background:var(--navy);
    color:#fff;

}

/*===================
Responsive
====================*/

@media(max-width:1199px){

.tax-price-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.tax-price-section{
    padding:60px 0;
}

.tax-price-heading h2{
    font-size:30px;
}

.tax-price-heading p{
    font-size:14px;
}

.tax-price-grid{
    grid-template-columns:1fr;
    gap:22px;
}

.tax-price-card{
    padding:24px;
}

.popular-badge{
    left:20px;
    font-size:12px;
    padding:8px 15px;
}

.tax-price-card h4{
    font-size:18px;
}

.plan-price{
    font-size:40px;
}

.plan-desc,
.tax-price-card li{
    font-size:14px;
}

.plan-btn{
    font-size:15px;
    padding:13px;
}

}


/*==================================
WHY FINSPYNE
==================================*/

.whyfin-section{
    padding:60px 0;
    background:#fff;
}

.whyfin-header{
    
    margin-bottom:45px;
}

.whyfin-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--amber);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.whyfin-tag span{
    width:30px;
    height:2px;
    background:var(--amber);
}

.whyfin-header h2{
    font-size:30px;
    line-height:1.25;
    color:var(--navy);
    font-weight:700;
}

.whyfin-header h2 span{
    color:var(--amber);
}

/* Grid */

.whyfin-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border:1px solid #e8e0d4;
    border-radius:24px;
    overflow:hidden;
    background:#fff;
}

.whyfin-item{
    padding:38px;
    border-right:1px solid #e8e0d4;
    border-bottom:1px solid #e8e0d4;
}

.whyfin-item:nth-child(3n){
    border-right:none;
}

.whyfin-item:nth-last-child(-n+3){
    border-bottom:none;
}

.whyfin-icon{
    width:40px;
    height:40px;
    border-radius:14px;
    background:#f8e8c4;
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    margin-bottom:15px;
}

.whyfin-item h4{
    font-size:16px;
    color:var(--navy);
    margin-bottom:10px;
    line-height:1.4;
    font-weight:700;
}

.whyfin-item p{
    font-size:14px;
    line-height:1.8;
    color:#5d6777;
    margin:0;
}

/*========================
Tablet
========================*/

@media(max-width:991px){

.whyfin-grid{
    grid-template-columns:repeat(2,1fr);
}

.whyfin-item{
    border-right:1px solid #e8e0d4;
    border-bottom:1px solid #e8e0d4;
}

.whyfin-item:nth-child(2n){
    border-right:none;
}

.whyfin-item:nth-last-child(-n+2){
    border-bottom:none;
}

}

/*========================
Mobile
========================*/

@media(max-width:767px){

.whyfin-section{
    padding:60px 0;
}

.whyfin-header h2{
    font-size:30px;
}

.whyfin-grid{
    grid-template-columns:1fr;
}

.whyfin-item{
    border-right:none;
    border-bottom:1px solid #e8e0d4;
    padding:24px;
}

.whyfin-item:last-child{
    border-bottom:none;
}

.whyfin-icon{
    width:42px;
    height:42px;
    font-size:14px;
    margin-bottom:18px;
}

.whyfin-item h4{
    font-size:17px;
}

.whyfin-item p{
    font-size:14px;
    line-height:1.7;
}

}


/*==========================
FAQ
===========================*/

.faq-new-section{
    padding:60px 0;
    background:var(--cream);

}

.faq-new-head{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;

}

.faq-new-tag{
    display:inline-flex;
    align-items:center;
    gap:12px;

    color:var(--amber);

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:18px;

}

.faq-new-tag span{

    width:30px;
    height:2px;

    background:var(--amber);

}

.faq-new-head h3{
    font-size:30px;
    font-weight:700;
    line-height:1.25;

    color:var(--navy);

}

.faq-new-head h3 span{

    color:var(--amber);

}

.faq-new-wrapper{

    max-width:1000px;
    margin:auto;

}

.faq-new-item{

    border-bottom:1px solid #e4dccf;

}

.faq-new-question{

    display:flex;
    justify-content:space-between;
    align-items:center;

    cursor:pointer;

    padding:24px 0;

}

.faq-new-question h4{

    font-size:17px;
    color:var(--navy);
    margin:0;
    font-weight:600;

}

.faq-new-icon{

    width:36px;
    height:36px;

    border:2px solid var(--amber);
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--amber);

    font-size:22px;
    font-weight:700;

    transition:.3s;

}

.faq-new-answer{

    display:none;
    padding-bottom:22px;

}

.faq-new-answer p{

    margin:0;

    color:#5d6677;

    line-height:1.8;

    font-size:15px;

}

.faq-new-item.active .faq-new-answer{

    display:block;

}

.faq-new-item.active .faq-new-icon{

    transform:rotate(45deg);

}

/*=====================
Mobile
======================*/

@media(max-width:768px){

.faq-new-section{

padding:60px 0;

}

.faq-new-head{

margin-bottom:35px;

}

.faq-new-head h2{

font-size:30px;

}

.faq-new-question{

padding:18px 0;

}

.faq-new-question h4{

font-size:15px;

}

.faq-new-answer p{

font-size:14px;

}

.faq-new-icon{

width:30px;
height:30px;
font-size:18px;

}


}




.call-now-btn {
    display: inline-flex;
    align-items: center;
   
    background: #0F2D4A;
       text-decoration: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;

}

.call-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0F2D4A;
    border-radius: 50%;
    font-size: 13px;
}

.call-now-btn strong {
    font-size: 12px;
    white-space: nowrap;
}
.call-number {
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    padding-left: 10px;
    /*border-left: 1px solid rgba(255,255,255,.25);*/
}

/*.call-now-btn:hover {*/
/*    background: #E8A020;*/
/*    transform: translateY(-2px);*/
/*}*/

/*.call-now-btn:hover .call-icon {*/
/*    background: #0F2D4A;*/
/*    color: #E8A020;*/
/*}*/

/*.call-now-btn:hover strong,*/
/*.call-now-btn:hover .call-number {*/
/*    color: #0F2D4A;*/
/*}*/



.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}



/*====================================
MEDIA BANNER SECTION
====================================*/

.media-banner-section {
    position: relative;
    height: 350px;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.media-banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(11, 90, 143, 0.65) 0%,
            rgba(24, 79, 150, 0.55) 35%,
            rgba(33, 95, 168, 0.45) 70%,
            rgba(67, 197, 196, 0.35) 100%);

    z-index: 1;
}

.media-banner-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.media-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 5px 14px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;

    margin-bottom: 25px;
}

.media-breadcrumb a {
    text-decoration: none;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

.media-breadcrumb a:hover {
    color: #43c5c4;
}

.media-breadcrumb span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.media-banner-content h1 {
    color: #fff;

    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;

    margin: 0;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.media-banner-content h1::after {
    content: "";

    display: block;

    width: 120px;
    height: 4px;

    margin: 18px auto 0;

    border-radius: 50px;

    background: linear-gradient(90deg,
            #ffffff,
            #43c5c4);
}

/*====================================
TABLET
====================================*/

@media (max-width: 991px) {

    .media-banner-section {
        height: 360px;
    }

    .media-banner-content h1 {
        font-size: 52px;
    }

    .media-breadcrumb {
        margin-bottom: 20px;
    }
}

/*====================================
MOBILE
====================================*/

@media (max-width: 767px) {

    .media-banner-section {
        height: 280px;
        padding: 20px;
    }

    .media-banner-content h1 {
        font-size: 34px;
    }

    .media-banner-content h1::after {
        width: 80px;
        margin-top: 12px;
    }

    .media-breadcrumb {
        padding: 8px 16px;
        gap: 8px;
        margin-bottom: 15px;
    }

    .media-breadcrumb a,
    .media-breadcrumb span {
        font-size: 13px;
    }
}

/*====================================
SMALL MOBILE
====================================*/

@media (max-width: 480px) {

    .media-banner-section {
        height: 240px;
    }

    .media-banner-content h1 {
        font-size: 28px;
    }

    .media-breadcrumb {
        padding: 7px 14px;
    }

    .media-breadcrumb a,
    .media-breadcrumb span {
        font-size: 12px;
    }
}


/* =========================
   BLOG PAGE SECTION
========================= */

.blog-page-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 35px;
    align-items: start;
}

/* =========================
   BLOG GRID
========================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    border: 1px solid #e8edf5;
    transition: .4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(29, 79, 163, .18);
}

/* =========================
   IMAGE
========================= */

.blog-image {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.blog-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #fff;
    display: block;
    transition: .5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.03);
}

/* =========================
   TAG
========================= */

.blog-tag {
    position: absolute;
    top: 18px;
    left: 18px;

    background: linear-gradient(90deg,
            #1d4fa3,
            #45c4c6);

    color: #fff;
    padding: 10px 18px;
    border-radius: 40px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;

    z-index: 2;
}


.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 22px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #e8a020;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s ease;
}

.read-more:hover {
    color: #0f2d4a;
}

.read-more i {
    font-size: 16px;
}

/* =========================
   SIDEBAR
========================= */

.category-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #e8edf5;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    position: sticky;
    top: 120px;
}

.category-card h3 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.category-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-card li {
    border-bottom: 1px solid #edf2f7;
}

.category-card li:last-child {
    border-bottom: none;
}

.category-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 0;

    color: #475569;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;

    transition: .3s ease;
}

.category-card a:hover {
    color: #1d4fa3;
    padding-left: 10px;
}

.category-card a::after {
    content: "›";
    font-size: 24px;
    color: #e8a020;
    font-weight: 700;
}
/* =========================
   PAGINATION
========================= */

.blog-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.blog-pagination a,
.blog-pagination span {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #fff;
    color: #1d4fa3;

    text-decoration: none;
    font-weight: 700;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);

    transition: .3s;
}

.blog-pagination a:hover,
.blog-pagination .active {
    background: linear-gradient(90deg,
            #1d4fa3,
            #45c4c6);
    color: #fff;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px) {

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        position: relative;
        top: 0;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .blog-page-section {
        padding: 50px 0;
    }

    .blog-layout {
        gap: 25px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-image img {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 22px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .read-more {
        font-size: 16px;
    }

    .category-card {
        padding: 25px;
    }

    .category-card h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .category-card a {
        font-size: 16px;
        padding: 14px 0;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px) {

    .blog-image img {
        height: 200px;
    }

    .blog-tag {
        font-size: 11px;
        padding: 8px 14px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .category-card {
        border-radius: 18px;
    }

    .blog-card {
        border-radius: 18px;
    }
}


.blog-breadcrumb {
      background: #0f2d4a;
    padding: 18px 0;
}
.blog-breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ddd;
}

.blog-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.blog-breadcrumb span {
    margin: 0 6px;
    color: #fff;
}

@media (max-width: 991px) {

    .blog-hero-sec {
        height: 220px;
    }

    .blog-hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    .blog-hero-sec {
        height: 180px;
    }

    .blog-hero-content h1 {
        font-size: 26px;
    }

    .blog-breadcrumb {
        font-size: 12px;
    }
}


.blog-detail-section {
    padding: 90px 0;
    background: #ffffff;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}


.blog-feature-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 35px;
}

.blog-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.blog-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #333;
}

.blog-content h2 {
    margin-top: 45px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.blog-category-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    border: 1px solid #f0f0f0;
}

.blog-category-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.blog-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-card ul li {
    margin-bottom: 14px;
}

.blog-category-card ul li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f5f7fb;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s ease;
}

.blog-category-card ul li a:hover {
    background: #e8a020;
    color: #ffffff;
    transform: translateX(5px);
}

.blog-form-card {
    background: #0f2d4a;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.blog-form-card h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog-form-card form {
    width: 100%;
}

.blog-form-card form input,
.blog-form-card form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.blog-form-card form input::placeholder,
.blog-form-card form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blog-form-card form textarea {
    min-height: 120px;
    resize: none;
}

.blog-form-card form button {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: var(--accent-red);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.blog-form-card form button:hover {
    background:#e8a020;
    color: #fff;
}

.blog-form-card form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.blog-form-card form select {
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.blog-form-card form select {
    color: #fff;
}

.blog-form-card form select option {
    color: #000;
    background: #fff;
}

a {
    text-decoration: none;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-feature-image img {
        border-radius: 15px;
    }

    .blog-category-card,
    .blog-form-card {
        padding: 25px;
    }
}




/* =========================================
   ITR DELHI - CONTENT + FORM
========================================= */

.itr-delhi-contact {
    position: relative;
    overflow: hidden;
    padding: 90px 20px;
    background: var(--cream, #faf8f3);
}

.itr-delhi-contact-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 75px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.itr-delhi-contact-content {
    width: 100%;
}

.itr-delhi-contact-tag {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 22px;

    color: #e8a020;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
}

.itr-delhi-contact-tag span {
    display: block;
    width: 40px;
    height: 3px;
    background: #e8a020;
}


.itr-delhi-contact-content h2 {
    max-width: 700px;
    margin: 0 0 10px;
    color: #0b315b;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.itr-delhi-contact-content h2 em {
    color: #e8a020;
    font-style: normal;
}


/* Paragraphs */

.itr-delhi-contact-content > p {
    max-width: 700px;

    /*margin: 0 0 23px;*/

    color: #52657d;

    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
}

.itr-delhi-contact-content > p:last-child {
    margin-bottom: 0;
}

.itr-delhi-contact-content strong {
    color: #0b315b;
    font-weight: 700;
}


/* =========================================
   RIGHT FORM CARD
========================================= */

.itr-delhi-contact-form {
    width: 100%;
    box-sizing: border-box;

    padding: 34px 32px;

    background: #ffffff;

    border: 1px solid #e8e2d8;
    border-radius: 24px;

    box-shadow: 0 20px 55px rgba(11, 49, 91, 0.09);
}


/* Form Heading */

.itr-delhi-form-heading {
    margin-bottom: 24px;
}

.itr-delhi-form-heading > span {
    display: inline-block;

    margin-bottom: 8px;

    color: #e8a020;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.itr-delhi-form-heading h3 {
    margin: 0 0 7px;

    color: #0b315b;

    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
}

.itr-delhi-form-heading h3 strong {
    color: #e8a020;
}

.itr-delhi-form-heading p {
    margin: 0;

    color: #718096;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   EXISTING FORM
   No HTML change required
========================================= */

.itr-delhi-contact-form form {
    width: 100%;
}

.itr-delhi-contact-form form input,
.itr-delhi-contact-form form select,
.itr-delhi-contact-form form textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 13px 15px;
    margin-bottom: 13px;

    border: 1px solid #dfe4ea;
    border-radius: 10px;

    background: #fbfcfd;

    color: #26384f;
    font-size: 14px;

    outline: none;

    transition: all .25s ease;
}

.itr-delhi-contact-form form input:focus,
.itr-delhi-contact-form form select:focus,
.itr-delhi-contact-form form textarea:focus {
    border-color: #e8a020;
    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(232, 160, 32, .10);
}

.itr-delhi-contact-form form input::placeholder,
.itr-delhi-contact-form form textarea::placeholder {
    color: #98a2b1;
}


/* Submit */

.itr-delhi-contact-form form button[type="submit"] {
    width: 100%;

    padding: 14px 20px;

    border: 0;
    border-radius: 10px;

    background: #0b315b;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: all .25s ease;
}

.itr-delhi-contact-form form button[type="submit"]:hover {
    background: #e8a020;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(232, 160, 32, .20);
}


/* Alerts */

.itr-delhi-contact-form .alert {
    margin-bottom: 18px;
    padding: 12px 15px;

    border-radius: 9px;
    font-size: 13px;
}


/* =========================================
   BACKGROUND DECORATION
========================================= */

.itr-delhi-contact::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    left: -330px;
    top: -190px;

    border-radius: 50%;

    border: 1px solid rgba(232, 160, 32, .12);

    box-shadow:
        0 0 0 35px rgba(232, 160, 32, .025),
        0 0 0 75px rgba(232, 160, 32, .018);
}

.itr-delhi-contact::after {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -370px;
    bottom: -290px;

    border-radius: 50%;

    border: 1px solid rgba(232, 160, 32, .12);

    box-shadow:
        0 0 0 35px rgba(232, 160, 32, .025),
        0 0 0 75px rgba(232, 160, 32, .018);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .itr-delhi-contact {
        padding: 75px 25px;
    }

    .itr-delhi-contact-container {
        grid-template-columns: minmax(0, 1fr) 400px;
        gap: 40px;
    }

    .itr-delhi-contact-content h2 {
        font-size: 36px;
    }

    .itr-delhi-contact-content > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .itr-delhi-contact-form {
        padding: 28px 24px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .itr-delhi-contact {
        padding: 60px 18px;
    }

    .itr-delhi-contact-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .itr-delhi-contact-tag {
        font-size: 13px;
        letter-spacing: 2px;
        gap: 10px;
    }

    .itr-delhi-contact-tag span {
        width: 30px;
        height: 2px;
    }

    .itr-delhi-contact-content h2 {
        font-size: 31px;
        line-height: 1.2;
        letter-spacing: -.5px;
        margin-bottom: 22px;
    }

    .itr-delhi-contact-content > p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .itr-delhi-contact-form {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .itr-delhi-form-heading h3 {
        font-size: 23px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .itr-delhi-contact {
        padding: 50px 15px;
    }

    .itr-delhi-contact-content h2 {
        font-size: 28px;
    }

    .itr-delhi-contact-content > p {
        font-size: 15px;
    }

    .itr-delhi-contact-form {
        padding: 22px 17px;
    }
}


/* =========================================
   SIMPLE WHY ITR SECTION
========================================= */

.itr-why-simple {
    padding: 90px 20px 100px;
    background: var(--cream-dark);
}

.itr-why-simple .container {
    max-width: 1200px;
    margin: 0 auto;
}


/* HEADER */

.itr-why-simple-header {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.itr-why-simple-tag {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 20px;

    color: #e8a020;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.itr-why-simple-tag span {
    width: 38px;
    height: 3px;
    background: #e8a020;
}


.itr-why-simple-header h2 {
    margin: 0 0 20px;

    color: #0b315b;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.itr-why-simple-header h2 span {
    color: #e8a020;
}


.itr-why-simple-header > p {
    margin: 0;

    color: #5b6d82;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================
   CARDS
========================================= */

.itr-why-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.itr-why-simple-card {
    padding: 28px 25px;

    background: #ffff;

    border: 1px solid #ebe6dc;
    border-radius: 14px;

    transition: .25s ease;
}

.itr-why-simple-card:hover {
    background: #ffffff;

    border-color: rgba(232, 160, 32, .35);

    box-shadow: 0 12px 30px rgba(11, 49, 91, .06);

    transform: translateY(-3px);
}


.itr-why-simple-card h3 {
    margin: 0 0 11px;

    color: #0b315b;

    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}


.itr-why-simple-card p {
    margin: 0;

    color: #63758a;

    font-size: 15px;
    line-height: 1.7;
}

.itr-why-simple-card strong {
    color: #0b315b;
}


/* Last Card */

.itr-why-simple-last {
    grid-column: 2 / 3;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .itr-why-simple {
        padding: 75px 25px 85px;
    }

    .itr-why-simple-header h2 {
        font-size: 38px;
    }

    .itr-why-simple-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .itr-why-simple-last {
        grid-column: auto;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .itr-why-simple {
        padding: 60px 18px 70px;
    }

    .itr-why-simple-header {
        margin-bottom: 35px;
    }

    .itr-why-simple-tag {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .itr-why-simple-tag span {
        width: 28px;
        height: 2px;
    }

    .itr-why-simple-header h2 {
        font-size: 31px;
        line-height: 1.2;
    }

    .itr-why-simple-header > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .itr-why-simple-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .itr-why-simple-card {
        padding: 23px 20px;
    }

    .itr-why-simple-card h3 {
        font-size: 17px;
    }

    .itr-why-simple-card p {
        font-size: 14px;
        line-height: 1.65;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .itr-why-simple {
        padding: 50px 15px 60px;
    }

    .itr-why-simple-header h2 {
        font-size: 28px;
    }

    .itr-why-simple-header > p {
        font-size: 15px;
    }

    .itr-why-simple-card {
        padding: 20px 17px;
    }

}


/* =========================================
   COMMON ITR FILING CHALLENGES
========================================= */

.itr-challenges-section {
    position: relative;
    overflow: hidden;
    padding: 90px 20px 100px;
    background: #F7F3EB;
}

.itr-challenges-section .container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.itr-challenges-header {
    max-width: 900px;

    margin: 0 auto 55px;

    text-align: center;
}

.itr-challenges-tag {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 20px;

    color: #e8a020;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;
}

.itr-challenges-tag span {
    display: block;

    width: 38px;
    height: 3px;

    background: #e8a020;
}


/* Main Heading */

.itr-challenges-header h2 {
    margin: 0 0 22px;

    color: #0b315b;

    font-size: 35px;
    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -1px;
}

.itr-challenges-header h2 span {
    /*display: block;*/

    color: #e8a020;
}


/* Description */

.itr-challenges-header > p {
    max-width: 850px;

    margin: 0 auto;

    color: #596b80;

    font-size: 17px;
    line-height: 1.75;
}

.itr-challenges-header strong {
    color: #0b315b;
    font-weight: 700;
}


/* =========================================
   TWO COLUMN LIST
========================================= */

.itr-challenges-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 65px;
}

.itr-challenges-column {
    display: flex;

    flex-direction: column;
}


/* =========================================
   CHALLENGE ITEM
========================================= */

.itr-challenge-item {
    position: relative;

    padding: 0 0 28px 25px;

    margin-bottom: 28px;

    border-bottom: 1px solid #eee8dd;
}

.itr-challenge-item:last-child {
    margin-bottom: 0;
}


/* Gold vertical line */

.itr-challenge-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 2px;

    width: 4px;
    height: 32px;

    border-radius: 3px;

    background: #e8a020;
}


/* Title */

.itr-challenge-item h3 {
    margin: 0 0 10px;

    color: #0b315b;

    font-size: 19px;
    line-height: 1.4;

    font-weight: 700;
}


/* Content */

.itr-challenge-item p {
    margin: 0;

    color: #60748b;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   DECORATIVE BACKGROUND
========================================= */

.itr-challenges-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -330px;
    top: -190px;

    border-radius: 50%;

    border: 1px solid rgba(232, 160, 32, .10);

    box-shadow:
        0 0 0 35px rgba(232, 160, 32, .025),
        0 0 0 75px rgba(232, 160, 32, .018);
}

.itr-challenges-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -370px;
    bottom: -300px;

    border-radius: 50%;

    border: 1px solid rgba(232, 160, 32, .10);

    box-shadow:
        0 0 0 35px rgba(232, 160, 32, .025),
        0 0 0 75px rgba(232, 160, 32, .018);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .itr-challenges-section {
        padding: 75px 25px 85px;
    }

    .itr-challenges-header h2 {
        font-size: 38px;
    }

    .itr-challenges-list {
        column-gap: 40px;
    }

    .itr-challenge-item {
        padding-left: 20px;
    }

    .itr-challenge-item h3 {
        font-size: 17px;
    }

    .itr-challenge-item p {
        font-size: 14px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .itr-challenges-section {
        padding: 60px 18px 70px;
    }

    .itr-challenges-header {
        margin-bottom: 40px;
    }

    .itr-challenges-tag {
        font-size: 12px;
        letter-spacing: 2px;
        gap: 10px;
    }

    .itr-challenges-tag span {
        width: 28px;
        height: 2px;
    }

    .itr-challenges-header h2 {
        font-size: 31px;
        line-height: 1.2;
        letter-spacing: -.5px;
    }

    .itr-challenges-header h2 span {
        display: inline;
    }

    .itr-challenges-header > p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* One column on mobile */

    .itr-challenges-list {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .itr-challenges-column {
        gap: 0;
    }


    .itr-challenge-item {
        padding: 0 0 23px 20px;

        margin-bottom: 23px;
    }

    .itr-challenge-item::before {
        width: 3px;
        height: 27px;
    }

    .itr-challenge-item h3 {
        font-size: 17px;
        line-height: 1.35;
    }

    .itr-challenge-item p {
        font-size: 14px;
        line-height: 1.65;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .itr-challenges-section {
        padding: 50px 15px 60px;
    }

    .itr-challenges-header h2 {
        font-size: 28px;
    }

    .itr-challenges-header > p {
        font-size: 15px;
    }

    .itr-challenge-item {
        padding-left: 17px;
    }

    .itr-challenge-item h3 {
        font-size: 16px;
    }

    .itr-challenge-item p {
        font-size: 13.5px;
    }

}
