/* ========== CSS VARIABLES ========== */
:root {
    --green-dark:  #4F6E4C;
    --green-light: #B4B671;
    --gray:        #EDEAEB;
    --gray-mid:    #d8d4d0;
    --gray-dark:   #c8c3be;
    --blue:        #566E8A;
    --white:       #faf8f1;
    --off-white:   #ede9e3;
    --off-white-2: #e5e0d9;
    --text-dark:   #1a2118;
    --text-mid:    #3d4d3b;
    --text-muted:  #6a7a68;
    --border:      #d4d0ca;
    --shadow-sm:   0 1px 4px rgba(26,33,24,0.07);
    --shadow-md:   0 4px 20px rgba(26,33,24,0.10);
    --shadow-lg:   0 12px 40px rgba(26,33,24,0.15);
    --radius-sm:   8px;
    --radius-md:   14px;
    --radius-lg:   20px;
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== GLOBAL LEFT + JUSTIFY ========== */
.section-title,
.label,
.divider-line {
    text-align: left;
}
.section-sub,
.story-intro,
.value-desc,
.staff-card-desc,
.footer-cta-desc,
.footer-copy,
.hero-desc,
.vision-text p,
.lc-text .section-sub,
.process-points ul li,
.workflow-card-list li,
.change-item,
.testimonial-quote {
    text-align: justify;
}

/* Elements that must stay centred */
.testimonials-header,
.testimonials-header .section-title,
.testimonials-header .label,
.pillar-name,
.lc-mockup-title,
.lc-mockup-sub,
.lc-mockup-course,
.savings-bar,
.footer-bottom span,
.carousel-controls {
    text-align: center;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    text-align: justify;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--green-dark);
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
}
/* Label variants on dark backgrounds */
.lc-text .label,
.testimonials-header .label,
.cta-text .label {
    background: rgba(255,255,255,0.15);
    color: var(--green-light);
    border: 1px solid rgba(180,182,113,0.35);
}
.section-title {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title span { color: var(--green-dark); }
.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.8;
}
.divider-line {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-light));
    border-radius: 2px;
    margin-bottom: 28px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--green-dark);
    color: #fff;
}
.btn-primary:hover {
    background: #3e5a3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79,110,76,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green-dark);
}
.btn-outline:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
}
.btn-gold {
    background: var(--green-light);
    color: var(--text-dark);
}
.btn-gold:hover {
    background: #a5a762;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(180,182,113,0.4);
}
.divider-line {
    width: 48px;
    height: 3px;
    background: var(--green-light);
    border-radius: 2px;
    margin-bottom: 24px;
}
.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    background: var(--gray);
    color: var(--text-mid);
}

/* ========== HEADER / NAV ========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 2rem;
    background: rgba(250,248,241,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226,223,217,0.5);
    transition: var(--transition);
}
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.navbar-logo {
    display: flex;
    align-items: center;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.navbar-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
}
.navbar-links a:hover { color: var(--green-dark); }
.navbar-cta { font-size: 13px !important; padding: 10px 20px !important; }

/* ========== HERO ========== */
.hero {
    background: var(--green-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}
/* Background image layer */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
/* Dark overlay for text contrast */
.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(26,33,24,0.82) 0%,
        rgba(26,33,24,0.70) 45%,
        rgba(26,33,24,0.35) 100%
    );
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(180,182,113,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180,182,113,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 50% 70% at 0% 50%, rgba(79,110,76,0.25) 0%, transparent 65%);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(180,182,113,0.15);
    border: 1px solid rgba(180,182,113,0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 24px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-title em {
    font-style: normal;
    color: var(--green-light);
}
.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.hero-contact-item svg { width: 16px; height: 16px; fill: var(--green-light); flex-shrink: 0; }
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Modern offset double-border frame === */
.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
}

/* Outer border — gold, offset bottom-right */
.hero-image-border-outer {
    position: absolute;
    inset: 0;
    border: 2px solid var(--green-light);
    border-radius: 20px;
    transform: translate(16px, 16px);
    opacity: 0.5;
}

/* Inner border — white, offset slightly */
.hero-image-border-inner {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    transform: translate(8px, 8px);
}

/* The image itself */
.hero-image-wrap {
    position: relative;
    z-index: 2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.12);
    aspect-ratio: 4/3;
    background: rgba(255,255,255,0.05);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.hero-image-wrap:hover .hero-img {
    transform: scale(1.03);
}

/* Corner accent — top-left gold bracket */
.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 48px;
    height: 48px;
    border-top: 3px solid var(--green-light);
    border-left: 3px solid var(--green-light);
    border-radius: 4px 0 0 0;
    z-index: 3;
}

/* Corner accent — bottom-right gold bracket */
.hero-image-frame::after {
    content: '';
    position: absolute;
    bottom: calc(-10px + 16px);
    right: calc(-10px + 16px);
    width: 48px;
    height: 48px;
    border-bottom: 3px solid var(--green-light);
    border-right: 3px solid var(--green-light);
    border-radius: 0 0 4px 0;
    z-index: 3;
}

/* Floating badge bottom-left */
.hero-image-badge {
    position: absolute;
    bottom: -18px;
    left: 24px;
    z-index: 4;
    background: var(--green-dark);
    border: 1px solid rgba(180,182,113,0.4);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
}
.hero-image-badge span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}


/* ========== OUR STORY ========== */
.story { background: var(--white); }

/* Stacked layout: Our Story on top, Chaos to Opportunity below */
.story-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Horizontal divider between the two sections */
.story-divider-h {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border) 15%, var(--border) 85%, transparent);
    margin: 56px 0;
}

.story-top,
.story-bottom {}

.story-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.stat-card {
    background: var(--off-white-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--green-dark);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-card.wide { }
.stat-card .num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-card .desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}
.story-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 28px;
    text-align: justify;
}
.change-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.change-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 20px;
    background: var(--off-white-2);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 500;
    line-height: 1.55;
    transition: var(--transition);
}
.change-item:hover {
    border-color: var(--green-dark);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.change-item-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.change-item-icon svg { width: 16px; height: 16px; fill: #fff; }



/* ========== TESTIMONIALS FAQ LINK ========== */
/* ========== FAQ BANNER ========== */
.faq-banner {
    background: var(--off-white-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 0;
}
.faq-banner-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.faq-banner-inner::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--green-dark), var(--green-light));
    border-radius: 4px 0 0 4px;
}
.faq-banner-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: rgba(79,110,76,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.faq-banner-icon svg {
    width: 30px; height: 30px;
    fill: var(--green-dark);
}
.faq-banner-text {
    flex: 1;
}
.faq-banner-text .label {
    background: #566E8A;
    color: #fff;
    border: none;
}
.faq-banner-text .label::before {
    background: #EDEAEB;
}
.faq-banner-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.2;
}
.faq-banner-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
.faq-banner-btn {
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    padding: 14px 28px;
}
@media (max-width: 768px) {
    .faq-banner-inner { flex-direction: column; align-items: flex-start; padding: 32px 28px; gap: 20px; }
    .faq-banner-btn { width: 100%; justify-content: center; }
}


/* ========== WHAT WE DO ========== */
.what-we-do { background: var(--off-white-2); }
.what-we-do-header { margin-bottom: 60px; }
.what-we-do-header .section-sub { }
.pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.pillar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(79,110,76,0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.pillar-icon svg { width: 28px; height: 28px; fill: var(--green-dark); }
.pillar-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}
.vision-block {
    margin-top: 50px;
    padding: 40px;
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 40px;
    color: #fff;
}
.vision-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    background: rgba(180,182,113,0.2);
    border: 1px solid rgba(180,182,113,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.vision-icon svg { width: 36px; height: 36px; fill: var(--green-light); }
.vision-text h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.vision-text p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.8; }

/* ========== WORKFLOW ========== */
.workflow {
    background: #1a2118;
    position: relative;
    overflow: hidden;
}

/* Outer wrapper: full-bleed split */
.workflow-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
}

/* Left: image panel */
.workflow-image-panel {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}
.workflow-image-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* Subtle left-edge fade to blend with content panel */
.workflow-image-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(26,33,24,0.45) 0%,
        rgba(26,33,24,0.75) 100%
    );
}

/* Right: content panel */
.workflow-content-panel {
    padding: 80px 60px 80px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1a2118;
}

.workflow-header { margin-bottom: 40px; }
.workflow-header .section-title { color: #fff; }
.workflow-header .section-title em { color: var(--green-light) !important; }
.workflow-header .label {
    background: rgba(180,182,113,0.15);
    border: 1px solid rgba(180,182,113,0.3);
    color: var(--green-light);
}
.workflow-header .label::before { background: var(--green-light); }
.workflow-header .section-sub { color: rgba(255,255,255,0.6); max-width: 480px; }

/* 2x2 cards grid inside right panel */
.workflow-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.workflow-card {
    padding: 24px 22px 22px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    position: relative;
    transition: var(--transition);
}
.workflow-card:last-child { border-right: unset; }
.workflow-card:hover {
    border-color: var(--green-light);
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

/* Remove arrow connectors — not needed in 2x2 grid */
.workflow-card:not(:last-child)::after { display: none; }

/* Left green accent bar */
.workflow-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--green-dark);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: var(--transition);
}
.workflow-card:hover::before { opacity: 1; }

.workflow-step-num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(180,182,113,0.3);
    line-height: 1;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}
.workflow-card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(180,182,113,0.15);
    border: 1px solid rgba(180,182,113,0.25);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
}
.workflow-card-icon svg { width: 20px; height: 20px; fill: var(--green-light); }
.workflow-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.35;
}
.workflow-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.workflow-card-list li {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    padding-left: 13px;
    position: relative;
    text-align: left;
}
.workflow-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green-light);
}

/* Bottom scaling note */
.workflow-footer {
    margin-top: 20px;
    padding: 20px 24px;
    background: var(--green-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
}
.workflow-footer-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(180,182,113,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.workflow-footer-icon svg { width: 20px; height: 20px; fill: var(--green-light); }
.workflow-footer-text strong {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 3px;
}
.workflow-footer-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
}


/* ========== SERVICES ========== */
.services { background: var(--white); }
.services-header { margin-bottom: 50px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-dark); }
.service-card-header {
    background: var(--green-dark);
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    justify-content: flex-end;
}
/* When a cover image is set, darken slightly more for text contrast */
.service-card-header.has-bg {
    min-height: 180px;
}
/* Subtle grain texture overlay for depth */
.service-card-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,33,24,0.6) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}
.service-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(4px);
}
.service-card-icon svg { width: 22px; height: 22px; fill: var(--green-light); }
.service-icon-emoji {
    font-size: 24px;
    line-height: 1;
    display: block;
}
.service-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}
.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    line-height: 1.25;
}
.service-card-body { padding: 28px; }
.service-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}
.service-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}
.service-tag.role {
    background: rgba(79,110,76,0.08);
    color: var(--green-dark);
    border: 1px solid rgba(79,110,76,0.15);
}
.service-tag.skill {
    background: rgba(86,110,138,0.08);
    color: var(--blue);
    border: 1px solid rgba(86,110,138,0.15);
}

/* ========== WHAT MAKES US DIFFERENT ========== */
.different { background: var(--off-white-2); }
.different-header { margin-bottom: 60px; }
.lc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 50px;
}
.lc-text { padding: 50px; }

.lc-text .section-title { color: #fff; }
.lc-text .section-sub { color: rgba(255,255,255,0.7); }
.lc-visual {
    height: 100%;
    min-height: 420px;
    background:
        linear-gradient(135deg, rgba(26,33,24,0.55) 0%, rgba(26,33,24,0.35) 100%),
        url('assets/images/lc-bg.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
/* Fallback solid if image not loaded yet */
.lc-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green-dark);
    opacity: 0;
    z-index: 0;
}
.lc-mockup {
    position: relative;
    z-index: 1;
    width: 86%;
    aspect-ratio: 16/9;
    background: rgba(15, 22, 14, 0.75);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(180,182,113,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.lc-mockup-bar {
    height: 32px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; padding: 0 12px; gap: 7px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lc-mockup-dot { width: 8px; height: 8px; border-radius: 50%; }
.lc-mockup-content {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 20px;
    gap: 10px;
}
.lc-mockup-title {
    font-size: 13px; font-weight: 700;
    color: var(--green-light); text-align: center;
}
.lc-mockup-sub {
    font-size: 10px; color: rgba(255,255,255,0.65); text-align: center;
}
.lc-mockup-courses {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px; width: 100%;
}
.lc-mockup-course {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    padding: 8px;
    font-size: 9px;
    color: rgba(255,255,255,0.8);
    text-align: center;
}
.value-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-dark); }
.value-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(79,110,76,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.value-icon svg { width: 26px; height: 26px; fill: var(--green-dark); }
.value-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.value-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ========== COST COMPARISON ========== */
.costs { background: var(--white); }
.costs-header { margin-bottom: 50px; }
.cost-table-wrap {
    max-width: 820px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.cost-table-head {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.cost-col-label {
    padding: 20px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--off-white);
    border-bottom: 2px solid var(--border);
}
.cost-col-label.featured {
    background: var(--green-dark);
    color: #fff;
}
.cost-col-label .sub { font-size: 10px; opacity: 0.7; font-weight: 400; text-transform: none; letter-spacing: 0; }
.cost-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid var(--border);
}
.cost-cell {
    padding: 16px 24px;
    font-size: 13px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
}
.cost-cell.item-name { font-weight: 600; color: var(--text-dark); }
.cost-cell.featured {
    background: rgba(79,110,76,0.04);
    color: var(--green-dark);
    font-weight: 600;
}
.cost-cell.negative { color: #b45c5c; }
.cost-cell.featured.price {
    font-size: 15px;
    font-weight: 700;
}
.cost-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(79,110,76,0.12);
    color: var(--green-dark);
}
.cost-badge.bad {
    background: rgba(180,92,92,0.1);
    color: #b45c5c;
}
.savings-bar {
    background: var(--green-dark);
    padding: 24px;
    text-align: center;
    color: #fff;
}
.savings-bar strong { color: var(--green-light); font-size: 1.5rem; }

/* ========== STAFF ========== */
.staff { background: var(--off-white-2); }
.staff-header { margin-bottom: 50px; }
.staff-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.staff-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.staff-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.staff-card-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(79,110,76,0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.staff-card-icon svg { width: 36px; height: 36px; fill: var(--green-dark); }
.staff-card-title { font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.staff-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* ========== TESTIMONIALS ========== */
/* ========== TESTIMONIALS ========== */
.testimonials {
    position: relative;
    background: #0f1a0e;
    padding: 110px 0 100px;
    overflow: hidden;
}
.testimonials-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/testimonials-bg.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}
.testimonials-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, #0f1a0e 0%, rgba(15,26,14,0.6) 40%, rgba(15,26,14,0.6) 60%, #0f1a0e 100%),
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
    z-index: 1;
}
.testimonials-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    filter: blur(100px);
}
.testimonials-glow-left {
    background: radial-gradient(circle, rgba(79,110,76,0.35) 0%, transparent 70%);
    top: -100px;
    left: -150px;
}
.testimonials-glow-right {
    background: radial-gradient(circle, rgba(180,182,113,0.18) 0%, transparent 70%);
    bottom: -100px;
    right: -150px;
}
.testimonials-header { text-align: center; margin-bottom: 20px; }
.testimonials-header .section-title { color: #fff; }
.testimonials-subhead {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    margin-top: 10px;
    text-align: center;
}
.testimonials-big-quote {
    text-align: center;
    font-size: 160px;
    line-height: 0.6;
    color: var(--green-light);
    opacity: 0.15;
    font-family: Georgia, serif;
    margin-bottom: 40px;
    pointer-events: none;
    user-select: none;
}
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
    min-width: 100%;
    padding: 0 20px;
}
.testimonial-card {
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(79,110,76,0.18) 0%, rgba(15,26,14,0.6) 100%);
    border: 1px solid rgba(180,182,113,0.2);
    border-radius: var(--radius-lg);
    padding: 2px;
    box-shadow:
        0 0 0 1px rgba(79,110,76,0.1),
        0 40px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
}
.testimonial-card-inner {
    background: linear-gradient(160deg, rgba(30,46,28,0.85) 0%, rgba(15,22,14,0.95) 100%);
    border-radius: calc(var(--radius-lg) - 2px);
    padding: 52px 56px;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 28px; }
.star { width: 20px; height: 20px; fill: var(--green-light); }
.testimonial-quote {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.9;
    margin-bottom: 36px;
    font-style: italic;
    position: relative;
}
.testimonial-quote::before {
    content: '\201C';
    font-size: 3.5rem;
    color: var(--green-light);
    opacity: 0.6;
    line-height: 0;
    vertical-align: -0.55em;
    margin-right: 6px;
    font-style: normal;
}
.testimonial-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180,182,113,0.3), transparent);
    margin-bottom: 32px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79,110,76,0.6), rgba(180,182,113,0.3));
    border: 2px solid rgba(180,182,113,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--green-light);
    flex-shrink: 0;
    overflow: hidden;
}
.testimonial-avatar.has-logo {
    background: #fff;
    padding: 6px;
}
.testimonial-avatar.has-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}
.testimonial-name { font-size: 17px; font-weight: 700; color: #fff; }
.testimonial-company { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.testimonial-verified {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green-light);
    background: rgba(180,182,113,0.1);
    border: 1px solid rgba(180,182,113,0.2);
    border-radius: 20px;
    padding: 5px 12px;
    white-space: nowrap;
}
.testimonial-verified svg {
    width: 13px; height: 13px;
    fill: var(--green-light);
    flex-shrink: 0;
}
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
}
.carousel-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(180,182,113,0.25);
    background: rgba(180,182,113,0.08);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.carousel-btn:hover {
    background: rgba(180,182,113,0.2);
    border-color: rgba(180,182,113,0.5);
    transform: scale(1.05);
}
.carousel-btn svg { width: 22px; height: 22px; fill: currentColor; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.carousel-dot.active { background: var(--green-light); width: 28px; border-radius: 4px; }

/* ========== CONTACT / CTA ========== */
.cta-section { background: var(--white); }
.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.cta-block {
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 60px;
    position: relative;
}
.cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(180,182,113,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180,182,113,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
.cta-text { position: relative; }

.cta-text h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; max-width: 520px; }
.cta-actions { position: relative; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cta-contact a {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.cta-contact a:hover { color: var(--green-light); }
.cta-contact svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ========== FOOTER ========== */
footer {
    background: #111814;
    padding: 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 2rem 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    align-items: start;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {}
.footer-logo {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}
.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
}
.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 18px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
    transition: color var(--transition);
    text-decoration: none;
}
.footer-contact-item:hover { color: var(--green-light); }
.footer-contact-item svg {
    width: 15px; height: 15px;
    fill: var(--green-light);
    flex-shrink: 0;
    opacity: 0.8;
}
.footer-cta-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-btn {
    font-size: 13px !important;
    padding: 12px 22px !important;
}
.footer-bottom {
    background: #0d110c;
    padding: 16px 2rem;
}
.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-bottom span {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 1.25rem 36px; }
}

/* Hamburger — hidden on desktop, shown on mobile via media query */
.nav-hamburger { display: none; }
.navbar-mobile-menu { display: none; }

/* ========== RESPONSIVE — TABLET (≤1024px) ========== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .story-stats { grid-template-columns: repeat(3, 1fr); }
    .pillars { grid-template-columns: repeat(3, 1fr); }
    .workflow-split { grid-template-columns: 1fr; }
    .workflow-image-panel { min-height: 320px; order: -1; }
    .workflow-image-panel::after { background: linear-gradient(to bottom, rgba(26,33,24,0.3) 0%, rgba(26,33,24,0.85) 100%); }
    .workflow-content-panel { padding: 50px 2rem 60px; }
    .workflow-cards { grid-template-columns: repeat(2, 1fr); }
    .value-cards { grid-template-columns: repeat(2, 1fr); }
    .staff-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ========== RESPONSIVE — MOBILE (≤768px) ========== */
@media (max-width: 768px) {

    /* --- Global --- */
    .container { padding: 0 1rem; }
    .section  { padding: 52px 0; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

    /* --- Navbar --- */
    .navbar { padding: 0 1rem; }
    .navbar-links { display: none; }

    /* Hamburger button */
    .nav-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
    }
    .nav-hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text-dark);
        border-radius: 2px;
        transition: var(--transition);
    }

    /* Mobile nav drawer */
    .navbar-mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0; right: 0;
        background: rgba(250,248,241,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 20px 1rem 28px;
        z-index: 99;
        flex-direction: column;
        gap: 4px;
        box-shadow: 0 8px 32px rgba(26,33,24,0.1);
    }
    .navbar-mobile-menu.open { display: flex; }
    .navbar-mobile-menu a {
        display: block;
        padding: 11px 14px;
        font-size: 15px;
        font-weight: 500;
        color: var(--text-mid);
        border-radius: var(--radius-sm);
        transition: background var(--transition), color var(--transition);
    }
    .navbar-mobile-menu a:hover { background: var(--off-white-2); color: var(--green-dark); }
    .navbar-mobile-menu .btn-primary {
        margin-top: 10px;
        text-align: center;
        justify-content: center;
        display: flex;
        width: 100%;
    }

    /* --- Hero --- */
    .hero { padding-top: 70px; min-height: auto; padding-bottom: 56px; }
    .hero-content { gap: 0; }
    .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 16px; }
    .hero-desc { font-size: 0.9rem; margin-bottom: 24px; max-width: 100%; }
    .hero-eyebrow { font-size: 10px; margin-bottom: 16px; }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
    .hero-contact {
        margin-top: 28px;
        padding-top: 20px;
        gap: 10px;
    }
    .hero-contact-item {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 6px;
    }

    /* --- Story --- */
    .story-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
    .stat-card { padding: 18px 16px; }
    .stat-card .num { font-size: 1.7rem; }
    .story-divider-h { margin: 36px 0; }
    .change-list { grid-template-columns: 1fr; gap: 10px; margin-top: 20px; }
    .change-item { padding: 18px 16px; gap: 10px; }

    /* --- What We Do / Pillars --- */
    .what-we-do-header { margin-bottom: 36px; }
    .pillars { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pillar-card { padding: 22px 14px; }
    .pillar-icon { width: 44px; height: 44px; margin-bottom: 12px; }
    .pillar-name { font-size: 13px; }
    .vision-block {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
        margin-top: 32px;
        text-align: left;
    }
    .vision-icon { width: 52px; height: 52px; border-radius: 14px; }
    .vision-text h3 { font-size: 1.15rem; }

    /* --- Workflow --- */
    .workflow-image-panel { min-height: 220px; }
    .workflow-content-panel { padding: 36px 1rem 44px; }
    .workflow-header { margin-bottom: 28px; }
    .workflow-cards { grid-template-columns: 1fr; gap: 12px; }
    .workflow-card { padding: 20px 18px; border-right: none !important; }
    .workflow-step-num { font-size: 1.6rem; margin-bottom: 8px; }
    .workflow-card-title { font-size: 13px; }
    .workflow-footer { padding: 16px 18px; gap: 12px; flex-wrap: wrap; }
    .workflow-footer-text strong { font-size: 12px; }
    .workflow-footer-text span { font-size: 11px; }

    /* --- Services --- */
    .services-header { margin-bottom: 32px; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card-header { padding: 28px 20px 20px; min-height: 130px; }
    .service-card-body { padding: 20px; }

    /* --- What Makes Us Different --- */
    .different-header { margin-bottom: 36px; }
    .lc-block { grid-template-columns: 1fr; gap: 0; margin-bottom: 32px; }
    .lc-text { padding: 32px 24px; }
    .lc-visual {
        min-height: 320px;
        padding: 28px 20px;
    }
    .lc-mockup {
        width: 92%;
        max-width: 380px;
    }
    .lc-mockup-title { font-size: 11px; }
    .lc-mockup-sub { font-size: 9px; }
    .lc-mockup-content { padding: 14px 12px; gap: 8px; }
    .lc-mockup-courses { gap: 5px; }
    .lc-mockup-course { font-size: 8px; padding: 6px; }
    .value-cards { grid-template-columns: 1fr; gap: 14px; }
    .value-card { padding: 24px 20px; }

    /* --- Cost Comparison --- */
    .costs-header { margin-bottom: 32px; }
    .cost-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .cost-table-head,
    .cost-row { grid-template-columns: 1fr 1fr 1fr; min-width: 480px; }
    .cost-cell { padding: 12px 14px; font-size: 12px; }
    .cost-col-label { padding: 14px 14px; font-size: 11px; }
    .savings-bar { padding: 18px 16px; }
    .savings-bar strong { font-size: 1.2rem; }

    /* --- Staff --- */
    .staff-header { margin-bottom: 32px; }
    .staff-cards { grid-template-columns: 1fr; gap: 16px; }
    .staff-card { padding: 28px 22px; }
    .staff-card-icon { width: 56px; height: 56px; }

    /* --- Testimonials --- */
    .testimonials { padding: 72px 0 64px; }
    .testimonials-big-quote { font-size: 100px; margin-bottom: 24px; }
    .carousel-slide { padding: 0 12px; }
    .testimonial-card-inner { padding: 32px 24px; }
    .testimonial-quote { font-size: 0.95rem; line-height: 1.85; margin-bottom: 24px; }
    .testimonial-quote::before { font-size: 2.5rem; }
    .testimonial-author { gap: 12px; flex-wrap: wrap; }
    .testimonial-verified { margin-left: 0; margin-top: 4px; }
    .carousel-controls { gap: 12px; margin-top: 28px; }
    .carousel-btn { width: 40px; height: 40px; }

    /* --- FAQ Banner --- */
    .faq-banner { padding: 40px 0; }
    .faq-banner-inner { flex-direction: column; align-items: flex-start; padding: 28px 20px; gap: 16px; }
    .faq-banner-icon { width: 50px; height: 50px; border-radius: 12px; }
    .faq-banner-text h3 { font-size: 1.2rem; }
    .faq-banner-btn { width: 100%; justify-content: center; }

    /* --- CTA --- */
    .cta-inner { padding: 0 1rem; }
    .cta-block {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 24px;
        border-radius: var(--radius-md);
    }
    .cta-text h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .cta-actions { align-items: stretch; }
    .cta-actions .btn-gold { width: 100%; justify-content: center; white-space: normal; text-align: center; }
    .cta-contact { gap: 8px; }
    .cta-contact a { font-size: 12px; }

    /* --- Footer --- */
    .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 44px 1rem 32px; }
    .footer-logo { height: 44px; }
    .footer-btn { width: 100%; justify-content: center; }
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }