/* Reset & Base Styles */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Images: respect HTML width/height for aspect-ratio reservation */
img {
    max-width: 100%;
    display: block;
}
/* Only set height:auto when no explicit height attribute */
img:not([height]) {
    height: auto;
}

:root {
    --accent: #FF6B00;
    --accent-glow: rgba(255, 107, 0, 0.4);
    --bg-light: #F9FAFB;
    --bg-light-2: #FFFFFF;
    --text-main: #111827;
    --text-muted: #4B5563;
    --border-light: rgba(0, 0, 0, 0.1);
    --primary: #FF6B00;
    --gray-900: #111827;
    --gray-700: #4B5563;
    --gray-600: #80868B;
}


/* Fonts are declared in the critical inline CSS — not repeated here */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px; /* FIXED — never changes to avoid CLS */
    display: flex;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    /* height stays 80px — no CLS */
}

@keyframes slideHeaderDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.logo-container { position: relative; transition: transform 0.3s ease; display: inline-flex; }
.logo-container:hover { transform: scale(1.05); }
.logo-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 150%; height: 150%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.4s ease; z-index: -1;
}
.logo-container:hover .logo-glow { opacity: 1; }
/* .logo-hero defined in critical inline CSS */
/* header-content already defined in critical CSS */
.header-content .logo-container { display: flex; align-items: center; }
.logo-img { height: 26px; width: 104px; transition: transform 0.3s ease; }
.site-header.scrolled .logo-img { transform: scale(0.9); }
.header-cta {
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    /* No translateX — avoids pushing adjacent elements */
}
.site-header.scrolled .header-cta {
    opacity: 1;
    pointer-events: auto;
}
.btn-header-cta { padding: 0.65rem 1.5rem; font-size: 0.85rem; letter-spacing: 0.5px; }

/* ========== GLOSSY 3D BUTTON ========== */
.btn-glossy {
    position: relative;
    background: linear-gradient(175deg, #FF9533 0%, #FF6B00 40%, #E55A00 100%);
    color: #fff !important;
    padding: 1.1rem 2.5rem;
    border-radius: 99px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 1px 0 inset rgba(255,255,255,0.5),
        0 -1px 0 inset rgba(0,0,0,0.2),
        0 12px 24px rgba(255, 107, 0, 0.35),
        0 4px 6px rgba(0,0,0,0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, filter 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.btn-glossy::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 70%; height: 100%;
    background: linear-gradient(105deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.8s;
}
.btn-glossy::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.25) 0%, transparent 100%);
    border-radius: 99px 99px 0 0;
    pointer-events: none;
}
.btn-glossy:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow:
        0 1px 0 inset rgba(255,255,255,0.6),
        0 24px 60px rgba(255, 107, 0, 0.5),
        0 6px 15px rgba(0,0,0,0.4);
    filter: brightness(1.15);
}
.btn-glossy:hover::before { left: 160%; }
.btn-glossy:active {
    transform: translateY(-1px) scale(0.97);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}



/* ========== BACKGROUND ANIMATION ========== */
.bg-mesh {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.bg-mesh .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: orbDrift 20s ease-in-out infinite;
}
.bg-mesh .orb-1 {
    width: 600px; height: 600px;
    background: var(--accent);
    top: -10%; right: -10%;
    animation-duration: 18s;
}
.bg-mesh .orb-2 {
    width: 500px; height: 500px;
    background: #4F46E5;
    bottom: -15%; left: -10%;
    animation-duration: 22s;
    animation-delay: -5s;
}
.bg-mesh .orb-3 {
    width: 400px; height: 400px;
    background: #06B6D4;
    top: 40%; right: 20%;
    animation-duration: 25s;
    animation-delay: -10s;
    opacity: 0.06;
}
@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 40px) scale(0.95); }
    75% { transform: translate(30px, 20px) scale(1.02); }
}

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ========== STORY SECTION ========== */
.story-section {
    position: relative;
    z-index: 2;
    padding: 120px 0 20px; /* Reduced bottom padding */
    background: var(--bg-light-2); /* Updated to light side */
}
.story-content {
    max-width: 720px;
    margin: 0 auto;
}
.story-content p {
    font-size: 1.25rem;
    line-height: 1.85;
    color: #334155; /* Deeper legible gray */
    margin-bottom: 1.5rem;
}
.story-content p.highlight-line {
    color: #0F172A; /* Dark navy/almost black */
    font-weight: 600;
    font-size: 1.35rem;
}
.story-content p.quote-line {
    font-style: italic;
    color: #475569;
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
}
.story-content p.accent-line {
    color: #EA580C; /* Slightly darker accent for light bg */
    font-weight: 700;
    font-size: 1.4rem;
}
.story-content p.single {
    margin-bottom: 0.5rem;
}
.story-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
    margin: 3rem 0;
}

/* ========== SECTION GLOBALS ========== */
.section { padding: 80px 0; position: relative; z-index: 2; background: var(--bg-light); border-top: 1px solid var(--border-light); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0F172A !important; /* Force dark text */
    text-shadow: none !important;
}
.section-subtitle {
    font-size: 1.15rem;
    color: #475569;
}

/* ========== PROBLEM CARDS ========== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.problem-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.problem-card:hover {
    border-color: rgba(255,107,0,0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.card-icon-wrap {
    width: 56px; height: 56px;
    background: rgba(255,107,0,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.card-icon-wrap svg {
    width: 28px; height: 28px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.card-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 1rem; color: #0F172A; }
.card-desc { color: #475569; line-height: 1.65; margin-bottom: 1.5rem; flex-grow: 1; }
.card-stat {
    background: #F1F5F9;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #334155;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent);
}
.card-ask { font-style: italic; color: #EA580C; font-size: 0.9rem; font-weight: 500; }

/* ========== SOLUTION SECTION (Light) ========== */
.sol-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.sol-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse 40% 30% at 50% 30%,
        rgba(234, 88, 12, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.sol-section .section-title {
    color: #0F172A !important;
    -webkit-text-fill-color: unset;
}
.sol-section .section-subtitle { color: #475569; }
.sol-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
}
.sol-intro strong { color: #EA580C; }
.sol-result {
    font-size: 1.5rem !important;
    font-weight: 800;
    margin-top: 2rem;
    color: #0F172A !important;
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem; /* More space for the top tags */
}
.benefit-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 3.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: rgba(255,107,0,0.3);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-tag {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #D45500);
    color: #fff;
    padding: 0.3rem 1.1rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(255,107,0,0.3);
}
.benefit-icon-wrap {
    width: 64px; height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(255,107,0,0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-icon-wrap svg {
    width: 32px; height: 32px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.benefit-card .card-title { color: var(--text-main); }
.benefit-card .card-desc { color: var(--text-muted); }

/* ========== CHALLENGE GRID ========== */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    margin-top: 4rem;
}
.challenge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.challenge-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), #D45500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    box-shadow: 0 8px 16px rgba(255, 107, 0, 0.2);
}
.challenge-icon svg { width: 28px; height: 28px; }
.challenge-info { display: flex; flex-direction: column; }
.challenge-top { display: flex; align-items: center; gap: 0.5rem; }
.challenge-check { color: #0F172A; font-weight: 900; }
.challenge-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0F172A;
    text-transform: lowercase;
}
.challenge-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: #EA580C;
    margin-top: -2px;
}

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

/* ========== PROOF ========== */
.proof-section { background: #F3F4F6; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 5rem; }
.testi-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.testi-card::before {
    content: "\201C";
    font-size: 5rem; color: var(--accent);
    opacity: 0.1; position: absolute; top: 10px; left: 20px;
    font-family: Georgia, serif;
}
.testi-quote { font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; color: var(--text-muted); position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-info h4 { margin: 0; font-size: 1rem; color: var(--text-main); }
.testi-info p { margin: 0; font-size: 0.8rem; color: var(--text-muted); }
.testi-metric { margin-top: 0.4rem; color: var(--accent); font-weight: 700; font-size: 0.85rem; }
.stats-row { display: flex; justify-content: center; gap: 5rem; text-align: center; }
.stat-val { font-size: 3.5rem; font-weight: 900; color: var(--accent); display: block; }
.stat-label { font-size: 1rem; color: var(--text-muted); }

/* ========== VARIATIONS ========== */
.variation-card .card-icon-wrap svg {
    stroke: var(--accent);
}

/* ========== FAQ ========== */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    margin-bottom: 1rem; border-radius: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.faq-box:hover { border-color: var(--accent); }
.faq-q {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1rem; font-weight: 700;
    color: var(--text-main);
}
.faq-q span { transition: transform 0.3s ease; font-size: 1.2rem; color: var(--text-muted); }
.faq-box.open .faq-q span { transform: rotate(45deg); }
.faq-a { padding: 0 1.5rem 1.5rem; color: var(--text-muted); line-height: 1.65; display: none; }
.faq-box.open .faq-a { display: block; }
.faq-box.open .faq-q { color: var(--accent); }

/* ========== LEAD FORM (NEW BOX STYLE) ========== */
.lead-section { 
    background: #ffffff;
    padding: 100px 0;
}
.lead-box-container {
    background: #fff;
    padding: 3rem; /* Adjusted padding */
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr; /* Better balance: text wider */
    gap: 3rem;
    align-items: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.lead-card-white {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lead-card-white.form-card {
    padding: 0; /* Remove internal padding as requested */
    overflow: hidden;
    background: #fff;
}
.lead-card-white h2 { color: #0F172A !important; margin-bottom: 1rem; font-size: 1.7rem !important; }
.lead-card-white p { color: #475569; font-size: 1rem; line-height: 1.5; }

@media (max-width: 968px) {
    .lead-box-container { grid-template-columns: 1fr; padding: 2rem 1rem; gap: 2rem; }
    .lead-card-white { padding: 1.5rem; }
    .lead-card-white.form-card { padding: 0; }
}

/* ========== FOOTER ========== */
.site-footer {
    padding: 50px 0; background: #F3F4F6; color: var(--text-muted);
    text-align: center; position: relative; z-index: 2;
    border-top: 1px solid var(--border-light);
}
.f-links { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: 1.5rem; }
.f-links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.3s; }
.f-links a:hover { color: var(--accent); }

/* ========== CLIENT CARDS ========== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.client-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.client-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.client-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}
.client-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.client-card:hover .client-img {
    transform: scale(1.1);
}
.client-info {
    padding: 1.75rem 1.5rem;
    text-align: left;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.client-header-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.client-logo-mini {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 10;
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.client-card:hover .client-logo-mini {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent);
}
.client-logo-mini img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.client-name {
    margin: 0;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}
.client-stars-mini {
    color: #FFB800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

/* ========== CASES SECTION (GRID) ========== */
.cases-section {
    padding: 40px 0 8rem; /* Reduced top padding */
    background: var(--bg-light-2);
}
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
.case-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.case-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.case-card-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    position: relative;
    overflow: hidden;
}
.case-card-video iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.case-card-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.case-card-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}
.case-card-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 1.25rem;
}
.case-card-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.cases-trust-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 5rem;
    text-align: center;
}
.cases-trust-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    max-width: 800px;
    line-height: 1.3;
}
.trust-stats-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
}
.trust-stat-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 0.5rem 1.5rem; /* Thinner padding */
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.trust-stat-box:hover {
    border-color: var(--accent);
    background: #fff;
}
.trust-stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}
.trust-stat-val {
    font-size: 1.4rem; /* Smaller font */
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
}
.trust-stat-label {
    font-size: 0.7rem; /* Smaller label */
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.trust-stat-stars { color: #FFB800; letter-spacing: 2px; font-size: 0.8rem; }



/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-testi-grid { gap: 2rem; }
}

@media (max-width: 768px) {
    /* Hero mobile rules declared in critical inline CSS — not repeated here */
    .stats-row { flex-direction: column; gap: 2rem; }
    
    .case-card-title { font-size: 1.5rem; }
    .case-card-desc { font-size: 0.95rem; }
    .case-card-body { padding: 1.5rem; }
    .cases-grid { margin-top: 2rem; gap: 1.5rem; }
    .cases-section { padding-bottom: 4rem; }
    .cases-trust-stats { margin-bottom: 3rem; gap: 1.5rem; }
    .trust-stats-row { flex-direction: column; align-items: center; gap: 1rem; }
    .trust-stat-box { width: 100%; max-width: 280px; justify-content: center; }
    .testi-quote-text { font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.5rem; }
    .hero-subheadline, .hero-copy { margin-left: auto; margin-right: auto; }
    .cta-sub { justify-content: center; flex-wrap: wrap; }
    .form-wrap { padding: 2rem; }
    .story-content p { font-size: 1.1rem; }
}
