/* ══════════════════════════════════════════
   OZBOLT CORPORATE LANDING PAGE — STYLES
   ══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #4f46e5; --primary-light: #6366f1; --primary-dark: #3730a3;
  --accent: #06b6d4; --success: #10b981; --warning: #f59e0b; --danger: #ef4444;
  --bg-dark: #0b0f1a; --bg-card: #111827; --bg-elevated: #1e293b;
  --text-primary: #f1f5f9; --text-secondary: #94a3b8; --text-muted: #64748b;
  --border: rgba(255,255,255,0.06); --radius: 16px; --radius-sm: 10px;
}

[data-theme="light"] {
  --bg-dark: #f8fafc;
  --bg-card: #ffffff;
  --bg-elevated: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --border: rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg-dark); color: var(--text-primary); line-height: 1.75; overflow-x: hidden; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: var(--accent); text-decoration: none; transition: all .3s; }
a:hover { color: #22d3ee; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* BG Effects */
.bg-grid { position: fixed; inset: 0; z-index: 0; pointer-events: none; background-image: radial-gradient(rgba(99,102,241,0.06) 1px, transparent 1px); background-size: 40px 40px; }
.bg-glow { position: fixed; border-radius: 50%; filter: blur(140px); pointer-events: none; z-index: 0; }
.bg-glow.g1 { width: 600px; height: 600px; background: rgba(79,70,229,0.1); top: -200px; right: -100px; }
.bg-glow.g2 { width: 500px; height: 500px; background: rgba(6,182,212,0.07); bottom: -200px; left: -150px; }
[data-theme="light"] .bg-grid { background-image: radial-gradient(rgba(99,102,241,0.15) 1px, transparent 1px); }

/* ── Widgets ── */
.oz-floating-widgets { position: fixed; bottom: 20px; left: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; }
.oz-widget-btn { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--border); box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; transition: all .3s; }
.oz-widget-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); border-color: var(--primary); color: var(--primary); }
.oz-widget-btn.btn-ai { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; border: none; animation: pulse 2s infinite; }
.oz-widget-btn.btn-ai:hover { color: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(99,102,241,0.5); } 70% { box-shadow: 0 0 0 15px rgba(99,102,241,0); } 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0); } }

/* AI Chat Modal */
.ai-chat-modal { position: fixed; bottom: 80px; left: 20px; width: 350px; max-width: calc(100vw - 40px); background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.4); z-index: 9999; display: none; flex-direction: column; overflow: hidden; transform-origin: bottom left; animation: scaleUp 0.3s ease; }
.ai-chat-modal.open { display: flex; }
@keyframes scaleUp { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
.ai-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.ai-header h5 { margin: 0; font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.ai-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.2rem; cursor: pointer; transition: color .2s; }
.ai-close:hover { color: #fff; }
.ai-body { padding: 20px; max-height: 350px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; background: var(--bg-dark); }
.ai-msg { max-width: 85%; padding: 12px 16px; border-radius: 12px; font-size: .88rem; line-height: 1.5; }
.ai-msg.bot { background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.ai-msg.user { background: var(--primary); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.ai-footer { padding: 12px 16px; background: var(--bg-card); border-top: 1px solid var(--border); display: flex; gap: 10px; }
.ai-input { flex: 1; background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-primary); border-radius: 20px; padding: 8px 16px; font-size: .88rem; outline: none; }
.ai-input:focus { border-color: var(--primary); }
.ai-send { background: var(--primary); color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
.ai-send:hover { background: var(--primary-light); }

/* Language Dropdown */
.lang-dropdown { position: absolute; bottom: 100%; left: 0; margin-bottom: 10px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.3); overflow: hidden; display: none; min-width: 150px; }
.lang-dropdown.open { display: block; animation: fadeInUp 0.2s; }
.lang-dropdown a { display: block; padding: 10px 16px; color: var(--text-primary); font-size: .88rem; font-weight: 500; text-decoration: none; transition: background .2s; }
.lang-dropdown a:hover { background: var(--bg-elevated); color: var(--primary-light); }

/* Hide Google Translate top bar */
.VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; }
body { top: 0 !important; }

/* ── Navbar ── */
.oz-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 14px 0; background: rgba(11,15,26,0.6); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: all .3s; }
[data-theme="light"] .oz-nav { background: rgba(255,255,255,0.8); }
.oz-nav.scrolled { padding: 8px 0; background: rgba(11,15,26,0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
[data-theme="light"] .oz-nav.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; }
.nav-brand span { color: var(--accent); }
.nav-links { list-style: none; display: flex; gap: 28px; align-items: center; margin: 0; }
.nav-links a { color: var(--text-secondary); font-size: .85rem; font-weight: 500; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { background: var(--primary); color: #fff !important; padding: 9px 22px; border-radius: 50px; font-weight: 600; font-size: .84rem; display: inline-flex; align-items: center; gap: 7px; }
.nav-cta:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 8px 25px rgba(79,70,229,0.3); }
.nav-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }

/* ── Sections ── */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(79,70,229,0.1); border: 1px solid rgba(79,70,229,0.15); padding: 7px 16px; border-radius: 50px; font-size: .78rem; font-weight: 600; color: var(--primary-light); margin-bottom: 14px; }
.section-title { font-size: clamp(2rem,3.8vw,2.8rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.section-sub { font-size: 1.08rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto 48px; line-height: 1.75; }

/* ── Hero ── */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; position: relative; z-index: 1; background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 50%, var(--bg-dark) 100%); }
[data-theme="light"] .hero { background: linear-gradient(135deg, var(--bg-dark) 0%, #e0e7ff 50%, var(--bg-dark) 100%); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.2); padding: 8px 16px; border-radius: 50px; font-size: .8rem; font-weight: 600; color: var(--accent); margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.4rem,5.2vw,3.8rem); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 20px; }
.hero .gradient-text { background: linear-gradient(135deg, var(--accent), var(--primary-light), #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.1rem; color: var(--text-secondary); max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary-lg { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; padding: 15px 32px; border-radius: 14px; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 9px; transition: all .3s; text-decoration: none; }
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(79,70,229,0.3); color: #fff; }
.btn-outline-lg { background: transparent; color: var(--text-primary); padding: 15px 32px; border-radius: 14px; font-weight: 600; font-size: 1rem; border: 1px solid rgba(255,255,255,0.12); display: inline-flex; align-items: center; gap: 9px; transition: all .3s; text-decoration: none; }
.btn-outline-lg:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; }
.hero-stat h3 { font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg,var(--text-primary),var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat p { font-size: .78rem; color: var(--text-muted); font-weight: 500; margin: 0; }
.hero-visual { position: relative; }
.hero-img-wrap { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 0 60px rgba(79,70,229,0.12), 0 25px 60px rgba(0,0,0,0.4); }
.hero-img-wrap img { width: 100%; display: block; }
.hero-float { position: absolute; padding: 12px 18px; border-radius: 12px; background: rgba(17,24,39,0.9); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 25px rgba(0,0,0,0.3); animation: floatY 3s ease-in-out infinite; color: #fff; }
[data-theme="light"] .hero-float { background: rgba(255,255,255,0.9); border: 1px solid rgba(0,0,0,0.05); color: #0f172a; }
.hero-float.f1 { top: 15%; right: -20px; }
.hero-float.f2 { bottom: 20%; left: -20px; animation-delay: 1.5s; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-green { background: var(--success); box-shadow: 0 0 10px rgba(16,185,129,0.5); }
.dot-blue { background: var(--accent); box-shadow: 0 0 10px rgba(6,182,212,0.5); }
.hero-float span { font-size: .82rem; font-weight: 600; }
.hero-float small { font-size: .7rem; color: var(--text-muted); }

/* ── Trust Bar ── */
.trust-bar { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; z-index: 1; }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: .85rem; font-weight: 500; }
.trust-item i { font-size: 1.3rem; color: var(--accent); }

/* ── Feature Cards ── */
.mod-category { display: flex; align-items: center; gap: 12px; margin: 52px 0 24px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.mod-cat-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.mod-category h3 { font-size: 1.15rem; font-weight: 700; margin: 0; }
.mod-category small { font-size: .78rem; color: var(--text-muted); }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; transition: all .4s; height: 100%; text-align: left; position: relative; }
.feature-card:hover { border-color: rgba(99,102,241,0.25); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.fi-purple { background: rgba(99,102,241,0.12); color: #818cf8; }
.fi-cyan { background: rgba(6,182,212,0.12); color: #22d3ee; }
.fi-green { background: rgba(16,185,129,0.12); color: #34d399; }
.fi-amber { background: rgba(245,158,11,0.12); color: #fbbf24; }
.fi-pink { background: rgba(236,72,153,0.12); color: #f472b6; }
.fi-blue { background: rgba(59,130,246,0.12); color: #60a5fa; }
.fi-red { background: rgba(239,68,68,0.12); color: #f87171; }
.fi-teal { background: rgba(20,184,166,0.12); color: #2dd4bf; }
.fi-orange { background: rgba(249,115,22,0.12); color: #fb923c; }
.fi-violet { background: rgba(139,92,246,0.12); color: #a78bfa; }
.fi-rose { background: rgba(244,63,94,0.12); color: #fb7185; }
.fi-lime { background: rgba(132,204,22,0.12); color: #a3e635; }
.feature-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: .92rem; color: var(--text-secondary); margin: 0; line-height: 1.7; }
.mod-tag { position: absolute; top: 14px; right: 14px; font-size: .6rem; font-weight: 700; padding: 3px 9px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px; }
.mod-tag-new { background: rgba(16,185,129,0.15); color: #34d399; }
.mod-tag-ai { background: rgba(139,92,246,0.15); color: #a78bfa; }
.mod-tag-core { background: rgba(6,182,212,0.15); color: #22d3ee; }

/* ── Pricing ── */
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: all .4s; height: 100%; position: relative; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.pricing-card.popular { border-color: var(--primary); box-shadow: 0 0 40px rgba(79,70,229,0.15); }
.pricing-card.popular::before { content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: .65rem; font-weight: 700; padding: 4px 16px; border-radius: 50px; letter-spacing: .5px; }
.pricing-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price { font-size: 2.4rem; font-weight: 900; margin: 16px 0 4px; }
.pricing-card .price small { font-size: .85rem; font-weight: 400; color: var(--text-muted); }
.pricing-card .price-sub { font-size: .8rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-features { list-style: none; text-align: left; padding: 0; margin: 0 0 24px; }
.pricing-features li { padding: 9px 0; font-size: .9rem; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 10px; }
.pricing-features li i { color: var(--success); font-size: .9rem; }
.pricing-features li.disabled { opacity: .4; }
.pricing-features li.disabled i { color: var(--text-muted); }
.btn-pricing { display: block; width: 100%; padding: 14px; border-radius: 12px; font-weight: 700; font-size: .92rem; border: none; cursor: pointer; transition: all .3s; }
.btn-pricing-primary { background: var(--primary); color: #fff; }
.btn-pricing-primary:hover { background: var(--primary-light); }
.btn-pricing-outline { background: transparent; color: var(--text-primary); border: 1px solid rgba(255,255,255,0.12); }
.btn-pricing-outline:hover { border-color: var(--primary); color: var(--primary-light); }

/* ── Testimonials ── */
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; height: 100%; }
.testimonial-card .stars { color: #fbbf24; font-size: .9rem; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: .95rem; color: var(--text-secondary); line-height: 1.75; margin: 0 0 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: #fff; }
[data-theme="light"] .testimonial-avatar { color: #fff; }
.testimonial-author h6 { font-size: .85rem; font-weight: 600; margin: 0; }
.testimonial-author small { font-size: .75rem; color: var(--text-muted); }

/* ── Blog ── */
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .4s; height: 100%; }
.blog-card:hover { transform: translateY(-5px); border-color: rgba(99,102,241,0.2); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); display: flex; align-items: center; justify-content: center; }
.blog-thumb i { font-size: 3rem; color: rgba(255,255,255,0.3); }
.blog-body { padding: 24px; }
.blog-tag { font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: rgba(79,70,229,0.12); color: var(--primary-light); text-transform: uppercase; letter-spacing: .5px; }
.blog-body h4 { font-size: 1.1rem; font-weight: 700; margin: 12px 0 8px; line-height: 1.4; }
.blog-body p { font-size: .9rem; color: var(--text-secondary); line-height: 1.7; }
.blog-meta { font-size: .75rem; color: var(--text-muted); margin-top: 14px; display: flex; justify-content: space-between; }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: all .3s; }
.faq-item.active { border-color: rgba(99,102,241,0.2); }
.faq-q { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1rem; transition: all .3s; }
.faq-q:hover { color: var(--accent); }
.faq-q i { transition: transform .3s; color: var(--text-muted); }
.faq-item.active .faq-q i { transform: rotate(180deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 24px 20px; font-size: .95rem; color: var(--text-secondary); line-height: 1.75; }
.faq-item.active .faq-a { max-height: 300px; }

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light)); border-radius: 24px; padding: 56px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08), transparent 60%); }
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-banner p { font-size: 1.05rem; opacity: .85; margin-bottom: 28px; position: relative; color: rgba(255,255,255,0.9); }
.cta-banner h2 { color: #fff; }
.btn-cta-white { background: #fff; color: var(--primary-dark); padding: 15px 36px; border-radius: 14px; font-weight: 700; font-size: 1rem; border: none; display: inline-flex; align-items: center; gap: 9px; transition: all .3s; position: relative; text-decoration: none; }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); color: var(--primary-dark); }

/* ── Social Share Bar ── */
.share-bar { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; }
.share-bar a { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--text-muted); transition: all .3s; }
.share-bar a:hover { border-color: var(--primary); color: var(--primary-light); transform: translateY(-2px); }

/* ── Footer ── */
.oz-footer { border-top: 1px solid var(--border); padding: 60px 0 30px; position: relative; z-index: 1; }
.footer-brand { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: .85rem; color: var(--text-muted); max-width: 280px; line-height: 1.6; }
.footer-heading { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 16px; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { color: var(--text-muted); font-size: .85rem; }
.footer-list a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: .78rem; color: var(--text-muted); margin: 0; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: .95rem; transition: all .3s; }
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.fade-in { opacity: 0; transform: translateY(25px); transition: all .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width:991px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(11,15,26,0.98); padding: 20px; gap: 14px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .hero-float { display: none; }
  .hero-visual { margin-top: 40px; }
  .trust-items { gap: 20px; }
}
@media (max-width:575px) {
  .hero-stats { flex-direction: column; gap: 12px; }
  .hero-actions { flex-direction: column; }
  .btn-primary-lg, .btn-outline-lg { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
