/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Lato:wght@400;700&display=swap');

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* === CSS VARIABLES === */
:root {
  --purple: #703AE8;
  --purple2: #521AD2;
  --yellow: #FED933;
  --dark: #19191B;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --border: #E8E8E8;
  --bg-off: #F8F8F9;
  --white: #FFFFFF;
}

/* === BASE === */
body { font-family: 'Lato', sans-serif; background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, .logo-text { font-family: 'Sora', sans-serif; }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 68px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 38px; height: 38px; }
.nav-logo-text { font-size: 1.25rem; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; font-family: 'Sora', sans-serif; }
.nav-logo-text span { color: var(--purple); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--gray); text-decoration: none; font-family: 'Sora', sans-serif; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-cta { background: var(--purple); color: white; padding: 9px 22px; border-radius: 8px; font-size: 0.875rem; font-weight: 700; text-decoration: none; font-family: 'Sora', sans-serif; transition: background 0.2s, transform 0.15s; flex-shrink: 0; }
.nav-cta:hover { background: var(--purple2); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; height: 2px; width: 22px; background: var(--dark); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; inset: 68px 0 0 0; background: white; z-index: 99; padding: 24px 6%; overflow-y: auto; border-top: 1px solid var(--border); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-size: 1.05rem; font-weight: 600; color: var(--dark); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--border); font-family: 'Sora', sans-serif; }
.mobile-menu a:hover { color: var(--purple); }
.mobile-menu .mobile-cta { margin-top: 24px; display: block; text-align: center; background: var(--purple); color: white; padding: 14px; border-radius: 10px; font-weight: 700; font-size: 1rem; border-bottom: none; }

/* ═══════════════════════════════════════════════════════
   HEROES
═══════════════════════════════════════════════════════ */
/* Main homepage hero */
.hero {
  background: linear-gradient(160deg, #703AE8 0%, #521AD2 55%, #3D1AAA 100%);
  padding: 88px 6% 100px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 60%, rgba(254,217,51,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.13; margin-bottom: 18px; position: relative; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; position: relative; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* Page hero (inner pages) */
.page-hero { background: linear-gradient(160deg, #703AE8 0%, #521AD2 100%); padding: 72px 6% 80px; text-align: center; }
.page-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800; color: white; letter-spacing: -0.03em; margin-bottom: 14px; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.82); max-width: 500px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   COMMON SECTION ELEMENTS
═══════════════════════════════════════════════════════ */
section { padding: 72px 6%; }
.section-tag { font-size: 0.72rem; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; font-family: 'Sora', sans-serif; }
.section-title { font-size: clamp(1.65rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--dark); letter-spacing: -0.025em; line-height: 1.18; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--gray); line-height: 1.75; max-width: 560px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }
.grad-text { background: linear-gradient(135deg, var(--purple), var(--purple2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn-primary { display: inline-block; background: var(--purple); color: white; padding: 13px 28px; border-radius: 10px; font-size: 0.95rem; font-weight: 700; text-decoration: none; font-family: 'Sora', sans-serif; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--purple2); transform: translateY(-1px); }
.btn-outline { display: inline-block; border: 1.5px solid var(--border); color: var(--dark); padding: 12px 28px; border-radius: 10px; font-size: 0.95rem; font-weight: 600; text-decoration: none; font-family: 'Sora', sans-serif; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.btn-white { display: inline-block; background: white; color: var(--purple); padding: 13px 28px; border-radius: 10px; font-size: 0.95rem; font-weight: 700; text-decoration: none; font-family: 'Sora', sans-serif; transition: opacity 0.2s, transform 0.15s; }
.btn-white:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-outline-white { display: inline-block; border: 1.5px solid rgba(255,255,255,0.4); color: white; padding: 12px 28px; border-radius: 10px; font-size: 0.95rem; font-weight: 600; text-decoration: none; font-family: 'Sora', sans-serif; transition: border-color 0.2s; }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.stats-bar { background: var(--bg-off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 6%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--purple); font-family: 'Sora', sans-serif; letter-spacing: -0.02em; }
.stat-label { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════
   FEATURE CARDS
═══════════════════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.feat-card { background: var(--bg-off); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: border-color 0.3s, transform 0.3s; }
.feat-card:hover { border-color: rgba(112,58,232,0.35); transform: translateY(-4px); }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat-icon .material-icons-round { font-size: 26px; color: inherit; }
.feat-icon svg { width: 26px; height: 26px; }
.ind-icon svg { width: 28px; height: 28px; }
.feat-block-icon svg { width: 36px; height: 36px; }
.feat-title { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; font-family: 'Sora', sans-serif; }
.feat-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }
.feat-list { list-style: none; margin-top: 16px; }
.feat-list li { font-size: 0.875rem; color: var(--dark); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.feat-list li:last-child { border-bottom: none; }
.feat-list li::before { content: '✓'; color: var(--purple); font-weight: 900; font-size: 12px; flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   PRODUCT CARDS (homepage)
═══════════════════════════════════════════════════════ */
.product-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.product-card { background: var(--bg-off); border: 1px solid var(--border); border-radius: 20px; padding: 32px; transition: border-color 0.3s, transform 0.3s; }
.product-card:hover { border-color: rgba(112,58,232,0.35); transform: translateY(-4px); }
.product-card-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple); margin-bottom: 10px; font-family: 'Sora', sans-serif; }
.product-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; font-family: 'Sora', sans-serif; letter-spacing: -0.02em; }
.product-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.product-card-link { font-size: 0.875rem; font-weight: 700; color: var(--purple); text-decoration: none; font-family: 'Sora', sans-serif; }
.product-card-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   INDUSTRIES GRID
═══════════════════════════════════════════════════════ */
.ind-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.ind-card { background: var(--bg-off); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: border-color 0.3s, transform 0.3s; }
.ind-card:hover { border-color: rgba(112,58,232,0.35); transform: translateY(-3px); }
.ind-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ind-icon .material-icons-round { font-size: 28px; color: inherit; }
.ind-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; font-family: 'Sora', sans-serif; }
.ind-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.step-card { text-align: center; }
.step-num { width: 52px; height: 52px; background: var(--purple); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; margin: 0 auto 18px; font-family: 'Sora', sans-serif; }
.step-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; font-family: 'Sora', sans-serif; }
.step-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   FEATURES DEEP (features page)
═══════════════════════════════════════════════════════ */
.feat-deep-section { background: var(--bg-off); }
.feat-deep-block { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start; padding: 60px 0; border-bottom: 1px solid var(--border); max-width: 900px; margin: 0 auto; }
.feat-deep-block:last-child { border-bottom: none; }
.feat-deep-block.alt { grid-template-columns: 1fr auto; }
.feat-deep-block.alt .feat-block-icon { order: 2; }
.feat-block-icon { width: 72px; height: 72px; border-radius: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-block-icon .material-icons-round { font-size: 36px; color: inherit; }
.feat-block-content p { font-size: 0.9375rem; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.block-title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.02em; }

/* ═══════════════════════════════════════════════════════
   PRODUCT DETAIL (products page)
═══════════════════════════════════════════════════════ */
.product-detail { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; max-width: 1100px; margin: 0 auto; }
.product-detail-header { position: sticky; top: 80px; }
.pd-badge { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple); margin-bottom: 10px; font-family: 'Sora', sans-serif; }
.pd-section-title { font-size: 0.78rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; font-family: 'Sora', sans-serif; }
.pd-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pd-feat { display: flex; gap: 10px; align-items: flex-start; }
.pd-check { color: var(--purple); font-weight: 900; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.pd-feat strong { display: block; color: var(--dark); font-size: 0.875rem; margin-bottom: 4px; font-family: 'Sora', sans-serif; }
.pd-feat div { font-size: 0.8125rem; color: var(--gray); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; max-width: 1000px; margin: 0 auto; }
.info-card { display: flex; gap: 16px; margin-bottom: 28px; }
.info-icon { width: 44px; height: 44px; background: rgba(112,58,232,0.1); border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.info-icon svg { width: 20px; height: 20px; }
.info-label { font-size: 0.7rem; font-weight: 700; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; font-family: 'Sora', sans-serif; }
.info-value { font-size: 0.9375rem; font-weight: 600; color: var(--dark); }
.info-value a { color: var(--dark); text-decoration: none; }
.info-value a:hover { color: var(--purple); }
.hours-card { background: var(--bg-off); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; margin-top: 32px; }
.hours-card h3 { font-size: 0.875rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; font-family: 'Sora', sans-serif; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 7px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--gray); }
.hours-row .time { color: var(--dark); font-weight: 600; }
.form-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 40px 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.form-card h2 { font-size: 1.25rem; font-weight: 800; color: var(--dark); margin-bottom: 24px; font-family: 'Sora', sans-serif; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--dark); margin-bottom: 7px; letter-spacing: 0.02em; font-family: 'Sora', sans-serif; }
input, select, textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 9px; font-size: 0.9rem; font-family: 'Lato', sans-serif; color: var(--dark); background: white; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
input:focus, select:focus, textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(112,58,232,0.1); }
textarea { resize: vertical; min-height: 110px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.btn-submit { width: 100%; padding: 14px; background: var(--purple); color: white; border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; font-family: 'Sora', sans-serif; transition: background 0.2s, transform 0.15s; }
.btn-submit:hover { background: var(--purple2); transform: translateY(-1px); }
.form-note { font-size: 0.78rem; color: var(--gray-light); text-align: center; margin-top: 12px; }
#success-msg { display: none; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.3); border-radius: 10px; padding: 16px; text-align: center; font-size: 0.9rem; color: #15803d; font-weight: 600; margin-top: 16px; }

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1000px; margin: 48px auto 0; }
.faq-item { background: var(--bg-off); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.faq-item h4 { font-size: 0.9375rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; font-family: 'Sora', sans-serif; }
.faq-item p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════ */
.cta-banner { background: linear-gradient(135deg, #703AE8 0%, #521AD2 100%); border-radius: 20px; padding: 64px 48px; text-align: center; margin: 0 6% 72px; }
.cta-banner .section-tag { color: rgba(254,217,51,0.9); }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: white; margin-bottom: 14px; letter-spacing: -0.02em; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 460px; margin: 0 auto 28px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer { background: var(--dark); padding: 52px 6% 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-text { font-size: 1.15rem; font-weight: 800; color: white; letter-spacing: -0.02em; font-family: 'Sora', sans-serif; }
.footer-logo-text span { color: var(--yellow); }
.footer-brand p { font-size: 0.875rem; color: #6B7280; margin-top: 12px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-family: 'Sora', sans-serif; }
.footer-col a { display: block; font-size: 0.875rem; color: #6B7280; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid #2A2A2A; padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: #555; }
.footer-bottom a { color: #666; text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════ */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-top: 48px; }
.stat-card { background: var(--bg-off); border: 1px solid var(--border); border-radius: 16px; padding: 28px 20px; text-align: center; }
.stat-big { font-size: 2.4rem; font-weight: 800; color: var(--purple); font-family: 'Sora', sans-serif; letter-spacing: -0.02em; }
.stat-lbl { font-size: 0.875rem; color: var(--gray); margin-top: 6px; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.value-card { background: var(--bg-off); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.value-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; font-family: 'Sora', sans-serif; }
.value-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   HARDWARE GRID
═══════════════════════════════════════════════════════ */
.hw-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 48px; }
.hw-card { background: var(--bg-off); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; text-align: center; flex: 1 1 140px; max-width: 180px; transition: border-color 0.3s, transform 0.3s; }
.hw-card:hover { border-color: rgba(112,58,232,0.35); transform: translateY(-4px); }
.hw-logo { width: 56px; height: 56px; object-fit: contain; margin-bottom: 14px; }
.hw-name { font-size: 0.875rem; font-weight: 700; color: var(--dark); font-family: 'Sora', sans-serif; }

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════ */
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap h2 { font-size: 1.25rem; font-weight: 800; color: var(--dark); margin: 36px 0 12px; font-family: 'Sora', sans-serif; }
.legal-wrap p { font-size: 0.9375rem; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.legal-wrap ul { margin: 0 0 16px 20px; }
.legal-wrap li { font-size: 0.9375rem; color: var(--gray); line-height: 1.8; margin-bottom: 6px; }
.legal-meta { font-size: 0.8rem; color: var(--gray-light); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-detail-header { position: static; }
  .pd-feature-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feat-deep-block, .feat-deep-block.alt { grid-template-columns: 1fr; }
  .feat-deep-block.alt .feat-block-icon { order: 0; }
}
@media (max-width: 680px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; margin: 0 4% 56px; border-radius: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  section { padding: 56px 6%; }
}
