/* ===== DESIGN SYSTEM (UNIFIED) ===== */
:root {
    /* Primary Colors */
    --navy: #1a3a52;
    --navy-light: #244b69;
    --navy-dark: #0f2231;
    --blue: #0d7cb4;
    --blue-hover: #0a6a9c;
    --blue-accent: #0099ff;
    --light-blue: #e8f4f8;
    
    /* Semantic Colors */
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #0ea5e9;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-25: #fcfdfe;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Utilities */
    --border: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    /* Shadows - Premium Elevation */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(26,58,82,0.08);
    --shadow-lg: 0 12px 32px rgba(26,58,82,0.12);
    --shadow-xl: 0 20px 48px rgba(26,58,82,0.16);
    --shadow-navy: 0 10px 25px rgba(26,58,82,0.25);
    --shadow-blue: 0 10px 25px rgba(13,124,180,0.25);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Animation */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-title { font-size: clamp(28px, 3.5vw, 38px); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--gray-500); max-width: 580px; margin: 0 auto; line-height: 1.75; }

.section-badge {
    display: inline-block;
    background: rgba(0, 153, 255, 0.1);
    color: var(--blue);
    font-size: 12px; font-weight: 700;
    padding: 5px 16px; border-radius: 20px;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 14px;
}
.section-badge-dark {
    display: inline-block;
    background: rgba(26,58,82,0.07);
    color: var(--navy);
    font-size: 12px; font-weight: 700;
    padding: 5px 16px; border-radius: 20px;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 28px; border-radius: var(--radius-md); font-weight: 600;
    font-family: 'Poppins', sans-serif; font-size: 15px;
    cursor: pointer; transition: var(--transition); border: 2px solid transparent;
    min-height: 50px; text-decoration: none; white-space: nowrap;
}
.btn-primary {
    background: var(--blue); color: white; border-color: var(--blue);
}
.btn-primary:hover {
    background: var(--blue-hover); border-color: var(--blue-hover);
    transform: translateY(-2px); box-shadow: var(--shadow-blue);
}
.btn-navy {
    background: var(--navy); color: white; border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-light); border-color: var(--navy-light);
    transform: translateY(-2px); box-shadow: var(--shadow-navy);
}
.btn-outline {
    background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy); color: white;
    transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-ghost {
    background: transparent; color: var(--navy); border-color: transparent;
    padding-left: 8px; padding-right: 8px;
}
.btn-ghost:hover { color: var(--blue); background: var(--gray-50); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px;
    color: var(--navy);
}
.logo-icon { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-600); transition: var(--transition); }
.nav-links a:hover { color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-actions .btn { padding: 10px 22px; font-size: 14px; min-height: 40px; }
.link-masuk { font-weight: 600; color: var(--navy); transition: var(--transition); font-size: 15px; }
.link-masuk:hover { color: var(--blue); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(150deg, #fff 50%, #eef7fc 100%);
    position: relative; overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,153,255,0.07) 0%, transparent 70%);
    z-index: 0;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: rgba(0,153,255,0.1); color: var(--blue);
    font-size: 13px; font-weight: 600;
    padding: 6px 16px; border-radius: 20px;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(30px, 4vw, 46px); color: var(--navy);
    margin-bottom: 20px; line-height: 1.18;
}
.hero-desc {
    font-size: 17px; color: var(--gray-600);
    margin-bottom: 32px; line-height: 1.75;
}
.hero-cta { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.trust-label { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.trust-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-cities span {
    font-size: 12px; font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-100); border-radius: 20px;
    padding: 3px 10px;
}

/* Hero Visual */
.hero-mockup-wrap {
    position: relative;
}
.hero-img {
    width: 100%; border-radius: var(--radius-md);
    box-shadow: 0 24px 60px rgba(26,58,82,0.18);
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.5s ease;
}
.hero-img:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-8px);
}
.hero-float {
    position: absolute; background: white;
    border-radius: 10px; padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--navy);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    white-space: nowrap;
}
.hero-float-top { top: -16px; left: -20px; }
.hero-float-bottom { bottom: 20px; right: -16px; }

/* ===== PAIN SECTION ===== */
.pain-section { padding: 96px 0; background: var(--gray-50); }
.pain-section .section-title { margin-bottom: 12px; }
.pain-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 48px;
}
.pain-card {
    background: white; border-radius: var(--radius-md);
    padding: 32px; border: 1px solid var(--border);
    border-top: 3px solid #f59e0b;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: #fef3c7; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.pain-icon svg { width: 24px; height: 24px; color: #d97706; }
.pain-card h3 { font-size: 18px; margin-bottom: 10px; }
.pain-card p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }

/* ===== PROTECTION FEATURES (Dark Navy) ===== */
.prot-section { padding: 96px 0; background: var(--navy); }
.prot-section .section-title { margin-bottom: 12px; }
.prot-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; margin-top: 52px;
}
.prot-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md); padding: 36px;
    position: relative; transition: var(--transition);
}
.prot-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,153,255,0.4);
    transform: translateY(-4px);
}
.prot-card-accent {
    border-color: rgba(0,153,255,0.35);
    background: rgba(0,153,255,0.08);
}
.prot-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px; font-weight: 700;
    color: rgba(255,255,255,0.08);
    line-height: 1; margin-bottom: 16px;
    position: absolute; top: 24px; right: 28px;
}
.prot-icon-wrap {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(0,153,255,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.prot-icon-wrap svg { width: 24px; height: 24px; color: #4fc3f7; }
.prot-card h3 { font-size: 19px; color: white; margin-bottom: 10px; }
.prot-card p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.65; }
.prot-link {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 16px; color: #4fc3f7; font-size: 14px; font-weight: 600;
    transition: var(--transition);
}
.prot-link:hover { color: white; gap: 8px; }

/* ===== OFFICE MANAGEMENT ===== */
.office-section { padding: 96px 0; background: white; }
.office-intro {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 32px; margin-bottom: 52px;
}
.office-intro .section-title { margin-bottom: 12px; }
.office-cta-btn { flex-shrink: 0; }
.office-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.office-card {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 28px 24px; border-radius: var(--radius-md);
    border: 1px solid var(--border); background: var(--gray-50);
    transition: var(--transition);
}
.office-card:hover {
    background: white; box-shadow: var(--shadow-md);
    transform: translateY(-3px); border-color: transparent;
}
.office-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--light-blue);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.office-icon svg { width: 22px; height: 22px; color: var(--blue); }
.office-text h3 { font-size: 16px; margin-bottom: 6px; }
.office-text p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 96px 0; background: var(--light-blue); }
.steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; margin-top: 52px;
}
.step-card {
    background: white; border-radius: var(--radius-md);
    padding: 36px 28px; text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--navy); color: white;
    font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }

/* ===== STATS ===== */
.stats { padding: 80px 0; background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item h3 { font-size: 44px; color: var(--navy); margin-bottom: 6px; line-height: 1; }
.stat-item p { font-size: 15px; color: var(--gray-600); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 96px 0; background: var(--gray-50); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.testi-card {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 32px;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    display: flex; flex-direction: column;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { display: flex; gap: 3px; color: #f59e0b; margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.testi-quote {
    font-size: 15px; color: var(--gray-700); line-height: 1.75;
    margin-bottom: 24px; flex: 1;
    font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--light-blue); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
    color: var(--blue);
}
.testi-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); }
.testi-role { font-size: 13px; color: var(--gray-500); }

/* ===== PRICING ===== */
.pricing { padding: 96px 0; background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.pricing-card {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 36px 28px;
    display: flex; flex-direction: column; position: relative;
    transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.pricing-card.popular {
    border-color: var(--blue); box-shadow: 0 8px 24px rgba(13,124,180,0.1);
    transform: scale(1.02);
}
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.popular-tag {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: white;
    padding: 5px 20px; border-radius: 20px;
    font-size: 12px; font-weight: 700; font-family: 'Poppins'; white-space: nowrap;
}
.plan-name { font-family: 'Poppins'; font-weight: 700; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.plan-price { font-family: 'Poppins'; font-weight: 700; font-size: 34px; color: var(--navy); margin-bottom: 4px; }
.plan-price span { font-size: 15px; color: var(--gray-500); font-weight: 500; font-family: 'Inter'; margin-left: 2px; }
.plan-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; line-height: 1.6; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.plan-features { flex: 1; margin-bottom: 28px; }
.plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; margin-bottom: 12px; color: var(--gray-700);
}
.plan-features svg { width: 18px; height: 18px; color: #22c55e; flex-shrink: 0; margin-top: 2px; }
.feat-unavail { opacity: 0.4; }
.feat-unavail svg { color: var(--gray-400); }
.pricing-card .btn { width: 100%; }
.pricing-addon { text-align: center; margin-top: 40px; font-size: 14px; color: var(--gray-500); }

/* ===== FAQ ===== */
.faq-section { padding: 96px 0; background: var(--gray-50); }
.faq-list { max-width: 780px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 20px 24px;
    background: none; border: none; cursor: pointer;
    font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600;
    color: var(--navy); text-align: left;
    transition: var(--transition);
}
.faq-q:hover { color: var(--blue); }
.faq-q span { flex: 1; }
.faq-arrow {
    width: 20px; height: 20px; flex-shrink: 0; color: var(--gray-400);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--blue); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 24px 24px;
}
.faq-a p { font-size: 15px; color: var(--gray-600); line-height: 1.75; }

/* ===== FINAL CTA ===== */
.cta-final { padding: 80px 0; background: var(--navy); }
.cta-box {
    text-align: center; max-width: 680px; margin: 0 auto;
}
.cta-box h2 { color: white; font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.7; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
    background: white; color: var(--navy); border: 2px solid white;
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-family: 'Poppins'; font-weight: 700; font-size: 16px;
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center;
}
.btn-cta-white:hover { background: var(--light-blue); transform: translateY(-2px); }
.btn-cta-outline {
    background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-family: 'Poppins'; font-weight: 600; font-size: 16px;
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center;
}
.btn-cta-outline:hover { border-color: white; transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: white; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.f-logo { display: flex; align-items: center; gap: 10px; font-family: 'Poppins'; font-size: 18px; font-weight: 700; color: white; margin-bottom: 16px; }
.f-logo svg { color: #4fc3f7; }
.f-desc { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 24px; line-height: 1.65; }
.f-social { display: flex; gap: 10px; }
.f-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.f-social a:hover { background: var(--blue-accent); }
.f-social svg { width: 16px; height: 16px; fill: white; }
.footer h4 { font-size: 15px; color: white; margin-bottom: 20px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer ul a:hover { color: white; }
.footer address p { font-size: 14px; color: rgba(255,255,255,0.6); }
.nl-form { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.nl-form input {
    padding: 11px 16px; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06); color: white;
    font-family: 'Inter'; font-size: 14px;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.nl-form input:focus { outline: none; border-color: var(--blue-accent); }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease-out, transform 0.75s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d-1 { transition-delay: 0.1s; }
.d-2 { transition-delay: 0.2s; }
.d-3 { transition-delay: 0.3s; }

/* ===== DASHBOARD MOCKUP ===== */
.dash-mockup {
    background: white; border-radius: 12px;
    box-shadow: 0 24px 60px rgba(26,58,82,0.18);
    border: 1px solid var(--border); overflow: hidden;
    display: flex; flex-direction: column; height: 380px;
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.5s ease; font-family: 'Inter', sans-serif;
    color: var(--gray-700); text-align: left;
}
.hero-mockup-wrap:hover .dash-mockup { transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-8px); }
.dash-topbar { height: 38px; background: #f8fafc; border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 16px; justify-content: space-between; }
.dash-logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue-accent); }
.dash-topbar-title { font-size: 11px; font-weight: 600; color: var(--navy); }
.dash-topbar-dots { display: flex; gap: 4px; }
.dash-topbar-dots span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gray-300); }
.dash-body { display: flex; flex: 1; overflow: hidden; }
.dash-sidebar { width: 140px; background: #fff; border-right: 1px solid var(--border); padding: 12px 8px; display: flex; flex-direction: column; gap: 4px; }
.dash-nav-item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; font-size: 10px; font-weight: 500; color: var(--gray-500); }
.dash-nav-item svg { width: 14px; height: 14px; }
.dash-nav-active { background: #e8f4f8; color: var(--blue); font-weight: 600; }
.dash-main { flex: 1; padding: 16px; background: #f1f5f9; display: flex; flex-direction: column; gap: 16px; overflow-y: auto; }
.dash-stats-row { display: flex; gap: 12px; }
.dash-stat-card { flex: 1; background: white; padding: 12px; border-radius: 8px; border: 1px solid var(--border); }
.dash-stat-label { font-size: 9px; color: var(--gray-500); margin-bottom: 4px; }
.dash-stat-val { font-size: 16px; font-weight: 700; font-family: 'Poppins', sans-serif; }
.dash-table-mock { background: white; border-radius: 8px; border: 1px solid var(--border); overflow: hidden; }
.dash-table-header { display: grid; grid-template-columns: 1fr 1.5fr 1fr; padding: 10px 12px; background: #f8fafc; font-size: 9px; font-weight: 600; color: var(--gray-500); border-bottom: 1px solid var(--border); }
.dash-table-row { display: grid; grid-template-columns: 1fr 1.5fr 1fr; padding: 10px 12px; font-size: 10px; color: var(--gray-700); border-bottom: 1px solid var(--border); align-items: center; }
.dash-table-row:last-child { border-bottom: none; }
.dash-cell-muted { color: var(--gray-400); font-family: monospace; }
.dash-badge { padding: 4px 8px; border-radius: 12px; font-size: 9px; font-weight: 600; text-align: center; }
.dash-badge-blue { background: #e0f2fe; color: #0284c7; }
.dash-badge-green { background: #dcfce7; color: #16a34a; }
.dash-badge-orange { background: #ffedd5; color: #ea580c; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: clamp(32px, 5vw, 40px); }
    .hero-desc { margin: 0 auto 32px; max-width: 600px; }
    .hero-cta { justify-content: center; margin-bottom: 24px; }
    .hero-trust { justify-content: center; }
    .hero-visual { max-width: 600px; margin: 40px auto 0; }
    .prot-grid { grid-template-columns: repeat(2, 1fr); }
    .office-intro { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
    .office-intro .section-subtitle { text-align: center !important; }
    .office-cta-btn { align-self: center; }
    .office-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section-title { font-size: clamp(24px, 6vw, 30px); margin-bottom: 12px; }
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: block; }
    
    .hero { padding: 100px 0 60px; }
    .hero-badge { font-size: 11px; padding: 5px 12px; }
    .hero-float-top { top: -15px; left: 0; font-size: 11px; padding: 6px 10px; }
    .hero-float-bottom { bottom: 15px; right: 0; font-size: 11px; padding: 6px 10px; }
    .hero-visual { padding: 0; transform: scale(0.95); }
    .dash-mockup { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    
    .pain-section, .prot-section, .office-section, .how-it-works, .testimonials, .pricing, .faq-section, .cta-final { padding: 64px 0; }
    
    .pain-grid, .prot-grid, .office-grid, .steps-grid, .testi-grid, .pricing-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
    
    .prot-card { padding: 24px; }
    .prot-number { font-size: 36px; top: 16px; right: 20px; }
    
    .office-card { padding: 24px; flex-direction: column; align-items: center; text-align: center; }
    .office-cta-btn { width: 100%; justify-content: center; }
    
    .steps-grid { gap: 20px; }
    .step-card { padding: 24px 20px; }
    
    .stats { padding: 48px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
    .stat-item h3 { font-size: 28px; }
    .stat-item p { font-size: 12px; }
    
    .testi-card { padding: 24px; }
    
    .pricing-grid { margin-top: 36px; gap: 20px; }
    .pricing-card { padding: 24px; }
    .pricing-card.popular { transform: none; border: 2px solid var(--blue); }
    .pricing-card.popular:hover { transform: translateY(-2px); }
    .plan-name { font-size: 20px; }
    .plan-price { font-size: 28px; }
    
    .faq-list { margin-top: 36px; gap: 10px; }
    .faq-q { padding: 16px; font-size: 14px; }
    .faq-arrow { width: 18px; height: 18px; }
    .faq-item.open .faq-a { padding: 0 16px 16px; }
    .faq-a p { font-size: 14px; }
    
    .cta-box h2 { font-size: 24px; line-height: 1.3; }
    .cta-box p { font-size: 15px; }
    .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    
    .footer { padding: 48px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
}

@media (max-width: 480px) {
    .dash-sidebar { display: none; }
    .dash-main { padding: 12px; }
    .dash-table-header { padding: 8px 10px; font-size: 8px; }
    .dash-table-row { padding: 8px 10px; font-size: 9px; }
    .hero-float-top { top: -10px; font-size: 10px; padding: 4px 8px; }
    .hero-float-bottom { bottom: 10px; font-size: 10px; padding: 4px 8px; }
    .stat-item h3 { font-size: 24px; }
}
