/* ═══════════════════════════════════════════
   DIGREJA LANDING PAGE — STYLE SYSTEM
   ═══════════════════════════════════════════ */

/* --- VARIABLES --- */
:root {
    --blue-900: #0c1527;
    --blue-800: #111d35;
    --blue-700: #182a4a;
    --blue-600: #1e3a5f;
    --blue-500: #0080c9;
    --blue-400: #009ae6;
    --blue-300: #33b5ff;
    --blue-200: #80d4ff;
    --blue-100: #e0f3ff;

    --orange-600: #c26a00;
    --orange-500: #e8920d;
    --orange-400: #f0a020;
    --orange-300: #f5b74a;
    --orange-200: #fad48a;
    --orange-100: #fff4e0;

    --white: #ffffff;
    --g50: #f8fafc;
    --g100: #f1f5f9;
    --g200: #e2e8f0;
    --g300: #cbd5e1;
    --g400: #94a3b8;
    --g500: #64748b;
    --g600: #475569;
    --g700: #334155;
    --g800: #1e293b;

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 999px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--g700);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.15; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- ANIMATIONS --- */
@keyframes fadeUp { from { opacity:0; transform:translateY(36px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-28px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(-36px) } to { opacity:1; transform:translateX(0) } }
@keyframes fadeRight { from { opacity:0; transform:translateX(36px) } to { opacity:1; transform:translateX(0) } }
@keyframes scaleIn { from { opacity:0; transform:scale(.92) } to { opacity:1; transform:scale(1) } }
@keyframes float { 0%,100% { transform:translateY(0) } 50% { transform:translateY(-14px) } }
@keyframes pulse { 0%,100% { opacity:1;transform:scale(1) } 50% { opacity:.5;transform:scale(1.8) } }
@keyframes shimmer { 0% { background-position:-200% center } 100% { background-position:200% center } }
@keyframes gradientShift { 0% { background-position:0% 50% } 50% { background-position:100% 50% } 100% { background-position:0% 50% } }

.anim { opacity: 0; transform: translateY(36px); transition: all .7s cubic-bezier(.16,1,.3,1); }
.anim.visible { opacity: 1; transform: translateY(0); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-weight: 600; font-size: .95rem;
    border: none; cursor: pointer; transition: all .3s ease;
    border-radius: var(--r-full); text-align: center; white-space: nowrap;
}
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-md { padding: 12px 28px; }
.btn-sm { padding: 10px 22px; font-size: .88rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    color: var(--white);
    box-shadow: 0 8px 28px rgba(232,146,13,.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(232,146,13,.42); }

.btn-ghost {
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.2);
    color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    border: 2px solid var(--blue-500);
    color: var(--blue-500);
}
.btn-outline:hover { background: var(--blue-500); color: var(--white); transform: translateY(-2px); }

.btn-solid-blue {
    background: var(--blue-500);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0,128,201,.25);
}
.btn-solid-blue:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,128,201,.35); }

.gradient-text {
    background: linear-gradient(135deg, var(--orange-400), var(--orange-300));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- SECTION HELPERS --- */
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px; border-radius: var(--r-full);
    font-size: .78rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 20px;
}
.label-blue { background: var(--blue-100); color: var(--blue-500); }
.label-orange { background: var(--orange-100); color: var(--orange-600); }
.label-dark { background: rgba(0,154,230,.15); color: var(--blue-300); }

.section-title {
    font-size: 2.8rem; font-weight: 800; color: var(--blue-900);
    margin-bottom: 16px; letter-spacing: -.02em;
}
.section-title span { color: var(--orange-500); }
.section-subtitle { font-size: 1.08rem; color: var(--g500); max-width: 620px; line-height: 1.8; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0; transition: all .4s ease; background: transparent;
}
.navbar.scrolled {
    background: rgba(12,21,39,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 12px 0; box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 42px; transition: height .3s; }
.navbar.scrolled .nav-logo img { height: 34px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
    color: rgba(255,255,255,.85); font-weight: 500; font-size: .88rem;
    letter-spacing: .01em; transition: color .3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--orange-400); transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400)) !important;
    color: var(--white) !important; padding: 10px 24px !important;
    border-radius: var(--r-full) !important; font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(232,146,13,.3); transition: all .3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,146,13,.4) !important; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(7.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7.5px); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center;
    background: linear-gradient(168deg, var(--blue-900) 0%, var(--blue-800) 45%, var(--blue-700) 100%);
    overflow: hidden; padding: 120px 0 0;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-circle {
    position: absolute; border-radius: 50%;
}
.hero-circle-1 {
    top: -15%; right: -10%; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,154,230,.1) 0%, transparent 70%);
    animation: float 9s ease-in-out infinite;
}
.hero-circle-2 {
    bottom: -20%; left: -8%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,146,13,.07) 0%, transparent 70%);
    animation: float 11s ease-in-out infinite reverse;
}
.hero-circle-3 {
    top: 35%; right: 30%; width: 120px; height: 120px;
    background: rgba(0,154,230,.05); animation: float 7s ease-in-out infinite;
}
.hero-grid-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { animation: fadeLeft .9s ease-out both; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px; border-radius: var(--r-full);
    background: rgba(0,154,230,.12); border: 1px solid rgba(0,154,230,.2);
    color: var(--blue-300); font-size: .78rem; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase; margin-bottom: 28px;
}
.badge-pulse {
    width: 8px; height: 8px; background: var(--orange-400);
    border-radius: 50%; position: relative;
}
.badge-pulse::after {
    content: ''; position: absolute; inset: -3px;
    border-radius: 50%; background: var(--orange-400);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem; font-weight: 900; color: var(--white);
    margin-bottom: 22px; letter-spacing: -.025em; line-height: 1.1;
}

.hero-desc {
    font-size: 1.12rem; color: var(--blue-200);
    margin-bottom: 36px; max-width: 530px; line-height: 1.85; font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; align-items: center; margin-bottom: 48px; flex-wrap: wrap; }

.hero-stats {
    display: flex; gap: 0; align-items: center;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg); padding: 16px 28px;
    max-width: fit-content;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat strong {
    display: block; font-family: var(--font-heading); font-size: 1.6rem;
    font-weight: 800; color: var(--orange-400);
}
.hero-stat span { font-size: .78rem; color: var(--blue-300); font-weight: 400; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

/* Hero Visual — Browser */
.hero-visual {
    position: relative; animation: fadeRight .9s ease-out .25s both;
}
.browser-mockup {
    background: var(--blue-800); border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.05);
}
.browser-bar {
    display: flex; align-items: center; gap: 7px;
    padding: 12px 16px; background: rgba(0,0,0,.3);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.browser-url {
    flex: 1; margin-left: 12px; padding: 5px 14px;
    background: rgba(255,255,255,.06); border-radius: 6px;
    font-size: .72rem; color: var(--g400);
}
.browser-screen {
    padding: 20px; background: linear-gradient(140deg, var(--blue-900), var(--blue-800));
}
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.dash-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--r-sm); padding: 14px;
}
.dash-label { display: block; font-size: .64rem; color: var(--g400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.dash-value { display: block; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.dash-bar { height: 4px; background: rgba(255,255,255,.06); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.dash-fill { height: 100%; border-radius: 2px; }

.dash-chart {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--r-sm); padding: 14px;
}
.chart-bars { display: flex; gap: 8px; align-items: flex-end; height: 80px; }
.chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.chart-bar { width: 100%; border-radius: 4px 4px 0 0; background: var(--blue-400); min-height: 4px; transition: height 1s ease; }
.chart-bar.orange { background: var(--orange-400); }
.chart-col span { font-size: .58rem; color: var(--g400); }

/* Hero Visual — Phone */
.phone-mockup {
    position: absolute; bottom: -20px; right: -30px;
    width: 190px; z-index: 3; animation: float 6s ease-in-out infinite;
}
.phone-frame {
    background: #000; border-radius: 30px; padding: 8px;
    box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
}
.phone-notch {
    width: 55%; height: 16px; background: #000;
    margin: 0 auto 6px; border-radius: 0 0 12px 12px;
}
.phone-screen {
    background: linear-gradient(180deg, var(--blue-800), var(--blue-700));
    border-radius: 22px; padding: 14px 10px; min-height: 250px;
}
.phone-header {
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.phone-icon { width: 26px; height: 26px; border-radius: 8px; }
.phone-title { font-size: .72rem; font-weight: 800; color: var(--white); }
.phone-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px; background: rgba(255,255,255,.06);
    border-radius: 10px; margin-bottom: 6px;
}
.phone-avatar { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; }
.phone-info { flex: 1; min-width: 0; }
.phone-name { display: block; font-size: .64rem; color: var(--white); font-weight: 600; }
.phone-sub { display: block; font-size: .54rem; color: var(--g400); }
.phone-badge {
    padding: 2px 7px; border-radius: var(--r-full);
    font-size: .52rem; font-weight: 700; flex-shrink: 0;
}
.phone-badge.blue { background: rgba(0,154,230,.2); color: var(--blue-300); }
.phone-badge.orange { background: rgba(232,146,13,.2); color: var(--orange-300); }

/* Hero Trust Strip */
.hero-trust {
    margin-top: auto; padding: 28px 0;
    background: rgba(0,0,0,.15); border-top: 1px solid rgba(255,255,255,.05);
    position: relative; z-index: 2;
}
.trust-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 36px; flex-wrap: wrap;
}
.trust-label {
    font-size: .72rem; color: var(--g400); font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
}
.trust-items { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 500;
}

/* ═══════════════════════════════════════════
   ABOUT / PROBLEM-SOLUTION
   ═══════════════════════════════════════════ */
.about { padding: 100px 0; position: relative; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; margin-top: 56px; align-items: stretch;
}
.problems { display: flex; flex-direction: column; gap: 16px; }
.problem-card {
    display: flex; gap: 16px; padding: 20px; border-radius: var(--r-md);
    background: var(--white); border: 1px solid var(--g200); transition: all .35s ease;
}
.problem-card:hover { border-color: var(--blue-400); box-shadow: 0 8px 24px rgba(0,128,201,.08); transform: translateX(4px); }
.problem-icon {
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.icon-red { background: #fff0f0; }
.problem-card h4 { font-size: .92rem; font-weight: 700; color: var(--g800); margin-bottom: 3px; }
.problem-card p { font-size: .84rem; color: var(--g500); line-height: 1.6; }

.solution-box {
    background: linear-gradient(145deg, var(--blue-900), var(--blue-800));
    border-radius: var(--r-xl); padding: 44px; color: var(--white);
    position: relative; overflow: hidden;
}
.solution-box::before {
    content: ''; position: absolute; top: -40%; right: -25%;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,146,13,.1), transparent 70%);
}
.solution-box h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 14px; position: relative; }
.solution-box h3 span { color: var(--orange-400); }
.solution-box > p { font-size: .92rem; color: var(--blue-200); line-height: 1.8; margin-bottom: 26px; position: relative; }
.checks { display: flex; flex-direction: column; gap: 12px; position: relative; }
.check-item {
    display: flex; align-items: center; gap: 12px;
    font-size: .88rem; font-weight: 500;
}
.check-icon {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: rgba(232,146,13,.2); display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 13px; height: 13px; fill: var(--orange-400); }

/* ═══════════════════════════════════════════
   MODULES
   ═══════════════════════════════════════════ */
.modules { padding: 100px 0; background: var(--g50); }
.modules-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px; margin-top: 56px;
}
.mod-card {
    background: var(--white); border-radius: var(--r-lg);
    padding: 34px 26px; border: 1px solid var(--g200);
    transition: all .4s cubic-bezier(.16,1,.3,1); position: relative; overflow: hidden;
}
.mod-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue-400), var(--orange-400));
    opacity: 0; transition: opacity .3s;
}
.mod-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.1); border-color: transparent; }
.mod-card:hover::before { opacity: 1; }

.mod-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 18px;
}
.mod-icon-blue { background: var(--blue-100); }
.mod-icon-orange { background: var(--orange-100); }

.mod-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.mod-card > p { font-size: .86rem; color: var(--g500); line-height: 1.7; margin-bottom: 16px; }
.mod-features { display: flex; flex-direction: column; gap: 7px; }
.mod-feat {
    display: flex; align-items: center; gap: 8px;
    font-size: .8rem; color: var(--g600); font-weight: 500;
}
.mod-feat svg { width: 14px; height: 14px; fill: var(--blue-400); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   FEATURES HIGHLIGHT ROWS
   ═══════════════════════════════════════════ */
.features { padding: 100px 0; }
.feat-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; margin-bottom: 80px;
}
.feat-row:last-child { margin-bottom: 0; }
.feat-row.reverse .feat-visual { order: -1; }

.feat-visual-box {
    background: linear-gradient(145deg, var(--blue-900), var(--blue-800));
    border-radius: var(--r-xl); padding: 30px; position: relative; overflow: hidden;
}
.feat-visual-box::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--r-xl); padding: 1px;
    background: linear-gradient(135deg, rgba(0,154,230,.3), rgba(232,146,13,.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
}
.feat-content h3 { font-size: 2rem; font-weight: 800; color: var(--blue-900); margin-bottom: 14px; }
.feat-content h3 span { color: var(--orange-500); }
.feat-content > p { font-size: .98rem; color: var(--g500); line-height: 1.8; margin-bottom: 24px; }

.feat-list { display: flex; flex-direction: column; gap: 14px; }
.feat-item { display: flex; gap: 14px; align-items: flex-start; }
.feat-item-icon {
    width: 34px; height: 34px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-item-icon svg { width: 16px; height: 16px; }
.feat-item h4 { font-size: .9rem; font-weight: 700; color: var(--g800); margin-bottom: 2px; }
.feat-item p { font-size: .82rem; color: var(--g500); line-height: 1.6; }

/* Visual screen rows */
.screen-row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; background: rgba(255,255,255,.06);
    border-radius: 10px; margin-bottom: 10px;
}
.screen-avatar { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; }
.screen-info { flex: 1; }
.screen-name { display: block; font-size: .78rem; font-weight: 600; color: var(--white); }
.screen-detail { display: block; font-size: .66rem; color: var(--g400); }
.screen-badge {
    padding: 3px 10px; border-radius: var(--r-full);
    font-size: .64rem; font-weight: 600;
}
.badge-blue { background: rgba(0,154,230,.2); color: var(--blue-300); }
.badge-orange { background: rgba(232,146,13,.2); color: var(--orange-300); }
.badge-green { background: rgba(56,161,105,.2); color: #68d391; }

/* ═══════════════════════════════════════════
   APP SECTION
   ═══════════════════════════════════════════ */
.app-section {
    padding: 100px 0; position: relative; overflow: hidden;
    background: linear-gradient(168deg, var(--blue-900), var(--blue-800));
}
.app-section::before {
    content: ''; position: absolute; top: -25%; left: -8%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,154,230,.08), transparent 70%);
}
.app-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; position: relative; z-index: 1;
}
.app-content .section-title { color: var(--white); }
.app-content .section-subtitle { color: var(--blue-200); }

.app-feats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin-top: 36px;
}
.app-feat {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md);
    transition: all .3s;
}
.app-feat:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.14); }
.app-feat-icon { font-size: 1.25rem; }
.app-feat-text { font-size: .84rem; color: var(--white); font-weight: 500; }

/* App Phone */
.app-phone {
    display: flex; justify-content: center;
}
.app-phone-frame {
    width: 270px; background: #000; border-radius: 38px; padding: 10px;
    box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
}
.app-phone-screen {
    background: linear-gradient(180deg, var(--blue-800), var(--blue-700));
    border-radius: 28px; padding: 22px 16px; min-height: 440px;
}
.app-scr-header { text-align: center; margin-bottom: 22px; }
.app-scr-logo { width: 44px; height: 44px; border-radius: 14px; margin: 0 auto 10px; }
.app-scr-title { font-size: .95rem; font-weight: 800; color: var(--white); display: block; }
.app-scr-sub { font-size: .68rem; color: var(--g400); }

.app-scr-cards { display: flex; flex-direction: column; gap: 10px; }
.app-scr-card {
    display: flex; align-items: center; gap: 12px;
    padding: 13px; background: rgba(255,255,255,.07); border-radius: 14px;
}
.app-scr-card-icon {
    width: 38px; height: 38px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.app-scr-card h4 { font-size: .76rem; font-weight: 700; color: var(--white); }
.app-scr-card p { font-size: .62rem; color: var(--g400); }

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials { padding: 100px 0; background: var(--g50); }
.test-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px; margin-top: 56px;
}
.test-card {
    background: var(--white); border-radius: var(--r-lg);
    padding: 32px; border: 1px solid var(--g200); transition: all .3s;
}
.test-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.test-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.test-stars svg { width: 16px; height: 16px; fill: var(--orange-400); }
.test-text { font-size: .9rem; color: var(--g600); line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700; color: var(--white);
}
.test-author h4 { font-size: .88rem; font-weight: 700; color: var(--g800); }
.test-author p { font-size: .76rem; color: var(--g400); }

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing { padding: 100px 0; }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px; margin-top: 56px; max-width: 1020px; margin-left: auto; margin-right: auto;
}
.price-card {
    background: var(--white); border-radius: var(--r-xl);
    padding: 38px 30px; border: 2px solid var(--g200);
    text-align: center; transition: all .4s; position: relative;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.price-card.featured {
    border-color: var(--orange-400);
    background: linear-gradient(180deg, var(--white), var(--orange-100));
    box-shadow: 0 10px 40px rgba(232,146,13,.12);
}
.price-popular {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    padding: 6px 20px; background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    color: var(--white); font-size: .72rem; font-weight: 700; border-radius: var(--r-full);
    letter-spacing: .05em; text-transform: uppercase;
}
.price-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--blue-900); margin-bottom: 6px; }
.price-desc { font-size: .8rem; color: var(--g400); margin-bottom: 22px; }
.price-amount-wrap { margin-bottom: 26px; }
.price-currency { font-size: 1.1rem; font-weight: 600; color: var(--g600); vertical-align: top; }
.price-amount {
    font-family: var(--font-heading); font-size: 3.2rem; font-weight: 900;
    color: var(--blue-900); line-height: 1;
}
.price-period { font-size: .82rem; color: var(--g400); }
.price-features { text-align: left; margin-bottom: 26px; display: flex; flex-direction: column; gap: 9px; }
.price-feat { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--g600); }
.price-feat svg { width: 16px; height: 16px; fill: var(--blue-400); flex-shrink: 0; }

.price-btn {
    display: block; width: 100%; padding: 14px; border-radius: var(--r-full);
    font-weight: 700; font-size: .92rem; cursor: pointer; transition: all .3s;
    font-family: var(--font-body);
}

/* ═══════════════════════════════════════════
   CONSULT / CURIOSITY SECTION (replaces pricing)
   ═══════════════════════════════════════════ */
.consult-box {
    margin-top: 56px;
    background: linear-gradient(145deg, var(--blue-900), var(--blue-800));
    border-radius: var(--r-xl);
    padding: 56px;
    position: relative;
    overflow: hidden;
}
.consult-box::before {
    content: ''; position: absolute; top: -30%; right: -15%;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,146,13,.1), transparent 70%);
}
.consult-box::after {
    content: ''; position: absolute; bottom: -20%; left: -10%;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,154,230,.08), transparent 70%);
}
.consult-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; position: relative; z-index: 1;
}
.consult-left .consult-emoji { font-size: 3rem; margin-bottom: 16px; }
.consult-left h3 {
    font-size: 2rem; font-weight: 800; color: var(--white);
    margin-bottom: 16px; line-height: 1.2;
}
.consult-left h3 span { color: var(--orange-400); }
.consult-left p {
    font-size: .95rem; color: var(--blue-200);
    line-height: 1.8; margin-bottom: 28px;
}
.consult-right { display: flex; flex-direction: column; gap: 16px; }
.consult-item {
    display: flex; gap: 16px; padding: 20px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-md); transition: all .3s;
}
.consult-item:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.14);
    transform: translateX(4px);
}
.consult-item-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.consult-item h4 { font-size: .92rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.consult-item p { font-size: .82rem; color: var(--blue-200); line-height: 1.6; }

@media (max-width: 1024px) {
    .consult-grid { grid-template-columns: 1fr; gap: 40px; }
    .consult-box { padding: 36px; }
}
@media (max-width: 768px) {
    .consult-box { padding: 28px; }
    .consult-left h3 { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════
   LEAD CAPTURE
   ═══════════════════════════════════════════ */
.lead-section {
    padding: 100px 0; position: relative; overflow: hidden;
    background: linear-gradient(168deg, var(--blue-900), var(--blue-800));
}
.lead-section::before {
    content: ''; position: absolute; top: -35%; right: -15%;
    width: 650px; height: 650px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,146,13,.07), transparent 70%);
}
.lead-section::after {
    content: ''; position: absolute; bottom: -25%; left: -10%;
    width: 450px; height: 450px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,154,230,.07), transparent 70%);
}
.lead-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; position: relative; z-index: 2;
}
.lead-content h2 { font-size: 2.6rem; font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.lead-content h2 span { color: var(--orange-400); }
.lead-content > p { font-size: 1.02rem; color: var(--blue-200); line-height: 1.8; margin-bottom: 30px; }
.lead-benefits { display: flex; flex-direction: column; gap: 14px; }
.lead-benefit { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--white); font-weight: 500; }
.lead-benefit-icon {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: rgba(232,146,13,.2); display: flex; align-items: center; justify-content: center;
}
.lead-benefit-icon svg { width: 13px; height: 13px; fill: var(--orange-400); }

.lead-form-box {
    background: var(--white); border-radius: var(--r-xl); padding: 44px;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.lead-form-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--blue-900); margin-bottom: 5px; }
.lead-form-sub { font-size: .86rem; color: var(--g400); margin-bottom: 26px; }

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--g700); margin-bottom: 5px; }
.form-input, .form-select {
    width: 100%; padding: 13px 16px; border: 2px solid var(--g200);
    border-radius: var(--r-md); font-size: .9rem; font-family: var(--font-body);
    color: var(--g800); transition: all .3s; background: var(--g50);
}
.form-input:focus, .form-select:focus {
    outline: none; border-color: var(--blue-400); background: var(--white);
    box-shadow: 0 0 0 4px rgba(0,128,201,.1);
}
.form-input::placeholder { color: var(--g400); }
.form-select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-submit {
    width: 100%; padding: 16px; margin-top: 6px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    color: var(--white); font-weight: 700; font-size: 1rem;
    border: none; border-radius: var(--r-md); cursor: pointer;
    box-shadow: 0 6px 20px rgba(232,146,13,.3); transition: all .3s;
    font-family: var(--font-body);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,146,13,.4); }

.form-privacy {
    margin-top: 14px; font-size: .74rem; color: var(--g400); text-align: center;
}
.form-privacy svg { width: 12px; height: 12px; fill: var(--g400); vertical-align: -2px; margin-right: 3px; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.active { display: block; animation: scaleIn .5s ease; }
.form-success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, #38a169, #48bb78);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.form-success-icon svg { width: 32px; height: 32px; fill: var(--white); }
.form-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--blue-900); margin-bottom: 6px; }
.form-success p { font-size: .9rem; color: var(--g500); }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq { padding: 100px 0; }
.faq-list { max-width: 760px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-md); overflow: hidden; transition: border-color .3s; }
.faq-item:hover { border-color: var(--blue-300); }
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 20px 22px; background: none; border: none;
    cursor: pointer; font-family: var(--font-body); font-size: .94rem;
    font-weight: 600; color: var(--g800); text-align: left;
}
.faq-q svg { width: 20px; height: 20px; fill: var(--g400); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); fill: var(--blue-500); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 20px; font-size: .88rem; color: var(--g500); line-height: 1.8; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer { background: var(--blue-900); padding: 60px 0 28px; color: var(--white); }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { height: 38px; margin-bottom: 14px; }
.footer-brand p { font-size: .84rem; color: var(--blue-200); line-height: 1.7; max-width: 300px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,.07); display: flex; align-items: center;
    justify-content: center; transition: all .3s;
}
.footer-social a:hover { background: var(--blue-500); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }
.footer-col h4 {
    font-size: .82rem; font-weight: 700; margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: .06em; color: var(--white);
}
.footer-col a { display: block; font-size: .84rem; color: var(--blue-200); padding: 4px 0; transition: color .3s; }
.footer-col a:hover { color: var(--orange-400); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 22px; font-size: .76rem; color: var(--g400);
}
.footer-bottom a { color: var(--g400); transition: color .3s; }
.footer-bottom a:hover { color: var(--orange-400); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.wpp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 999;
    transition: all .3s; cursor: pointer;
}
.wpp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wpp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-grid, .about-grid, .feat-row, .app-grid, .lead-grid { grid-template-columns: 1fr; gap: 40px; }
    .modules-grid, .test-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .feat-content h3 { font-size: 1.7rem; }
    .feat-row.reverse .feat-visual { order: 0; }
    .phone-mockup { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(12,21,39,.97); backdrop-filter: blur(20px);
        flex-direction: column; padding: 24px; gap: 18px;
    }
    .nav-links.open { display: flex; animation: fadeDown .3s ease; }
    .nav-toggle { display: flex; }

    .hero { padding: 100px 0 0; min-height: auto; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: .98rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-stats { flex-wrap: wrap; padding: 14px 18px; }
    .hero-stat { padding: 0 16px; }

    .modules-grid, .test-grid, .pricing-grid { grid-template-columns: 1fr; }
    .app-feats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .lead-form-box { padding: 28px; }
    .lead-content h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .trust-inner { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.85rem; }
    .section-title { font-size: 1.75rem; }
    .hero-stat strong { font-size: 1.3rem; }
    .container { padding: 0 16px; }
}
