:root {
    --primary-blue: #0D46D8;
    --primary-blue-dark: #081C6B;
    --primary-orange: #58B90E;
    --primary-orange-hover: #7ED418;
    --light-blue: #23B8FF;
    --dark-bg: #071327;
    --text-main: #17375F;
    --text-muted: #637C95;
    --text-light: #e2e8f0;
    --bg-light: #F4FBFF;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

body.simulator-open {
    overflow: hidden;
}

body.app-download-open {
    overflow: hidden;
}

body.app-tutorial-open {
    overflow: hidden;
}

/* Site Theme Presets (configured in CRM) */
html[data-site-background-theme="neutral_light"] body {
    background-color: #f5f8fc;
}

html[data-site-background-theme="neutral_light"] .hero {
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

html[data-site-background-theme="neutral_light"] .trust-section {
    background:
        radial-gradient(circle at 18% 10%, rgba(59, 130, 246, 0.09), transparent 34%),
        radial-gradient(circle at 82% 84%, rgba(148, 163, 184, 0.11), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
}

html[data-site-background-theme="neutral_light"] .features {
    background-color: #ffffff;
}

html[data-site-background-theme="neutral_light"] .app-section {
    background: linear-gradient(180deg, #ffffff 0%, #eef3fa 100%);
}

html[data-site-background-theme="neutral_light"] .simulator-section {
    background: linear-gradient(180deg, #edf3fb 0%, #ffffff 100%);
}

html[data-site-background-theme="neutral_light"] .plans-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(100, 116, 139, 0.14), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(148, 163, 184, 0.11), transparent 24%),
        linear-gradient(180deg, #eef3f9 0%, #f7f9fc 40%, #ffffff 100%);
}

html[data-site-background-theme="neutral_light"] .plans-section::before {
    background: rgba(100, 116, 139, 0.1);
}

html[data-site-background-theme="neutral_light"] .plans-section::after {
    background: rgba(148, 163, 184, 0.12);
}

html[data-site-background-theme="neutral_light"] .cta-section {
    background-color: #eff4fb;
}

html[data-site-background-theme="neutral_light"] .faq-section {
    background-color: #f1f5fb;
}

html[data-site-background-theme="neutral_light"] .ticker-section {
    background: #1f3554;
}

html[data-site-background-theme="mint_glow"] body {
    background-color: #f1fcf9;
}

html[data-site-background-theme="mint_glow"] .hero {
    background: linear-gradient(180deg, #ebfbf6 0%, #ffffff 100%);
}

html[data-site-background-theme="mint_glow"] .hero-bg {
    background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
}

html[data-site-background-theme="mint_glow"] .trust-section {
    background:
        radial-gradient(circle at 16% 10%, rgba(45, 212, 191, 0.16), transparent 34%),
        radial-gradient(circle at 84% 86%, rgba(14, 165, 233, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #eefbf7 100%);
}

html[data-site-background-theme="mint_glow"] .features {
    background-color: #f9fffd;
}

html[data-site-background-theme="mint_glow"] .app-section {
    background: linear-gradient(180deg, #fbfffe 0%, #e9faf5 100%);
}

html[data-site-background-theme="mint_glow"] .simulator-section {
    background: linear-gradient(180deg, #e6faf4 0%, #ffffff 100%);
}

html[data-site-background-theme="mint_glow"] .plans-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(45, 212, 191, 0.16), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(14, 165, 233, 0.12), transparent 24%),
        linear-gradient(180deg, #e8fbf6 0%, #f3fffc 40%, #ffffff 100%);
}

html[data-site-background-theme="mint_glow"] .plans-section::before {
    background: rgba(45, 212, 191, 0.14);
}

html[data-site-background-theme="mint_glow"] .plans-section::after {
    background: rgba(14, 165, 233, 0.12);
}

html[data-site-background-theme="mint_glow"] .cta-section {
    background-color: #eafaf6;
}

html[data-site-background-theme="mint_glow"] .faq-section {
    background-color: #edf9f5;
}

html[data-site-background-theme="mint_glow"] .ticker-section {
    background: #0f4f60;
}

html[data-site-background-theme="sunset_warm"] body {
    background-color: #fff9f2;
}

html[data-site-background-theme="sunset_warm"] .hero {
    background: linear-gradient(180deg, #fff5e8 0%, #ffffff 100%);
}

html[data-site-background-theme="sunset_warm"] .hero-bg {
    background: radial-gradient(circle, rgba(251, 146, 60, 0.14) 0%, rgba(255, 255, 255, 0) 72%);
}

html[data-site-background-theme="sunset_warm"] .trust-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(251, 146, 60, 0.13), transparent 34%),
        radial-gradient(circle at 85% 84%, rgba(245, 158, 11, 0.13), transparent 30%),
        linear-gradient(180deg, #fffaf4 0%, #fff3e6 100%);
}

html[data-site-background-theme="sunset_warm"] .features {
    background-color: #fffdf9;
}

html[data-site-background-theme="sunset_warm"] .app-section {
    background: linear-gradient(180deg, #fffdf9 0%, #fff1df 100%);
}

html[data-site-background-theme="sunset_warm"] .simulator-section {
    background: linear-gradient(180deg, #fff1df 0%, #ffffff 100%);
}

html[data-site-background-theme="sunset_warm"] .plans-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(251, 146, 60, 0.16), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(245, 158, 11, 0.14), transparent 24%),
        linear-gradient(180deg, #fff2df 0%, #fff8ef 40%, #ffffff 100%);
}

html[data-site-background-theme="sunset_warm"] .plans-section::before {
    background: rgba(251, 146, 60, 0.14);
}

html[data-site-background-theme="sunset_warm"] .plans-section::after {
    background: rgba(245, 158, 11, 0.14);
}

html[data-site-background-theme="sunset_warm"] .cta-section {
    background-color: #fff2e1;
}

html[data-site-background-theme="sunset_warm"] .faq-section {
    background-color: #fff4e7;
}

html[data-site-background-theme="sunset_warm"] .ticker-section {
    background: #7c2d12;
}

html[data-site-background-theme="ocean_breeze"] body {
    background-color: #f1f8ff;
}

html[data-site-background-theme="ocean_breeze"] .hero {
    background: linear-gradient(180deg, #e8f5ff 0%, #ffffff 100%);
}

html[data-site-background-theme="ocean_breeze"] .hero-bg {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.14) 0%, rgba(255, 255, 255, 0) 72%);
}

html[data-site-background-theme="ocean_breeze"] .trust-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(14, 165, 233, 0.14), transparent 34%),
        radial-gradient(circle at 85% 84%, rgba(59, 130, 246, 0.12), transparent 30%),
        linear-gradient(180deg, #f8fdff 0%, #eaf6ff 100%);
}

html[data-site-background-theme="ocean_breeze"] .features {
    background-color: #fafdff;
}

html[data-site-background-theme="ocean_breeze"] .app-section {
    background: linear-gradient(180deg, #f9fdff 0%, #e7f4ff 100%);
}

html[data-site-background-theme="ocean_breeze"] .simulator-section {
    background: linear-gradient(180deg, #e7f4ff 0%, #ffffff 100%);
}

html[data-site-background-theme="ocean_breeze"] .plans-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(14, 165, 233, 0.16), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.14), transparent 24%),
        linear-gradient(180deg, #e7f4ff 0%, #f5faff 40%, #ffffff 100%);
}

html[data-site-background-theme="ocean_breeze"] .plans-section::before {
    background: rgba(14, 165, 233, 0.14);
}

html[data-site-background-theme="ocean_breeze"] .plans-section::after {
    background: rgba(59, 130, 246, 0.14);
}

html[data-site-background-theme="ocean_breeze"] .cta-section {
    background-color: #eaf4ff;
}

html[data-site-background-theme="ocean_breeze"] .faq-section {
    background-color: #edf6ff;
}

html[data-site-background-theme="ocean_breeze"] .ticker-section {
    background: #0b3a70;
}

html[data-site-background-theme="dawn_pastel"] body {
    background-color: #fff8fb;
}

html[data-site-background-theme="dawn_pastel"] .hero {
    background: linear-gradient(180deg, #fff2f7 0%, #ffffff 100%);
}

html[data-site-background-theme="dawn_pastel"] .hero-bg {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.11) 0%, rgba(255, 255, 255, 0) 72%);
}

html[data-site-background-theme="dawn_pastel"] .trust-section {
    background:
        radial-gradient(circle at 16% 10%, rgba(236, 72, 153, 0.12), transparent 34%),
        radial-gradient(circle at 84% 84%, rgba(168, 85, 247, 0.1), transparent 30%),
        linear-gradient(180deg, #fffafe 0%, #fff1f8 100%);
}

html[data-site-background-theme="dawn_pastel"] .features {
    background-color: #fffdfd;
}

html[data-site-background-theme="dawn_pastel"] .app-section {
    background: linear-gradient(180deg, #fffdfd 0%, #ffeef6 100%);
}

html[data-site-background-theme="dawn_pastel"] .simulator-section {
    background: linear-gradient(180deg, #ffeef6 0%, #ffffff 100%);
}

html[data-site-background-theme="dawn_pastel"] .plans-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(236, 72, 153, 0.14), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(168, 85, 247, 0.12), transparent 24%),
        linear-gradient(180deg, #ffeef6 0%, #fff6fb 40%, #ffffff 100%);
}

html[data-site-background-theme="dawn_pastel"] .plans-section::before {
    background: rgba(236, 72, 153, 0.12);
}

html[data-site-background-theme="dawn_pastel"] .plans-section::after {
    background: rgba(168, 85, 247, 0.12);
}

html[data-site-background-theme="dawn_pastel"] .cta-section {
    background-color: #fff0f8;
}

html[data-site-background-theme="dawn_pastel"] .faq-section {
    background-color: #fff4f9;
}

html[data-site-background-theme="dawn_pastel"] .ticker-section {
    background: #6b214f;
}

html[data-site-background-theme="slate_ice"] body {
    background-color: #f5f7fb;
}

html[data-site-background-theme="slate_ice"] .hero {
    background: linear-gradient(180deg, #f2f6fb 0%, #ffffff 100%);
}

html[data-site-background-theme="slate_ice"] .trust-section {
    background:
        radial-gradient(circle at 16% 10%, rgba(100, 116, 139, 0.14), transparent 34%),
        radial-gradient(circle at 84% 84%, rgba(148, 163, 184, 0.12), transparent 30%),
        linear-gradient(180deg, #fbfdff 0%, #eef3fa 100%);
}

html[data-site-background-theme="slate_ice"] .features {
    background-color: #ffffff;
}

html[data-site-background-theme="slate_ice"] .app-section {
    background: linear-gradient(180deg, #ffffff 0%, #eef2f8 100%);
}

html[data-site-background-theme="slate_ice"] .simulator-section {
    background: linear-gradient(180deg, #e9eef5 0%, #ffffff 100%);
}

html[data-site-background-theme="slate_ice"] .plans-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(100, 116, 139, 0.18), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(148, 163, 184, 0.13), transparent 24%),
        linear-gradient(180deg, #e9eef5 0%, #f3f6fb 40%, #ffffff 100%);
}

html[data-site-background-theme="slate_ice"] .plans-section::before {
    background: rgba(100, 116, 139, 0.11);
}

html[data-site-background-theme="slate_ice"] .plans-section::after {
    background: rgba(148, 163, 184, 0.12);
}

html[data-site-background-theme="slate_ice"] .cta-section {
    background-color: #edf2f8;
}

html[data-site-background-theme="slate_ice"] .faq-section {
    background-color: #eff3f9;
}

html[data-site-background-theme="slate_ice"] .ticker-section {
    background: #24364e;
}

html[data-site-background-theme="forest_mist"] body {
    background-color: #f4fbf6;
}

html[data-site-background-theme="forest_mist"] .hero {
    background: linear-gradient(180deg, #ecf9ef 0%, #ffffff 100%);
}

html[data-site-background-theme="forest_mist"] .hero-bg {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.13) 0%, rgba(255, 255, 255, 0) 70%);
}

html[data-site-background-theme="forest_mist"] .trust-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(34, 197, 94, 0.14), transparent 34%),
        radial-gradient(circle at 85% 84%, rgba(16, 185, 129, 0.12), transparent 30%),
        linear-gradient(180deg, #fcfffd 0%, #ebf8ef 100%);
}

html[data-site-background-theme="forest_mist"] .features {
    background-color: #fcfffd;
}

html[data-site-background-theme="forest_mist"] .app-section {
    background: linear-gradient(180deg, #fcfffd 0%, #e9f8ee 100%);
}

html[data-site-background-theme="forest_mist"] .simulator-section {
    background: linear-gradient(180deg, #e8f7ec 0%, #ffffff 100%);
}

html[data-site-background-theme="forest_mist"] .plans-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(34, 197, 94, 0.14), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(16, 185, 129, 0.14), transparent 24%),
        linear-gradient(180deg, #e8f7ec 0%, #f3fbf5 40%, #ffffff 100%);
}

html[data-site-background-theme="forest_mist"] .plans-section::before {
    background: rgba(34, 197, 94, 0.12);
}

html[data-site-background-theme="forest_mist"] .plans-section::after {
    background: rgba(16, 185, 129, 0.12);
}

html[data-site-background-theme="forest_mist"] .cta-section {
    background-color: #e9f7ed;
}

html[data-site-background-theme="forest_mist"] .faq-section {
    background-color: #edf9f0;
}

html[data-site-background-theme="forest_mist"] .ticker-section {
    background: #14532d;
}

html[data-site-block-theme="glass_cards"] .feature-card,
html[data-site-block-theme="glass_cards"] .trust-point,
html[data-site-block-theme="glass_cards"] .faq-item {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(8, 73, 135, 0.16);
    box-shadow: 0 20px 38px rgba(8, 28, 107, 0.12);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

html[data-site-block-theme="glass_cards"] .feature-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

html[data-site-block-theme="outline_cards"] .feature-card,
html[data-site-block-theme="outline_cards"] .trust-point,
html[data-site-block-theme="outline_cards"] .faq-item {
    background: #ffffff;
    border: 2px solid rgba(8, 73, 135, 0.2);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

html[data-site-block-theme="outline_cards"] .feature-card:hover {
    box-shadow: 0 20px 34px rgba(8, 73, 135, 0.16);
}

html[data-site-block-theme="outline_cards"] .feature-card::before {
    height: 5px;
}

html[data-site-block-theme="vivid_cards"] .feature-card,
html[data-site-block-theme="vivid_cards"] .trust-point,
html[data-site-block-theme="vivid_cards"] .faq-item {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 255, 0.96)),
        radial-gradient(circle at top right, rgba(35, 184, 255, 0.16), transparent 36%);
    border-color: rgba(13, 70, 216, 0.22);
    box-shadow: 0 16px 30px rgba(13, 70, 216, 0.12);
}

html[data-site-block-theme="vivid_cards"] .feature-card::before {
    background: linear-gradient(90deg, rgba(13, 70, 216, 0.95), rgba(35, 184, 255, 0.95), rgba(88, 185, 14, 0.95));
}

html[data-site-block-theme="vivid_cards"] .feature-card:hover {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 255, 0.98)),
        radial-gradient(circle at top right, rgba(35, 184, 255, 0.2), transparent 36%);
}

html[data-site-block-theme="minimal_cards"] .feature-card,
html[data-site-block-theme="minimal_cards"] .trust-point,
html[data-site-block-theme="minimal_cards"] .faq-item {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.24);
    box-shadow: none;
}

html[data-site-block-theme="minimal_cards"] .feature-card:hover {
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

html[data-site-block-theme="minimal_cards"] .feature-card::before {
    opacity: 0.7;
}

html[data-site-block-theme="lifted_cards"] .feature-card,
html[data-site-block-theme="lifted_cards"] .trust-point,
html[data-site-block-theme="lifted_cards"] .faq-item {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

html[data-site-block-theme="lifted_cards"] .feature-card:hover {
    box-shadow: 0 28px 44px rgba(15, 23, 42, 0.18);
}

html[data-site-navbar-theme="strong_blue"] {
    --navbar-bg: linear-gradient(115deg, #0b3dbf, #0d46d8 52%, #1f7af2);
    --navbar-bg-scrolled: linear-gradient(115deg, #08339f, #0b3dbf 52%, #1b66cc);
    --navbar-border: rgba(147, 197, 253, 0.45);
    --navbar-link-color: #f8fbff;
    --navbar-link-hover: #c9ff45;
    --navbar-burger: #ffffff;
    --navbar-mobile-bg: rgba(7, 29, 96, 0.96);
    --navbar-mobile-border: rgba(147, 197, 253, 0.34);
    --navbar-restricted-bg: rgba(255, 255, 255, 0.18);
    --navbar-restricted-border: rgba(255, 255, 255, 0.32);
    --navbar-restricted-color: #f8fbff;
    --navbar-track-bg: linear-gradient(135deg, #bef264, #84cc16);
    --navbar-track-color: #133511;
}

html[data-site-navbar-theme="strong_navy"] {
    --navbar-bg: linear-gradient(115deg, #0f172a, #13294b 52%, #1d4f91);
    --navbar-bg-scrolled: linear-gradient(115deg, #0b1222, #10253f 52%, #184178);
    --navbar-border: rgba(125, 211, 252, 0.38);
    --navbar-link-color: #eff6ff;
    --navbar-link-hover: #67e8f9;
    --navbar-burger: #eff6ff;
    --navbar-mobile-bg: rgba(8, 15, 32, 0.96);
    --navbar-mobile-border: rgba(125, 211, 252, 0.24);
    --navbar-restricted-bg: rgba(255, 255, 255, 0.16);
    --navbar-restricted-border: rgba(255, 255, 255, 0.3);
    --navbar-restricted-color: #f8fafc;
    --navbar-track-bg: linear-gradient(135deg, #22d3ee, #0ea5e9);
    --navbar-track-color: #082f49;
}

html[data-site-navbar-theme="strong_green"] {
    --navbar-bg: linear-gradient(115deg, #14532d, #15803d 52%, #16a34a);
    --navbar-bg-scrolled: linear-gradient(115deg, #0f3f24, #136a33 52%, #15803d);
    --navbar-border: rgba(134, 239, 172, 0.4);
    --navbar-link-color: #f0fdf4;
    --navbar-link-hover: #fef08a;
    --navbar-burger: #f0fdf4;
    --navbar-mobile-bg: rgba(10, 56, 31, 0.96);
    --navbar-mobile-border: rgba(134, 239, 172, 0.3);
    --navbar-restricted-bg: rgba(255, 255, 255, 0.16);
    --navbar-restricted-border: rgba(255, 255, 255, 0.3);
    --navbar-restricted-color: #f0fdf4;
    --navbar-track-bg: linear-gradient(135deg, #facc15, #eab308);
    --navbar-track-color: #3f2a06;
}

html[data-site-navbar-theme="strong_sunset"] {
    --navbar-bg: linear-gradient(115deg, #9a3412, #c2410c 52%, #ea580c);
    --navbar-bg-scrolled: linear-gradient(115deg, #7c2d12, #a33a10 52%, #c2410c);
    --navbar-border: rgba(254, 215, 170, 0.42);
    --navbar-link-color: #fff7ed;
    --navbar-link-hover: #fde047;
    --navbar-burger: #fff7ed;
    --navbar-mobile-bg: rgba(110, 36, 10, 0.96);
    --navbar-mobile-border: rgba(254, 215, 170, 0.32);
    --navbar-restricted-bg: rgba(255, 255, 255, 0.16);
    --navbar-restricted-border: rgba(255, 255, 255, 0.3);
    --navbar-restricted-color: #fff7ed;
    --navbar-track-bg: linear-gradient(135deg, #fde047, #facc15);
    --navbar-track-color: #4a2606;
}

html[data-site-navbar-theme="mid_cobalt"] {
    --navbar-bg: linear-gradient(115deg, #1d4ed8, #2563eb 52%, #3b82f6);
    --navbar-bg-scrolled: linear-gradient(115deg, #1e40af, #1d4ed8 52%, #2563eb);
    --navbar-border: rgba(191, 219, 254, 0.42);
    --navbar-link-color: #eff6ff;
    --navbar-link-hover: #fde047;
    --navbar-burger: #eff6ff;
    --navbar-mobile-bg: rgba(23, 58, 140, 0.96);
    --navbar-mobile-border: rgba(191, 219, 254, 0.32);
    --navbar-restricted-bg: rgba(255, 255, 255, 0.2);
    --navbar-restricted-border: rgba(255, 255, 255, 0.34);
    --navbar-restricted-color: #f8fbff;
    --navbar-track-bg: linear-gradient(135deg, #65a30d, #22c55e);
    --navbar-track-color: #103018;
}

html[data-site-navbar-theme="mid_teal"] {
    --navbar-bg: linear-gradient(115deg, #0f766e, #0d9488 52%, #14b8a6);
    --navbar-bg-scrolled: linear-gradient(115deg, #115e59, #0f766e 52%, #0d9488);
    --navbar-border: rgba(153, 246, 228, 0.4);
    --navbar-link-color: #ecfeff;
    --navbar-link-hover: #fde68a;
    --navbar-burger: #ecfeff;
    --navbar-mobile-bg: rgba(10, 72, 67, 0.96);
    --navbar-mobile-border: rgba(153, 246, 228, 0.3);
    --navbar-restricted-bg: rgba(255, 255, 255, 0.19);
    --navbar-restricted-border: rgba(255, 255, 255, 0.33);
    --navbar-restricted-color: #f0fdfa;
    --navbar-track-bg: linear-gradient(135deg, #a3e635, #22c55e);
    --navbar-track-color: #163414;
}

html[data-site-navbar-theme="mid_amber"] {
    --navbar-bg: linear-gradient(115deg, #c2410c, #d97706 52%, #f59e0b);
    --navbar-bg-scrolled: linear-gradient(115deg, #9a3412, #b45309 52%, #d97706);
    --navbar-border: rgba(254, 215, 170, 0.42);
    --navbar-link-color: #fff7ed;
    --navbar-link-hover: #fef08a;
    --navbar-burger: #fff7ed;
    --navbar-mobile-bg: rgba(124, 45, 18, 0.96);
    --navbar-mobile-border: rgba(254, 215, 170, 0.3);
    --navbar-restricted-bg: rgba(255, 255, 255, 0.18);
    --navbar-restricted-border: rgba(255, 255, 255, 0.32);
    --navbar-restricted-color: #fff7ed;
    --navbar-track-bg: linear-gradient(135deg, #0f766e, #14b8a6);
    --navbar-track-color: #ecfeff;
}

html[data-site-navbar-theme="light_platinum"] {
    --navbar-bg: linear-gradient(115deg, #ffffff, #f8fbff 52%, #edf3ff);
    --navbar-bg-scrolled: linear-gradient(115deg, #fbfdff, #f2f7ff 52%, #e8f0ff);
    --navbar-border: rgba(30, 58, 138, 0.18);
    --navbar-link-color: #0f2d5c;
    --navbar-link-hover: #1d4ed8;
    --navbar-burger: #0f2d5c;
    --navbar-mobile-bg: rgba(255, 255, 255, 0.98);
    --navbar-mobile-border: rgba(30, 58, 138, 0.18);
    --navbar-restricted-bg: linear-gradient(135deg, #1e3a8a, #1d4ed8);
    --navbar-restricted-border: transparent;
    --navbar-restricted-color: #eff6ff;
    --navbar-track-bg: linear-gradient(135deg, #65a30d, #84cc16);
    --navbar-track-color: #f7fee7;
}

html[data-site-navbar-theme="light_ice"] {
    --navbar-bg: linear-gradient(115deg, #f6fbff, #eef7ff 52%, #e3f1ff);
    --navbar-bg-scrolled: linear-gradient(115deg, #f1f8ff, #e8f3ff 52%, #dcecff);
    --navbar-border: rgba(2, 132, 199, 0.2);
    --navbar-link-color: #0b3a53;
    --navbar-link-hover: #0369a1;
    --navbar-burger: #0b3a53;
    --navbar-mobile-bg: rgba(246, 251, 255, 0.98);
    --navbar-mobile-border: rgba(2, 132, 199, 0.2);
    --navbar-restricted-bg: linear-gradient(135deg, #0f4c81, #0284c7);
    --navbar-restricted-border: transparent;
    --navbar-restricted-color: #eff8ff;
    --navbar-track-bg: linear-gradient(135deg, #0f766e, #14b8a6);
    --navbar-track-color: #f0fdfa;
}

html[data-site-navbar-theme="light_sand"] {
    --navbar-bg: linear-gradient(115deg, #fffaf2, #fff3e3 52%, #ffecd1);
    --navbar-bg-scrolled: linear-gradient(115deg, #fff6ec, #ffeedc 52%, #ffe6c8);
    --navbar-border: rgba(154, 52, 18, 0.18);
    --navbar-link-color: #6b2f12;
    --navbar-link-hover: #c2410c;
    --navbar-burger: #6b2f12;
    --navbar-mobile-bg: rgba(255, 249, 239, 0.98);
    --navbar-mobile-border: rgba(154, 52, 18, 0.2);
    --navbar-restricted-bg: linear-gradient(135deg, #9a3412, #ea580c);
    --navbar-restricted-border: transparent;
    --navbar-restricted-color: #fff7ed;
    --navbar-track-bg: linear-gradient(135deg, #15803d, #22c55e);
    --navbar-track-color: #f0fdf4;
}

html[data-site-navbar-theme] .navbar {
    background: var(--navbar-bg);
    border-bottom: 1px solid var(--navbar-border);
    box-shadow: 0 16px 26px rgba(15, 23, 42, 0.18);
}

html[data-site-navbar-theme] .navbar.scrolled {
    background: var(--navbar-bg-scrolled);
}

html[data-site-navbar-theme] .nav-links a {
    color: var(--navbar-link-color);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

html[data-site-navbar-theme] .nav-links a:hover {
    color: var(--navbar-link-hover);
}

html[data-site-navbar-theme] .mobile-menu-btn span {
    background-color: var(--navbar-burger);
}

html[data-site-navbar-theme] .mobile-menu {
    background: var(--navbar-mobile-bg);
    border-color: var(--navbar-mobile-border);
}

html[data-site-navbar-theme] .mobile-menu a {
    color: var(--navbar-link-color);
}

html[data-site-navbar-theme] .nav-actions .btn-restricted,
html[data-site-navbar-theme] .mobile-menu .btn-restricted {
    background: var(--navbar-restricted-bg);
    border: 1px solid var(--navbar-restricted-border);
    color: var(--navbar-restricted-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

html[data-site-navbar-theme] .nav-actions .tracking-entry-link,
html[data-site-navbar-theme] .mobile-menu .tracking-entry-link {
    background: var(--navbar-track-bg);
    color: var(--navbar-track-color);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

html[data-site-navbar-theme] .nav-actions .tracking-entry-link:hover,
html[data-site-navbar-theme] .mobile-menu .tracking-entry-link:hover {
    color: var(--navbar-track-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-blue-dark);
    line-height: 1.2;
}

.text-center { text-align: center; }

/* Layout & Containers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    border: none;
    text-align: center;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-hover));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(214, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 107, 0, 0.4);
    color: var(--white);
}

.btn-simulator {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(22, 163, 74, 0.35);
    animation: pulse-glow 2.4s ease-in-out infinite;
}

.btn-simulator:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.45);
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.whatsapp-icon {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 22px rgba(22, 163, 74, 0.35);
    }
    50% {
        box-shadow: 0 10px 32px rgba(22, 163, 74, 0.55);
    }
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-restricted {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    color: var(--white);
    box-shadow: 0 10px 24px rgba(8, 28, 107, 0.22);
    white-space: nowrap;
}

.btn-restricted:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(8, 28, 107, 0.3);
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 86px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 208px;
}

.logo img {
    display: block;
    width: auto;
    height: 56px;
    max-width: min(280px, 26vw);
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-actions .tracking-entry-link {
    order: 1;
    white-space: nowrap;
}

.nav-actions .btn-restricted {
    order: 2;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-btn.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(30,115,190,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(30, 115, 190, 0.1);
    color: var(--light-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(30, 115, 190, 0.2);
}

.badge-warm {
    background-color: rgba(214, 107, 0, 0.12);
    color: var(--primary-orange);
    border-color: rgba(214, 107, 0, 0.18);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    width: 100%;
}

.hero-mockup {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
}

.hero-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.metric-card {
    bottom: 10%;
    left: -10%;
}

.alert-card {
    top: 20%;
    right: -5%;
    font-weight: 600;
    color: var(--text-main);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #48bb78;
    box-shadow: 0 0 10px rgba(72, 187, 120, 0.5);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2.5s; }

/* Trust Section */
.trust-section {
    padding: 2rem 0 6rem;
    background:
        radial-gradient(circle at 15% 10%, rgba(30, 115, 190, 0.08), transparent 32%),
        radial-gradient(circle at 85% 85%, rgba(214, 107, 0, 0.09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.trust-container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.trust-copy h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin: 1rem 0 1rem;
}

.trust-copy > p {
    color: var(--text-muted);
    font-size: 1.08rem;
    max-width: 620px;
    margin-bottom: 1.6rem;
}

.trust-points {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.trust-point {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 73, 135, 0.1);
    border-radius: 20px;
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow-sm);
}

.trust-point strong {
    display: block;
    color: var(--primary-blue-dark);
    margin-bottom: 0.35rem;
}

.trust-point span {
    color: var(--text-muted);
}

.trust-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-visual {
    position: relative;
    padding: 0.55rem;
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 247, 255, 0.88));
    box-shadow: 0 24px 44px -34px rgba(10, 32, 56, 0.34);
}

.trust-visual::before {
    content: "";
    position: absolute;
    inset: 10% 6% auto auto;
    width: 72%;
    height: 72%;
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.14), rgba(214, 107, 0, 0.08));
    border-radius: 32px;
    filter: blur(26px);
    z-index: 0;
}

.trust-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 11;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
    box-shadow: 0 28px 48px -30px rgba(10, 32, 56, 0.38);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.trust-visual:hover img {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 34px 54px -32px rgba(10, 32, 56, 0.42);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(30, 115, 190, 0.95), rgba(214, 107, 0, 0.95));
    transform: scaleX(0.45);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-icon::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    top: -44px;
    left: -38px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    pointer-events: none;
}

.bg-blue {
    background: linear-gradient(145deg, #1e73be, #0f4f8a);
    color: #ffffff;
}

.bg-orange {
    background: linear-gradient(145deg, #e88a26, #c45f00);
    color: #ffffff;
}

.feature-icon-svg {
    width: 31px;
    height: 31px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: translateY(-2px) scale(1.06) rotate(-4deg);
    box-shadow: 0 18px 26px -14px rgba(0, 0, 0, 0.45);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* App Section */
.app-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #f1f7ff 100%);
}

.app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.app-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.app-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.app-benefits li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.app-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-preview img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* App Download Modal */
.app-download-modal {
    position: fixed;
    inset: 0;
    z-index: 1190;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.app-download-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.app-download-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 15, 32, 0.58);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.app-download-panel {
    position: relative;
    z-index: 1;
    width: min(960px, calc(100% - 2rem));
    background: #ffffff;
    border: 5px solid #26496b;
    border-radius: 56px;
    padding: 2.5rem 2.2rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.app-download-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 999px;
    background: rgba(38, 73, 107, 0.12);
    color: #26496b;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
}

.app-download-panel h3 {
    font-size: clamp(2rem, 4vw, 4rem);
    color: #000000;
    margin-bottom: 1rem;
}

.app-download-panel p {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

.app-download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    max-width: 780px;
    margin: 0 auto;
}

.store-card {
    text-decoration: none;
    color: #111827;
    border-radius: 24px;
    padding: 1rem;
    transition: var(--transition);
}

.store-card:hover {
    transform: translateY(-3px);
    background: #f5f9ff;
}

.store-card img {
    width: 126px;
    height: 126px;
    object-fit: contain;
    display: block;
    margin: 0 auto 0.85rem;
}

.store-card span {
    display: block;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 700;
    color: #0b1726;
}

.store-card small {
    display: block;
    margin-top: 0.35rem;
    color: #64748b;
    font-size: 1rem;
}

.app-download-note {
    margin-top: 1.6rem;
    margin-bottom: 0;
}

.app-tutorial-modal {
    position: fixed;
    inset: 0;
    z-index: 1195;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.app-tutorial-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.app-tutorial-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 15, 32, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.app-tutorial-panel {
    position: relative;
    z-index: 1;
    width: min(1040px, calc(100% - 2rem));
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid rgba(0, 73, 135, 0.12);
    border-radius: 36px;
    padding: 1.6rem;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.3);
}

.app-tutorial-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.4rem;
    height: 2.4rem;
    border: none;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.app-tutorial-close:hover {
    background: rgba(220, 38, 38, 0.18);
    color: #b91c1c;
    transform: scale(1.04);
}

.app-tutorial-copy {
    max-width: 760px;
    margin-bottom: 1.1rem;
}

.app-tutorial-copy h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.app-tutorial-copy p,
.app-tutorial-note {
    color: var(--text-muted);
    margin: 0;
}

.app-tutorial-video-shell {
    border-radius: 28px;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(0, 73, 135, 0.08), rgba(214, 107, 0, 0.08));
    border: 1px solid rgba(0, 73, 135, 0.08);
}

.app-tutorial-video-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 22px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
}

.app-tutorial-video-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.app-tutorial-note {
    margin-top: 1rem;
    font-size: 0.94rem;
    line-height: 1.6;
}

/* Tracking Modal */
/* Simulator Section */
.simulator-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f2f8ff 0%, #ffffff 100%);
}

.simulator-anchor {
    height: 0;
}

.simulator-teaser {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid rgba(0, 73, 135, 0.14);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 0.6rem;
}

.simulator-teaser strong {
    color: var(--primary-blue-dark);
    font-size: 1.15rem;
}

.simulator-teaser span,
.simulator-teaser p {
    color: var(--text-muted);
}

.simulator-teaser .btn {
    margin-top: 0.6rem;
    justify-self: center;
}

.simulator-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.simulator-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.simulator-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 15, 32, 0.62);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.simulator-modal-panel {
    position: relative;
    z-index: 1;
    width: min(920px, calc(100% - 2rem));
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

.simulator-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.2rem;
    height: 2.2rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(0, 73, 135, 0.12);
    color: var(--primary-blue-dark);
    font-size: 1.35rem;
    line-height: 1;
    z-index: 3;
}

.simulator-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 73, 135, 0.08);
}

.lead-form h3,
.simulator-form h3,
.simulator-result h3 {
    font-size: 1.7rem;
    margin-bottom: 1.25rem;
}

.simulator-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.simulator-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.field {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.field span {
    font-weight: 600;
    color: var(--primary-blue-dark);
}

.field input {
    width: 100%;
    border: 1px solid rgba(0, 73, 135, 0.2);
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    font-size: 1rem;
    color: var(--text-main);
    background: #fbfdff;
}

.field input:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.15);
}

.field-hint {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.field.is-invalid input {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
    background: #fff5f5 !important;
}

.field.is-invalid .field-hint {
    color: #b91c1c;
    font-weight: 600;
}

.simulator-form.is-hidden,
.simulator-result.is-hidden,
.lead-form.is-hidden {
    display: none;
}

.service-list {
    display: grid;
    gap: 1rem;
    margin: 1.6rem 0 1.8rem;
}

.service-mandatory {
    border-color: rgba(0, 73, 135, 0.22);
    background: linear-gradient(180deg, #f3f9ff 0%, #f9fbff 100%);
}

.service-item {
    border: 1px solid rgba(0, 73, 135, 0.14);
    border-radius: 16px;
    padding: 1rem;
    background: #f9fbff;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.service-name {
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.service-name small {
    color: var(--primary-orange);
    font-weight: 700;
}

.service-check {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
}

.service-check input {
    margin-top: 0.2rem;
}

.qty-field {
    display: grid;
    gap: 0.4rem;
    margin-top: 0.85rem;
    max-width: 280px;
}

.qty-field span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.qty-field input {
    width: 100%;
    border: 1px solid rgba(0, 73, 135, 0.2);
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
}

.qty-field input:disabled {
    background: #eef2f7;
    color: #7b8794;
}

.optional-carousel {
    margin-bottom: 1.8rem;
}

.optional-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.optional-carousel-header h4 {
    font-size: 1.2rem;
}

.optional-carousel-controls {
    display: flex;
    gap: 0.45rem;
}

.optional-carousel-controls button {
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid rgba(0, 73, 135, 0.2);
    border-radius: 999px;
    background: #f4f9ff;
    color: var(--primary-blue-dark);
    cursor: pointer;
    font-size: 1.3rem;
}

.optional-carousel-controls button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.optional-carousel-viewport {
    overflow: hidden;
    border-radius: 18px;
}

.optional-carousel-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.optional-slide {
    min-width: 100%;
}

.optional-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.carousel-dot {
    width: 0.68rem;
    height: 0.68rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(0, 73, 135, 0.22);
}

.carousel-dot.is-active {
    background: var(--primary-orange);
}

#lead-summary {
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.result-breakdown {
    list-style: none;
    margin: 1rem 0 1.4rem;
    display: grid;
    gap: 0.75rem;
}

.result-breakdown li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px dashed rgba(0, 73, 135, 0.2);
    padding-bottom: 0.55rem;
}

.result-total {
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
}

.result-total strong {
    color: var(--primary-orange);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.cta-container {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Google Reviews Proof */
.google-reviews-proof {
    padding: 0.5rem 0 2rem;
    background: transparent;
}

.google-reviews-proof-container {
    display: flex;
    justify-content: center;
}

.google-reviews-proof-card {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 0.85rem;
}

.google-reviews-widget {
    width: min(640px, 100%);
    max-width: 640px;
    position: relative;
    justify-items: center;
    text-align: center;
    gap: 0.65rem;
    padding: 1.35rem 1.35rem 1.25rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 73, 135, 0.2);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.94)),
        linear-gradient(135deg, rgba(0, 73, 135, 0.09), rgba(214, 107, 0, 0.1));
    box-shadow: 0 16px 34px rgba(0, 21, 39, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    overflow: hidden;
    isolation: isolate;
}

.google-reviews-widget::before {
    content: '';
    position: absolute;
    top: -78px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 73, 135, 0.2) 0%, rgba(0, 73, 135, 0) 70%);
    z-index: -1;
}

.google-reviews-widget::after {
    content: '';
    position: absolute;
    right: -55px;
    bottom: -88px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 173, 62, 0.22) 0%, rgba(242, 173, 62, 0) 68%);
    z-index: -1;
}

.google-reviews-topline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.google-reviews-kicker {
    margin: 0;
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    background: rgba(0, 73, 135, 0.12);
    color: var(--primary-blue-dark);
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
}

.google-reviews-badge {
    margin: 0;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 73, 135, 0.2);
    background: rgba(255, 255, 255, 0.75);
    color: rgba(3, 41, 78, 0.88);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.google-reviews-score-row {
    display: grid;
    justify-items: center;
    gap: 0.24rem;
}

.google-reviews-score {
    margin: 0.12rem 0 0;
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    color: var(--primary-blue-dark);
}

.google-reviews-score span {
    font-size: clamp(2rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1;
}

.google-reviews-score small {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.72;
}

.google-reviews-stars {
    position: relative;
    display: inline-block;
    line-height: 1;
    letter-spacing: 0.2em;
    font-size: 1rem;
}

.google-reviews-stars-base {
    color: rgba(0, 73, 135, 0.2);
}

.google-reviews-stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    overflow: hidden;
    white-space: nowrap;
    color: #f3b400;
}

.google-reviews-count {
    margin: 0.08rem 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.google-reviews-summary {
    margin: 0;
    max-width: 42ch;
    font-size: 0.98rem;
    color: var(--text-muted);
}

.google-reviews-meta {
    display: none;
}

.google-reviews-meta-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.34rem 0.64rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 73, 135, 0.14);
    background: rgba(255, 255, 255, 0.7);
    color: rgba(3, 41, 78, 0.85);
    font-size: 0.75rem;
    font-weight: 700;
}

.google-reviews-carousel {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 22px;
    border: 1px solid rgba(0, 73, 135, 0.18);
    background: linear-gradient(135deg, rgba(0, 73, 135, 0.08), rgba(214, 107, 0, 0.09));
    box-shadow: 0 16px 36px rgba(0, 21, 39, 0.12);
    padding: 0.6rem;
}

.google-reviews-carousel-viewport {
    overflow: visible;
}

.google-reviews-carousel-track {
    position: relative;
    height: clamp(130px, 22vw, 190px);
}

.google-reviews-carousel-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(170px, 30vw, 250px);
    height: clamp(110px, 18vw, 165px);
    margin: 0;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
    transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
    filter: saturate(0.75);
}

.google-reviews-carousel-slide.is-active {
    opacity: 1;
    z-index: 3;
    transform: translate(-50%, -50%) scale(1);
    filter: none;
}

.google-reviews-carousel-slide.is-prev {
    opacity: 0.72;
    z-index: 2;
    transform: translate(calc(-50% - 38%), -50%) scale(0.86);
}

.google-reviews-carousel-slide.is-next {
    opacity: 0.72;
    z-index: 2;
    transform: translate(calc(-50% + 38%), -50%) scale(0.86);
}

.google-reviews-carousel-slide.is-prev img,
.google-reviews-carousel-slide.is-next img {
    filter: brightness(0.95);
    margin: 0;
}

.google-reviews-carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f7fafc;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(8, 18, 36, 0.24);
}

.google-reviews-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(7, 19, 39, 0.78);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.google-reviews-carousel-btn:hover {
    background: rgba(7, 19, 39, 0.92);
}

.google-reviews-carousel-btn:focus-visible {
    outline: 2px solid rgba(35, 184, 255, 0.75);
    outline-offset: 2px;
}

.google-reviews-carousel-btn.prev {
    left: 10px;
}

.google-reviews-carousel-btn.next {
    right: 10px;
}

.google-reviews-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.google-reviews-carousel-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(7, 19, 39, 0.28);
    cursor: pointer;
    transition: var(--transition);
}

.google-reviews-carousel-dot.is-active {
    transform: scale(1.1);
    background: var(--primary-blue);
}

.google-reviews-link {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    padding: 0.82rem 1.24rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 73, 135, 0.24);
    color: var(--primary-blue-dark);
    text-decoration: none;
    font-weight: 800;
    background: linear-gradient(130deg, #ffffff 0%, #eef5ff 100%);
    box-shadow: 0 10px 22px rgba(0, 35, 76, 0.14);
    transition: var(--transition);
}

.google-reviews-link:hover {
    transform: translateY(-2px) scale(1.01);
    border-color: rgba(0, 73, 135, 0.45);
    box-shadow: 0 14px 25px rgba(0, 35, 76, 0.2);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    width: auto;
    height: 56px;
    max-width: 280px;
    margin-bottom: 1rem;
    padding: 0.55rem 0.95rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 246, 240, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: 0 8px 18px rgba(2, 18, 10, 0.24);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    filter: saturate(1.16) brightness(1.04) contrast(1.04);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary-orange);
}

.footer-social {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}

.footer-social-center {
    display: flex;
    justify-content: center;
    margin-top: 0.8rem;
    margin-bottom: 2rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.24);
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 { font-size: 2.5rem; }
    
    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-card { display: none; }

    .app-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-benefits li {
        text-align: left;
    }

    .app-buttons {
        justify-content: center;
    }

    .trust-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trust-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-actions {
        justify-content: center;
    }

    .trust-point {
        text-align: left;
    }

    .simulator-grid {
        grid-template-columns: 1fr 1fr;
    }

    .simulator-modal-panel {
        width: min(860px, calc(100% - 1.4rem));
    }

    .app-download-panel {
        border-radius: 44px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .google-reviews-proof {
        padding: 0.35rem 0 1.4rem;
    }
    .google-reviews-widget {
        border-radius: 16px;
        padding: 1rem 0.95rem;
    }
    .google-reviews-topline {
        gap: 0.4rem;
    }
    .google-reviews-badge,
    .google-reviews-kicker,
    .google-reviews-meta-item {
        font-size: 0.7rem;
    }
    .google-reviews-score span {
        font-size: 2rem;
    }
    .google-reviews-stars {
        font-size: 0.92rem;
    }
    .google-reviews-summary {
        font-size: 0.92rem;
    }
    .google-reviews-carousel {
        border-radius: 16px;
        padding: 0.35rem;
    }
    .google-reviews-carousel-track {
        height: clamp(110px, 38vw, 145px);
    }
    .google-reviews-carousel-slide {
        width: clamp(140px, 58vw, 200px);
        height: clamp(92px, 34vw, 132px);
    }
    .google-reviews-carousel-slide.is-prev {
        transform: translate(calc(-50% - 30%), -50%) scale(0.86);
    }
    .google-reviews-carousel-slide.is-next {
        transform: translate(calc(-50% + 30%), -50%) scale(0.86);
    }
    .google-reviews-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    .google-reviews-carousel-btn.prev {
        left: 8px;
    }
    .google-reviews-carousel-btn.next {
        right: 8px;
    }
    .google-reviews-link {
        width: 100%;
        text-align: center;
        min-width: 0;
    }
    .logo {
        min-width: 0;
        max-width: calc(100% - 76px);
    }
    .logo img {
        height: 46px;
        max-width: 196px;
    }
    .mobile-menu-btn { 
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        position: absolute;
        top: 90px;
        left: 1.5rem;
        right: 1.5rem;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 16px;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: var(--transition);
        z-index: 1001;
    }

    .mobile-menu .tracking-entry-link {
        order: 1;
    }

    .mobile-menu .btn-restricted {
        order: 2;
    }

    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu a {
        text-decoration: none;
        color: var(--text-main);
        font-weight: 600;
    }

    .mobile-menu .btn {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .app-buttons {
        flex-direction: column;
    }

    .trust-actions {
        flex-direction: column;
    }

    .app-download-panel {
        width: calc(100% - 1rem);
        padding: 2rem 1.2rem 1.4rem;
        border-width: 4px;
        border-radius: 30px;
    }

    .app-tutorial-panel {
        width: calc(100% - 1rem);
        padding: 1rem;
        border-radius: 24px;
    }

    .app-tutorial-copy {
        margin-bottom: 0.9rem;
        padding-right: 2.4rem;
    }

    .app-tutorial-video-shell {
        padding: 0.5rem;
        border-radius: 18px;
    }

    .app-download-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .store-card img {
        width: 96px;
        height: 96px;
        margin-bottom: 0.55rem;
    }

    .simulator-grid {
        grid-template-columns: 1fr;
    }

    .simulator-card {
        padding: 1.3rem;
    }

    .simulator-teaser {
        padding: 1.35rem;
    }

    .simulator-modal-panel {
        max-height: calc(100vh - 1rem);
    }

    .service-top {
        flex-direction: column;
    }

    .optional-carousel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .qty-field {
        max-width: 100%;
    }

    .result-breakdown li {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-container {
        padding: 2.5rem 1.5rem;
    }
}

/* --- New Features --- */
/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    min-height: 60px;
    padding: 0.8rem 1rem;
    background-color: #25d366;
    border-radius: 999px;
    z-index: 1000;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}
.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
}
.floating-whatsapp-label {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #128c7e;
    color: var(--white);
}
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Range Slider Customization */
.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}
.vehicle-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 5px;
    outline: none;
    accent-color: var(--primary-orange);
}
.vehicle-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-orange);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.1s;
}
.vehicle-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.vehicle-input-sync {
    max-width: 80px;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
}
.faq-item.is-open .faq-answer {
    padding-bottom: 1.25rem;
}

/* Infinite Ticker/Carousel */
.ticker-section {
    padding: 2.5rem 0;
    background: var(--primary-blue-dark);
    overflow: hidden;
    color: var(--white);
}
.ticker-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-track {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 45s linear infinite;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0 2.5rem;
}
.ticker-icon {
    font-size: 1.4rem;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        min-height: 52px;
        padding: 0.7rem 0.9rem;
        gap: 0.55rem;
    }
    .floating-whatsapp svg {
        width: 30px;
        height: 30px;
    }
    .floating-whatsapp-label {
        font-size: 0.92rem;
    }
}

/* SaaS Combo Pricing Section */
.simulator-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f2f8ff 0%, #ffffff 100%);
}

.plans-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 14%, rgba(30, 115, 190, 0.14), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(214, 107, 0, 0.12), transparent 24%),
        linear-gradient(180deg, #edf6ff 0%, #f7fbff 40%, #ffffff 100%);
}

.plans-section::before,
.plans-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    pointer-events: none;
}

.plans-section::before {
    top: 7rem;
    left: -6rem;
    width: 16rem;
    height: 16rem;
    background: rgba(30, 115, 190, 0.1);
}

.plans-section::after {
    right: -4rem;
    bottom: 5rem;
    width: 14rem;
    height: 14rem;
    background: rgba(214, 107, 0, 0.12);
}

.pricing-showcase-head {
    max-width: 860px;
    margin: 0 auto 3rem;
}

.pricing-showcase-head .badge {
    margin-bottom: 1rem;
}

.plans-entry {
    max-width: 920px;
    margin: -0.35rem auto 4.2rem;
    position: relative;
    z-index: 1;
}

.plans-entry-btn {
    width: min(100%, 720px);
    padding: 1.15rem 2rem;
    border-radius: 20px;
    box-shadow: 0 18px 38px rgba(214, 107, 0, 0.2);
    line-height: 1.35;
}

.pricing-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2.5rem;
}

.pricing-copy,
.pricing-controls {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 73, 135, 0.08);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 22px 55px rgba(0, 73, 135, 0.08);
}

.pricing-copy {
    display: grid;
    gap: 1rem;
}

.pricing-copy h3 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: var(--primary-blue-dark);
}

.pricing-copy p {
    color: var(--text-muted);
    margin: 0;
}

.pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 73, 135, 0.08);
    color: var(--primary-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-copy-list,
.pricing-highlights,
.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-copy-list {
    display: grid;
    gap: 0.85rem;
}

.pricing-highlights {
    display: grid;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.pricing-copy-list li,
.pricing-highlights li,
.pricing-features li {
    position: relative;
    padding-left: 1.55rem;
    line-height: 1.55;
    color: #334155;
}

.pricing-copy-list li::before,
.pricing-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: var(--primary-orange);
}

.pricing-controls {
    display: grid;
    gap: 1.25rem;
}

.slider-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

.slider-display {
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.slider-display strong {
    font-size: 3.3rem;
    line-height: 1;
    color: var(--primary-blue-dark);
}

.slider-display span {
    color: var(--text-muted);
    font-weight: 600;
    padding-bottom: 0.3rem;
}

.slider-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.pricing-summary {
    display: grid;
    gap: 0.45rem;
    padding: 1.2rem 1.3rem;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    color: var(--white);
}

.pricing-summary-label {
    opacity: 0.85;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-summary strong {
    font-size: 2.15rem;
    line-height: 1.1;
}

.pricing-summary p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    --plan-accent-start: var(--primary-blue);
    --plan-accent-end: #0e7ac4;
    --plan-accent-shadow: 0 12px 28px rgba(0, 73, 135, 0.22);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.85), transparent 34%);
    z-index: -2;
}

.pricing-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    pointer-events: none;
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 34px 70px rgba(15, 23, 42, 0.14);
}

.pricing-card.is-popular {
    transform: translateY(-18px) scale(1.02);
    border-color: rgba(0, 73, 135, 0.18);
    box-shadow: 0 38px 80px rgba(0, 73, 135, 0.18);
}

.pricing-card-rail {
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1rem;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, var(--plan-accent-start), var(--plan-accent-end));
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.14);
    text-shadow: 0 1px 0 rgba(15, 23, 42, 0.14);
}

.pricing-card-rail.is-empty {
    color: transparent;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    box-shadow: inset 0 -1px 0 rgba(148, 163, 184, 0.14);
}

.pricing-card-shell {
    display: grid;
    gap: 1.15rem;
    padding: 1.65rem 1.45rem 1.55rem;
    height: 100%;
    grid-template-rows: minmax(8.9rem, auto) minmax(9.8rem, auto) auto minmax(3.4rem, auto) auto auto;
    align-content: start;
}

.pricing-card-top {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0.8rem;
    min-height: 8.9rem;
}

.pricing-card-copy {
    display: grid;
    gap: 0.45rem;
    align-content: start;
}

.pricing-discount-pill {
    justify-self: flex-end;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: rgba(214, 107, 0, 0.12);
    color: #b45309;
    border: 1px solid rgba(214, 107, 0, 0.14);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.pricing-discount-pill.is-empty {
    visibility: hidden;
}

.pricing-card h3 {
    font-size: clamp(1.7rem, 2vw, 2rem);
    letter-spacing: -0.04em;
    color: #0f172a;
}

.pricing-card p {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.58;
}

.pricing-price-block {
    display: grid;
    gap: 0.42rem;
    min-height: 9.8rem;
    align-content: start;
    padding: 1.1rem 1rem 1.2rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), transparent 28%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.pricing-price-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    min-height: 1.5rem;
}

.pricing-price-top.is-empty {
    visibility: hidden;
}

.pricing-old-price {
    color: #94a3b8;
    font-size: 0.94rem;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.pricing-discount-rate {
    display: inline-flex;
    align-items: center;
    padding: 0.26rem 0.58rem;
    border-radius: 999px;
    background: rgba(214, 107, 0, 0.12);
    color: #b45309;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-price-line {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.pricing-price-line strong {
    font-size: clamp(2.7rem, 3.8vw, 3.15rem);
    line-height: 1;
    letter-spacing: -0.06em;
    color: #0f172a;
}

.pricing-price-line span {
    color: #475569;
    font-weight: 700;
}

.pricing-price-meta {
    color: #64748b;
    font-size: 0.95rem;
}

.pricing-bonus {
    color: var(--primary-blue-dark);
    font-weight: 700;
    font-size: 0.98rem;
}

.pricing-card .btn {
    width: 100%;
    border-radius: 18px;
    padding: 1rem 1.15rem;
    min-height: 3.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.pricing-card .btn-plan {
    border: 1px solid var(--plan-accent-start);
    color: var(--plan-accent-start);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.pricing-card .btn-plan:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: linear-gradient(135deg, var(--plan-accent-start), var(--plan-accent-end));
    box-shadow: var(--plan-accent-shadow);
}

.pricing-card.is-popular .btn-plan {
    border-color: transparent;
    color: #ffffff;
    background: linear-gradient(135deg, var(--plan-accent-start), var(--plan-accent-end));
    box-shadow: var(--plan-accent-shadow);
}

.pricing-footnote {
    min-height: 3.2rem;
    font-size: 0.94rem;
    line-height: 1.6;
    color: #64748b;
}

.pricing-feature-group {
    display: grid;
    gap: 0.8rem;
    padding-top: 0.25rem;
}

.pricing-feature-title {
    margin: 0;
    font-weight: 800;
    color: #0f172a;
    font-size: 0.98rem;
}

.pricing-features {
    display: grid;
    gap: 0.8rem;
}

.pricing-card .pricing-highlights li {
    font-weight: 600;
}

.pricing-card .pricing-highlights li::before {
    background: var(--plan-accent-start);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.92);
}

.pricing-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: -0.03rem;
    color: var(--plan-accent-start);
    font-weight: 900;
}

.pricing-empty {
    grid-column: 1 / -1;
    padding: 2.4rem;
    border-radius: 26px;
    border: 1px dashed rgba(0, 73, 135, 0.24);
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    color: var(--text-muted);
}

.plans-inline-note-slot {
    max-width: 1080px;
    margin: 2rem auto 0;
    position: relative;
    z-index: 1;
}

.plans-inline-note {
    display: grid;
    gap: 0.6rem;
    padding: 1.15rem 1.25rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 73, 135, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.92)),
        radial-gradient(circle at top right, rgba(214, 107, 0, 0.08), transparent 34%);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.plans-inline-note-label {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.8rem;
    border-radius: 999px;
    background: rgba(214, 107, 0, 0.1);
    color: #b45309;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plans-inline-note p {
    margin: 0;
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
}

.pricing-card.theme-brand {
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    --plan-accent-start: var(--primary-blue);
    --plan-accent-end: #0e7ac4;
    --plan-accent-shadow: 0 12px 28px rgba(0, 73, 135, 0.22);
    border-color: rgba(0, 73, 135, 0.16);
}

.pricing-card.theme-sky {
    background: linear-gradient(180deg, #f7fbff, #eef7ff);
    --plan-accent-start: #1e73be;
    --plan-accent-end: #60a5fa;
    --plan-accent-shadow: 0 12px 28px rgba(30, 115, 190, 0.22);
    border-color: rgba(14, 122, 196, 0.18);
}

.pricing-card.theme-slate {
    background: linear-gradient(180deg, #0f172a, #111c33);
    --plan-accent-start: #0f172a;
    --plan-accent-end: #1e293b;
    --plan-accent-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
    border-color: rgba(15, 23, 42, 0.45);
}

.pricing-card.theme-slate::before {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(17, 28, 51, 0.96)),
        radial-gradient(circle at top right, rgba(71, 85, 105, 0.34), transparent 34%);
}

.pricing-card.accent-orange {
    --plan-accent-start: #d66b00;
    --plan-accent-end: #ff8c00;
    --plan-accent-shadow: 0 12px 28px rgba(214, 107, 0, 0.24);
}

.pricing-card.accent-green {
    --plan-accent-start: #15803d;
    --plan-accent-end: #22c55e;
    --plan-accent-shadow: 0 12px 28px rgba(21, 128, 61, 0.24);
}

.pricing-card.accent-blue {
    --plan-accent-start: #004987;
    --plan-accent-end: #1e73be;
    --plan-accent-shadow: 0 12px 28px rgba(0, 73, 135, 0.24);
}

.pricing-card.accent-slate {
    --plan-accent-start: #0f172a;
    --plan-accent-end: #334155;
    --plan-accent-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
}

.pricing-card.theme-slate h3,
.pricing-card.theme-slate .pricing-price-line strong,
.pricing-card.theme-slate .pricing-feature-title,
.pricing-card.theme-slate .pricing-bonus {
    color: #ffffff;
}

.pricing-card.theme-slate p,
.pricing-card.theme-slate .pricing-price-line span,
.pricing-card.theme-slate .pricing-price-meta,
.pricing-card.theme-slate .pricing-old-price,
.pricing-card.theme-slate .pricing-footnote,
.pricing-card.theme-slate .pricing-highlights li,
.pricing-card.theme-slate .pricing-features li {
    color: #cbd5e1;
}

.pricing-card.theme-slate .pricing-discount-rate {
    background: rgba(251, 191, 36, 0.16);
    color: #fcd34d;
}

.pricing-card.theme-slate .pricing-card-rail.is-empty {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.78));
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.pricing-card.theme-slate .pricing-price-block,
.pricing-card.theme-slate .pricing-highlights {
    background: rgba(15, 23, 42, 0.34);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pricing-card.theme-slate:not(.is-popular) .btn-plan {
    background: rgba(255, 255, 255, 0.94);
    color: var(--plan-accent-start);
}

.pricing-card.theme-slate.is-popular .btn-plan,
.pricing-card.theme-slate .btn-plan:hover {
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.35);
}

.pricing-card.theme-slate.is-popular .btn-plan {
    background: linear-gradient(135deg, var(--plan-accent-start), var(--plan-accent-end));
    border-color: transparent;
}

.pricing-card.theme-slate.is-popular .btn-plan,
.pricing-card.theme-slate .btn-plan:hover {
    color: #ffffff;
}

@media (max-width: 1100px) {
    .pricing-dashboard {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card.is-popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .simulator-section {
        padding: 4.5rem 0;
    }

    .pricing-copy,
    .pricing-controls {
        padding: 1.4rem;
        border-radius: 24px;
    }

    .plans-entry-btn {
        width: 100%;
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }

    .plans-entry {
        margin: 0 auto 2.8rem;
    }

    .slider-display strong {
        font-size: 2.6rem;
    }

    .pricing-summary strong {
        font-size: 1.85rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .plans-inline-note-slot {
        margin-top: 1.6rem;
    }

    .plans-inline-note {
        text-align: left;
        padding: 1rem;
    }

    .plans-inline-note-label {
        justify-self: flex-start;
    }
}

/* Modal Adjustments for Lead */
.simulator-modal-backdrop {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
}
.simulator-modal-panel {
    max-width: 500px;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.simulator-card {
    background: white;
    color: #0f172a;
}
.simulator-card .field span {
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}
.simulator-card input {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
    padding: 1rem;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 1.5rem;
}
.simulator-card .simulator-subtitle strong {
    color: #8b5cf6;
}

.simulator-plan-meta {
    margin: -0.25rem 0 1.35rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(0, 73, 135, 0.06);
    color: var(--primary-blue-dark);
    font-weight: 700;
}

.simulator-modal-close {
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.simulator-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

#lead-modal .simulator-modal-panel {
    width: min(980px, calc(100% - 2rem));
    max-width: 980px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

#lead-modal .simulator-card {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid rgba(0, 73, 135, 0.1);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
    max-height: min(88vh, 760px);
    overflow-y: auto;
}

#lead-modal .lead-form {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.9fr) minmax(220px, 0.72fr);
    gap: 1.5rem;
}

#lead-modal .lead-form-head {
    display: contents;
}

#lead-modal .lead-form-copy {
    display: grid;
    gap: 0.7rem;
    grid-column: 1;
    align-self: center;
}

#lead-modal .lead-form h3 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.05;
}

#lead-modal .simulator-subtitle {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
}

#lead-modal .lead-form-note {
    margin: 0;
    color: var(--primary-blue);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

#lead-modal .simulator-plan-meta {
    margin: 0;
    grid-column: 2;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 73, 135, 0.08), rgba(214, 107, 0, 0.1));
    border: 1px solid rgba(0, 73, 135, 0.08);
    font-size: 1rem;
}

#lead-modal .simulator-plan-quantity {
    margin: 0;
    grid-column: 3;
    max-width: none;
    min-height: 100%;
    justify-self: stretch;
    padding: 0.9rem 1rem 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 73, 135, 0.05), rgba(214, 107, 0, 0.06));
    border: 1px solid rgba(0, 73, 135, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#lead-modal .simulator-plan-quantity span {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(0, 73, 135, 0.82);
    text-align: center;
}

#lead-modal .simulator-plan-quantity input {
    min-height: 3.2rem;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
}

#lead-modal .simulator-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 0;
}

#lead-modal .simulator-card .field {
    margin: 0;
}

#lead-modal .simulator-card .field span {
    margin-bottom: 0.6rem;
    font-weight: 700;
}

#lead-modal .simulator-card input {
    margin-bottom: 0;
    min-height: 3.5rem;
    padding: 0.95rem 1rem;
}

#lead-modal .lead-form-consent {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: rgba(241, 245, 249, 0.72);
}

#lead-modal .lead-form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    min-height: 0;
    padding: 0;
    flex: 0 0 auto;
}

#lead-modal .lead-form-consent span {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    color: #1e293b;
}

#lead-modal .lead-form-consent a {
    color: #1d4ed8;
}

#lead-modal .lead-form-privacy-note {
    grid-column: 1 / -1;
    margin: -0.25rem 0 0;
    color: #475569;
    font-size: 0.84rem;
    line-height: 1.45;
}

#lead-modal .lead-form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

#lead-modal .lead-form-actions .btn {
    width: min(100%, 420px);
}

#lead-modal .lead-form-feedback {
    grid-column: 1 / -1;
    margin: -0.1rem 0 0;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.16);
    color: #b91c1c;
    font-size: 0.92rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    #lead-modal .simulator-modal-panel {
        width: min(100%, calc(100% - 1rem));
    }

    #lead-modal .simulator-card {
        padding: 1.4rem;
        border-radius: 24px;
    }

    #lead-modal .lead-form {
        grid-template-columns: 1fr;
    }

    #lead-modal .lead-form-head {
        display: grid;
        gap: 0.9rem;
        grid-column: 1;
    }

    #lead-modal .lead-form-copy,
    #lead-modal .simulator-plan-meta,
    #lead-modal .simulator-plan-quantity {
        grid-column: 1;
        width: 100%;
    }

    #lead-modal .simulator-grid {
        grid-template-columns: 1fr;
    }

    #lead-modal .lead-form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    #lead-modal .simulator-modal-panel {
        width: calc(100% - 0.5rem);
    }

    #lead-modal .simulator-card {
        padding: 1rem 0.95rem 1.1rem;
        border-radius: 22px;
        max-height: calc(100vh - 0.75rem);
    }

    #lead-modal .lead-form {
        gap: 0.9rem;
    }

    #lead-modal .lead-form-head {
        gap: 0.8rem;
    }

    #lead-modal .lead-form h3 {
        font-size: 2rem;
        line-height: 1.02;
    }

    #lead-modal .lead-form-copy {
        gap: 0.55rem;
    }

    #lead-modal .simulator-subtitle {
        font-size: 0.96rem;
        line-height: 1.55;
    }

    #lead-modal .simulator-plan-meta,
    #lead-modal .simulator-plan-quantity {
        padding: 0.9rem;
        border-radius: 16px;
    }

    #lead-modal .simulator-plan-meta {
        order: 2;
        justify-content: flex-start;
        text-align: left;
        font-size: 1.02rem;
        line-height: 1.45;
    }

    #lead-modal .simulator-plan-quantity {
        order: 3;
        align-items: flex-start;
        text-align: left;
    }

    #lead-modal .simulator-plan-quantity span {
        text-align: left;
    }

    #lead-modal .simulator-plan-quantity input,
    #lead-modal .simulator-card input {
        min-height: 3.2rem;
        font-size: 1rem;
    }

    #lead-modal .simulator-grid {
        order: 4;
        gap: 0.85rem;
    }

    #lead-modal .simulator-card .field span {
        margin-bottom: 0.42rem;
        font-size: 0.9rem;
    }

    #lead-modal .field-hint {
        font-size: 0.78rem;
    }

    #lead-modal .lead-form-actions {
        position: sticky;
        bottom: 0;
        padding-top: 0.25rem;
        background: linear-gradient(180deg, rgba(248, 251, 255, 0), rgba(248, 251, 255, 0.96) 26%);
    }

    #lead-modal .lead-form-actions .btn {
        min-height: 3.5rem;
        padding-inline: 1.2rem;
        font-size: 1rem;
    }

    #lead-modal .lead-form-feedback {
        padding: 0.82rem 0.9rem;
        font-size: 0.88rem;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    #lead-modal .simulator-modal-panel {
        width: calc(100% - 0.35rem);
    }

    #lead-modal .simulator-card {
        padding: 0.95rem 0.8rem 1rem;
        border-radius: 20px;
    }

    #lead-modal .lead-form {
        gap: 0.8rem;
    }

    #lead-modal .lead-form-head {
        gap: 0.72rem;
    }

    #lead-modal .lead-form-copy {
        gap: 0.5rem;
    }

    #lead-modal .lead-form h3 {
        font-size: 1.78rem;
    }

    #lead-modal .simulator-subtitle {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    #lead-modal .lead-form-note {
        font-size: 0.84rem;
    }

    #lead-modal .simulator-plan-meta,
    #lead-modal .simulator-plan-quantity,
    #lead-modal .lead-form-feedback {
        padding: 0.8rem 0.85rem;
    }

    #lead-modal .simulator-grid {
        gap: 0.75rem;
    }

    #lead-modal .simulator-card input {
        min-height: 3.05rem;
        padding: 0.85rem 0.92rem;
    }

    #lead-modal .lead-form-actions .btn {
        min-height: 3.35rem;
        font-size: 0.98rem;
    }
}

@media (max-width: 768px) {
    html,
    body,
    main,
    header,
    section,
    footer {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .hero-container,
    .hero-content,
    .hero-image,
    .trust-container,
    .app-container,
    .pricing-grid {
        max-width: 100%;
        min-width: 0;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        height: 78px;
        gap: 0.75rem;
    }

    .logo {
        max-width: calc(100% - 64px);
    }

    .logo img {
        height: 42px;
        max-width: min(176px, 50vw);
    }

    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu {
        top: 82px;
        left: 1rem;
        right: 1rem;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
    }

    .hero,
    .features,
    .app-section,
    .faq-section {
        padding: 4.75rem 0;
    }

    .trust-section {
        padding: 1.25rem 0 4.75rem;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 4.75rem;
    }

    .hero-container,
    .trust-container,
    .app-container {
        gap: 2.1rem;
    }

    .hero-content,
    .trust-copy,
    .app-content {
        min-width: 0;
    }

    .badge {
        margin-bottom: 1rem;
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 9.4vw, 2.9rem);
        line-height: 1.08;
        letter-spacing: -0.045em;
        text-wrap: pretty;
        margin-bottom: 1rem;
        max-width: 11ch;
        margin-left: auto;
        margin-right: auto;
    }

    .hero p {
        margin: 0 auto 1.75rem;
        max-width: 32ch;
        font-size: 1.04rem;
        line-height: 1.68;
    }

    .hero-buttons,
    .app-buttons,
    .trust-actions {
        gap: 0.85rem;
        align-items: stretch;
    }

    .hero-buttons .btn,
    .app-buttons .btn,
    .trust-actions .btn {
        width: 100%;
        min-height: 3.6rem;
    }

    .btn-large {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .hero-image {
        margin-top: 0.25rem;
    }

    .hero-mockup,
    .hero-mockup:hover {
        transform: none;
    }

    .hero-mockup {
        border-radius: 20px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2,
    .app-content h2,
    .trust-copy h2 {
        font-size: clamp(1.95rem, 7.4vw, 2.45rem);
        line-height: 1.12;
        text-wrap: pretty;
        max-width: 14ch;
        margin-left: auto;
        margin-right: auto;
    }

    .section-header p,
    .app-content p,
    .trust-copy > p {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.45rem;
        border-radius: 18px;
    }

    .feature-card:hover {
        transform: none;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.98rem;
    }

    .trust-point {
        padding: 0.95rem 1rem;
        border-radius: 18px;
    }

    .trust-visual {
        padding: 0.4rem;
        border-radius: 28px;
    }

    .trust-visual img,
    .app-preview img {
        border-radius: 24px;
    }

    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
        min-height: 54px;
        padding: 0.75rem 0.95rem;
    }

    .floating-whatsapp svg {
        width: 30px;
        height: 30px;
    }

    .floating-whatsapp-label {
        font-size: 0.9rem;
    }

    .pricing-card,
    .pricing-card:hover,
    .pricing-card.is-popular {
        transform: none;
    }

    .pricing-card {
        border-radius: 24px;
    }

    .pricing-card::after {
        border-radius: 23px;
    }

    .pricing-card-shell {
        padding: 1.35rem 1.1rem 1.2rem;
        gap: 1rem;
        grid-template-rows: minmax(8.2rem, auto) minmax(9.2rem, auto) auto minmax(3rem, auto) auto auto;
    }

    .pricing-card-top {
        min-height: 8.2rem;
    }

    .pricing-card h3 {
        font-size: 1.55rem;
    }

    .pricing-card p,
    .pricing-footnote,
    .pricing-highlights li,
    .pricing-features li {
        font-size: 0.95rem;
    }

    .pricing-card .btn {
        min-height: 3.7rem;
    }

    .faq-question {
        padding: 1rem 1.1rem;
        font-size: 1rem;
        gap: 0.85rem;
        align-items: flex-start;
    }

    .faq-answer {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
        font-size: 0.96rem;
    }
}

@media (max-width: 420px) {
    .container {
        padding: 0 0.9rem;
    }

    .logo img {
        height: 40px;
        max-width: min(164px, 48vw);
    }

    .hero h1 {
        font-size: clamp(2rem, 10.2vw, 2.45rem);
    }

    .hero p,
    .section-header p,
    .app-content p,
    .trust-copy > p {
        font-size: 0.98rem;
    }

    .btn-large {
        font-size: 0.98rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .pricing-card-shell {
        padding: 1.2rem 1rem 1.1rem;
    }
}

@media (max-width: 400px) {
    .nav-container {
        height: 74px;
    }

    .logo {
        max-width: calc(100% - 54px);
    }

    .logo img {
        height: 38px;
        max-width: min(152px, 46vw);
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .mobile-menu {
        top: 78px;
    }

    .hero {
        padding-top: 112px;
    }

    .badge {
        font-size: 0.74rem;
    }

    .hero h1 {
        font-size: clamp(1.85rem, 9.8vw, 2.2rem);
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 0.95rem 1rem;
        font-size: 0.96rem;
    }
}
