/* =============================================================
   BOT4ORGE — MAIN STYLESHEET (merged: main + components + responsive)
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; max-width: 100vw; }

html { margin-top: 0 !important; }
#wpadminbar { display: none !important; }

:root {
    --primary:       #1558a8;
    --primary-dark:  #0e3f7a;
    --primary-light: #c8ddf5;
    --accent:        #2d78c8;
    --text:          #18181b;
    --text-dim:      #6b7280;
    --border:        #d1dce8;
    --bg:            #ffffff;
    --bg-soft:       #ddeaf8;
    --success:       #16a34a;
    --red:           #dc2626;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.2s; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===================== NAV ===================== */
#site-nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}
#site-nav.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(21,88,168,0.10);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; transition: padding 0.3s;
}
#site-nav.scrolled .nav-inner { padding: 12px 24px; }

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 1.3rem;
    color: white; text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    flex-shrink: 0; transition: color 0.3s;
}
#site-nav.scrolled .logo { color: var(--primary); }
body:not(.home) #site-nav { background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--border); box-shadow: 0 2px 16px rgba(21,88,168,0.10); }
body:not(.home) .logo { color: var(--primary); }
body:not(.home) .nav-links a { color: var(--text-dim); }
body:not(.home) .nav-links a:hover { color: var(--primary); }
body:not(.home) .nav-btn { background: var(--primary); color: white; box-shadow: 0 4px 12px rgba(21,88,168,0.2); }
body:not(.home) #nav-toggle span { background: var(--text); }

.logo img { height: 70px; width: auto; display: block; }

.nav-links {
    display: flex; gap: 28px; list-style: none;
    align-items: center; flex: 1; justify-content: center;
}
.nav-links li { list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: white; }
#site-nav.scrolled .nav-links a { color: var(--text-dim); }
#site-nav.scrolled .nav-links a:hover { color: var(--primary); }

.nav-btn {
    background: white; color: var(--primary);
    padding: 10px 22px; border-radius: 8px;
    font-weight: 700; font-size: 14px; text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: all 0.2s;
    white-space: nowrap; flex-shrink: 0;
}
.nav-btn:hover { background: var(--primary-light); transform: translateY(-1px); }
#site-nav.scrolled .nav-btn { background: var(--primary); color: white; box-shadow: 0 4px 12px rgba(21,88,168,0.2); }
#site-nav.scrolled .nav-btn:hover { background: var(--primary-dark); }

/* DROPDOWN */
.nav-links .menu-item-has-children { position: relative; }
.nav-links .menu-item-has-children::after {
    content: ''; position: absolute;
    top: 100%; left: 0; width: 100%; height: 8px;
}
.nav-links .sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute; top: calc(100% + 4px); left: 50%;
    transform: translateX(-50%);
    background: white; border: 1px solid var(--border);
    border-radius: 12px; padding: 8px;
    min-width: 200px; list-style: none;
    box-shadow: 0 8px 32px rgba(21,88,168,0.12);
    z-index: 100;
    transition: opacity 0.2s, visibility 0.2s;
}
.nav-links .sub-menu.open {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}
.nav-links .sub-menu li a {
    display: block; padding: 10px 16px; border-radius: 8px;
    color: var(--text) !important; font-size: 0.88rem; font-weight: 500;
    white-space: nowrap; text-decoration: none;
}
.nav-links .sub-menu li a:hover { background: var(--primary-light); color: var(--primary) !important; }

body.home #site-nav { background: transparent !important; }
body.home #site-nav.scrolled { background: rgba(255,255,255,0.98) !important; }

@media (max-width: 768px) {
    .nav-links .sub-menu {
        position: static; transform: none; box-shadow: none;
        border: none; border-left: 2px solid var(--primary-light);
        border-radius: 0; margin-left: 12px; padding: 4px 0;
        display: none;
    }
    .nav-links .sub-menu.open { display: block; }
}

/* HAMBURGER */
#nav-toggle {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; background: none; border: none; cursor: pointer;
    padding: 6px; flex-shrink: 0;
}
#nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: white; border-radius: 2px; transition: all 0.3s;
}
#site-nav.scrolled #nav-toggle span { background: var(--text); }

/* ===================== HERO (HOMEPAGE) ===================== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&w=1600&q=80');
    background-size: cover; background-position: center;
    background-color: #050d1a;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(145deg,
        rgba(5,13,26,0.88) 0%,
        rgba(10,31,61,0.82) 40%,
        rgba(13,40,71,0.78) 70%,
        rgba(5,13,26,0.90) 100%
    );
}

.hero-overlay { display: none; }

.hero-grid {
    position: absolute; inset: 0; z-index: 1;
    background-image:
        linear-gradient(rgba(21,88,168,0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21,88,168,0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
    position: absolute; z-index: 1; border-radius: 50%;
    filter: blur(80px); animation: hero-glow-pulse 6s ease-in-out infinite;
}
.hero-glow-1 {
    width: 600px; height: 600px; opacity: 0.35;
    background: radial-gradient(circle, #1558a8 0%, transparent 70%);
    top: -150px; left: -150px; animation-delay: 0s;
}
.hero-glow-2 {
    width: 450px; height: 450px; opacity: 0.28;
    background: radial-gradient(circle, #d4820a 0%, transparent 70%);
    bottom: -100px; right: 5%; animation-delay: 3s;
}
@keyframes hero-glow-pulse {
    0%, 100% { opacity: 0.22; transform: scale(1); }
    50% { opacity: 0.42; transform: scale(1.1); }
}

.hero-noise {
    position: absolute; inset: 0; z-index: 2; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.hero-inner {
    position: relative; z-index: 3;
    padding-top: 120px; padding-bottom: 80px;
    display: grid; grid-template-columns: 1fr 340px;
    gap: 60px; align-items: center; width: 100%;
}
.hero-content { color: white; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(213,130,10,0.15);
    border: 1px solid rgba(213,130,10,0.35);
    padding: 7px 16px; border-radius: 100px;
    margin-bottom: 24px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: #f0a832;
}
.hero-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #f0a832; box-shadow: 0 0 8px #f0a832;
    animation: hero-dot-blink 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes hero-dot-blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-tag { display: none; }

.hero-content h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900; line-height: 1.1;
    color: white; margin-bottom: 20px;
}
.hero-content .amt { color: #7ec8f7; font-style: italic; }
.hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.8);
    line-height: 1.75; margin-bottom: 36px; max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-outline-white {
    background: transparent; color: white;
    padding: 14px 30px; border-radius: 8px;
    font-size: 0.95rem; font-weight: 700; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5); transition: all 0.2s; display: inline-block;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }
.proof-row { display: flex; gap: 24px; flex-wrap: wrap; }
.proof-item {
    font-size: 0.85rem; color: rgba(255,255,255,0.75);
    display: flex; align-items: center; gap: 6px;
}
.ck { color: #7ec8f7; font-weight: 700; }

.hero-stats { display: flex; flex-direction: column; gap: 16px; }
.hero-stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(14px);
    border-radius: 18px; padding: 24px 28px;
    color: white; display: flex; flex-direction: column; gap: 4px;
    position: relative; overflow: hidden; transition: all 0.3s;
}
.hero-stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(240,168,50,0.7), transparent);
}
.hero-stat-card:nth-child(2)::before {
    background: linear-gradient(90deg, transparent, rgba(126,200,247,0.7), transparent);
}
.hero-stat-card:nth-child(3)::before {
    background: linear-gradient(90deg, transparent, rgba(21,88,168,0.8), transparent);
}
.hero-stat-card:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}
.hs-num {
    font-family: 'Fraunces', serif;
    font-size: 2.4rem; font-weight: 900; line-height: 1; color: white;
}
.hs-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }

.hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3;
}
.hero-scroll-hint span {
    display: block; width: 1px; height: 56px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    margin: 0 auto; animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }


/* ===================== TRUST BAR ===================== */
.trust-bar { background: var(--primary); padding: 20px 0; }
.trust-bar .wrap { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-label {
    font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7);
    text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap;
}

/* ===================== HOW IT WORKS ===================== */
.how-it-works { padding: 100px 0; background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step {
    padding: 36px 28px; border: 1px solid var(--border); border-radius: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.step:hover { box-shadow: 0 12px 40px rgba(21,88,168,0.1); transform: translateY(-4px); }
.step-num {
    font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 900;
    color: var(--primary-light); line-height: 1; margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }

/* ===================== SERVICES ===================== */
.services-section,
.services-grid { padding: 100px 0; background: var(--bg-soft); }
.services-grid .wrap { max-width: 1100px; margin: 0 auto; }
.s-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.s-card {
    background: white; border-radius: 16px;
    padding: 36px 28px; border: 1px solid var(--border);
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex; flex-direction: column; gap: 12px;
    position: relative; overflow: hidden;
}
.s-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.s-card:hover { box-shadow: 0 16px 48px rgba(21,88,168,0.12); transform: translateY(-5px); }
.s-card-icon, .s-card .icon { font-size: 2rem; width: auto; height: auto; margin-bottom: 0; }
.s-card h3 { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 800; color: var(--text); }
.s-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; flex: 1; }
.card-link, .s-card a {
    color: var(--primary); font-weight: 700; font-size: 0.88rem;
    text-decoration: none; margin-top: 8px;
}
.card-link:hover, .s-card a:hover { color: var(--primary-dark); text-decoration: underline; }

/* ===================== TESTIMONIALS ===================== */
.testimonials { padding: 100px 0; background: var(--bg); }
.testimonials .wrap { max-width: 1100px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
    background: var(--bg-soft); border-radius: 16px;
    padding: 32px 28px; border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 16px;
}
.testi-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.testi-text { font-size: 0.92rem; color: var(--text); line-height: 1.75; flex: 1; font-style: italic; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.testi-author { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.testi-role { font-size: 0.78rem; color: var(--text-dim); }

/* ===================== SOCIAL PROOF ===================== */
.social-proof { padding: 40px 24px; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.social-proof .wrap { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.sp-stat { text-align: center; }
.sp-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.sp-lbl { font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
}
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.cta-banner .wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.cta-text h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800; color: white; margin-bottom: 10px;
}
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================== FAQ ===================== */
.faq { background: var(--bg-soft); padding: 80px 24px; }
.faq .wrap { max-width: 720px; margin: 0 auto; }
.faq-list { margin-top: 44px; }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
    padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px;
    font-family: 'Fraunces', serif; font-weight: 700; font-size: 0.95rem; color: var(--text); user-select: none;
}
.faq-icon { color: var(--primary); font-size: 20px; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 40px 18px 0; font-size: 0.875rem; color: var(--text-dim); line-height: 1.8; display: none; }
.faq-item.open .faq-a { display: block; }

/* ===================== MODAL ===================== */
.modal-bg {
    display: none; position: fixed; inset: 0; z-index: 9000;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 20px;
}
.modal-bg.open { display: flex; }
.modal {
    background: white; border-radius: 18px; max-width: 500px; width: 100%;
    padding: 36px 32px; position: relative;
    animation: mup 0.3s ease; max-height: 92vh; overflow-y: auto;
}
@keyframes mup { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.modal-x { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dim); }
.modal h3 { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 800; margin-bottom: 5px; }
.modal-sub { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 22px; }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 5px; }
.field input { width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 7px; font-size: 0.9rem; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); transition: border-color 0.2s; }
.field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,108,196,0.1); }
.sub-btn {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white; border: none; border-radius: 9px;
    font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.2s;
    margin-top: 6px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.sub-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,108,196,0.35); }
.sub-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===================== BUTTONS ===================== */
.btn-primary {
    background: var(--primary); color: white;
    padding: 14px 32px; border-radius: 8px;
    font-size: 0.95rem; font-weight: 700; text-decoration: none;
    transition: all 0.2s; box-shadow: 0 4px 14px rgba(21,88,168,0.3);
    display: inline-block;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-outline {
    background: transparent; color: var(--primary);
    padding: 14px 30px; border-radius: 8px;
    font-size: 0.95rem; font-weight: 700; text-decoration: none;
    border: 2px solid rgba(21,88,168,0.3); transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--primary); background: var(--primary-light); }

.btn-white {
    background: white; color: var(--primary);
    padding: 14px 28px; border-radius: 9px;
    font-weight: 700; font-size: 0.9rem; text-decoration: none;
    white-space: nowrap; flex-shrink: 0; transition: all 0.2s; display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-outline-w {
    background: transparent; color: white;
    padding: 14px 28px; border-radius: 9px;
    font-weight: 700; font-size: 0.9rem; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5); transition: all 0.2s; display: inline-block;
}
.btn-outline-w:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }

/* ===================== PAGE BANNER (inner pages) ===================== */
.page-banner {
    position: relative; padding: 180px 0 100px;
    text-align: center; color: white; overflow: hidden;
    background-color: #050d1a;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&w=1600&q=80');
    background-size: cover; background-position: center;
}
.page-banner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(145deg,
        rgba(5,13,26,0.92) 0%,
        rgba(10,31,61,0.88) 60%,
        rgba(5,13,26,0.95) 100%
    );
}
.page-banner .wrap { position: relative; z-index: 1; }
.page-banner h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; color: white; margin-bottom: 12px;
}
.page-banner p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 540px; margin: 0 auto; }

/* ===================== SECTION LABELS ===================== */
.s-label {
    display: block; font-size: 10px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 14px;
}
.s-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800; color: var(--text);
    line-height: 1.15; margin-bottom: 14px;
}
.s-sub {
    font-size: 1rem; color: var(--text-dim);
    line-height: 1.75; margin-bottom: 52px; max-width: 560px;
}

/* ===================== WHATSAPP ===================== */
.wa {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    background: #25D366; color: white;
    border-radius: 100px; padding: 13px 20px;
    display: flex; align-items: center; gap: 9px;
    text-decoration: none; font-weight: 700; font-size: 13px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.2s; animation: wap 2.5s infinite;
}
.wa:hover { transform: scale(1.04); background: #20ba5a; }
.wa-lbl { display: inline; }
@keyframes wap {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================== FOOTER ===================== */
#site-footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 56px 24px 28px; }
.footer-inner {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 40px; margin-bottom: 32px;
}
.f-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.f-logo-wrap img { height: 36px; width: auto; }
.f-logo { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.15rem; color: var(--primary); }
.f-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.75; max-width: 280px; }
.f-col h4 {
    font-family: 'Fraunces', serif; font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text); margin-bottom: 14px;
}
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 8px; }
.f-col a { color: var(--text-dim); text-decoration: none; font-size: 0.82rem; }
.f-col a:hover { color: var(--primary); }
.footer-btm {
    max-width: 1000px; margin: 0 auto;
    padding-top: 24px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    font-size: 0.75rem; color: var(--text-dim);
}
.footer-btm a { color: var(--text-dim); text-decoration: none; }
.footer-btm a:hover { color: var(--primary); }

/* ===================== REVEAL ===================== */
.rv { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
    .rv-anim { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .rv-anim.in { opacity: 1; transform: translateY(0); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .s-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats { flex-direction: row; }
    .hero-stat-card { flex: 1; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden !important; }
    #nav-toggle { display: flex; }
    .nav-btn { display: none; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        flex-direction: column; background: white;
        border-top: 1px solid var(--border);
        padding: 16px 24px; gap: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links a { color: var(--text-dim) !important; }
    .nav-links a:hover { color: var(--primary) !important; }
    .nav-inner { padding: 12px 16px; }

    .hero-inner { padding-top: 100px; padding-bottom: 60px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-stats { flex-direction: column; }

    .s-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-btns { justify-content: center; flex-direction: column; align-items: center; }
    .cta-btns a { width: 100%; max-width: 300px; text-align: center; }

    .modal { padding: 28px 20px; }

    .wa { bottom: 18px; right: 18px; padding: 13px; border-radius: 50%; }
    .wa-lbl { display: none; }

    .footer-inner { padding: 0; }
    .trust-bar .wrap { flex-direction: column; gap: 12px; }
}

@media (max-width: 600px) {
    .hero-stats { flex-direction: column; }
}

@media (max-width: 480px) {
    .s-title { font-size: 1.6rem; }
    .hero-content h1 { font-size: 1.75rem; }
    .sp-num { font-size: 1.6rem; }
}

/* Blog nav z-index fix */
body.blog #site-nav {
    z-index: 9999 !important;
}
body.blog .nav-links .sub-menu {
    z-index: 10000 !important;
}
body.blog .nav-links .sub-menu li a {
    color: var(--text) !important;
}

/* NAV SCROLLED STATE */
#site-nav.scrolled {
    background: rgba(255,255,255,0.98) !important;
    border-bottom: 1px solid #E4ECF4 !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
}
#site-nav.scrolled .nav-links a {
    color: #637080 !important;
}
#site-nav.scrolled .nav-btn {
    background: var(--primary) !important; }
    color: white !important;
}
#site-nav.scrolled #nav-toggle span {
    background: #0D1117 !important;
}

/* ===================== CASE STUDIES ===================== */
.case-studies {
    padding: 100px 0;
    background: var(--bg-soft);
}
.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.cs-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}
.cs-card:hover {
    box-shadow: 0 20px 56px rgba(21,88,168,0.11);
    transform: translateY(-5px);
}
.cs-image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
    overflow: hidden;
}
.cs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.cs-card:hover .cs-image { transform: scale(1.04); }
.cs-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cs-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px;
}
.cs-body {
    padding: 32px;
    display: flex; flex-direction: column; gap: 14px;
}
.cs-body h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem; font-weight: 800;
    color: var(--text); line-height: 1.3;
}
.cs-body p {
    font-size: 0.9rem; color: var(--text-dim); line-height: 1.75;
}
.cs-metrics {
    display: flex; gap: 24px;
    padding-top: 16px; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.cs-metric { display: flex; flex-direction: column; gap: 3px; }
.cs-metric-num {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem; font-weight: 900;
    color: var(--primary); line-height: 1;
}
.cs-metric-lbl { font-size: 0.75rem; color: var(--text-dim); font-weight: 500; }

/* ===================== CTA TRUST SIGNALS ===================== */
.cta-trust-signals {
    display: flex; gap: 20px; flex-wrap: wrap; margin-top: 16px;
}
.cta-signal {
    font-size: 0.85rem; color: rgba(255,255,255,0.8);
    display: flex; align-items: center; gap: 6px;
}
.cta-signal .ck { color: #7ec8f7; }

/* ===================== TRUST BAR INDUSTRY ICONS ===================== */
.trust-industries { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-industry-item {
    display: flex; align-items: center; gap: 8px;
    color: white; font-weight: 600; font-size: 0.88rem; opacity: 0.9;
}
.trust-industry-item svg { flex-shrink: 0; opacity: 0.85; }

/* ===================== RESPONSIVE (additions) ===================== */
@media (max-width: 768px) {
    .cs-grid { grid-template-columns: 1fr; }
    .cs-body { padding: 20px; }
    .cs-metrics { gap: 16px; }
    .cta-trust-signals { flex-direction: column; gap: 10px; }
}