/* ============================================================
   On The Map Pro — Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:    #0d1b2a;
    --navy2:   #142032;
    --navy3:   #1a2d42;
    --orange:  #ff6b35;
    --orange2: #e85a22;
    --white:   #ffffff;
    --off:     #f5f7fa;
    --muted:   #64748b;
    --border:  #e2e8f0;
    --text:    #1e293b;
    --success: #22c55e;

    --radius:    14px;
    --radius-sm: 8px;
    --shadow:    0 4px 24px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
    --max-w:     1180px;
    --font:      'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: var(--white);
    font-weight: 700; font-size: .95rem;
    padding: 13px 28px; border-radius: var(--radius-sm);
    border: 2px solid var(--orange); cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--orange2); border-color: var(--orange2); box-shadow: 0 6px 24px rgba(255,107,53,.35); transform: translateY(-1px); }

.btn-ghost {
    display: inline-flex; align-items: center;
    background: transparent; color: rgba(255,255,255,.85);
    font-weight: 600; font-size: .95rem;
    padding: 13px 28px; border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,.3); cursor: pointer;
    transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); color: var(--white); }

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: var(--text);
    font-weight: 700; font-size: .95rem;
    padding: 13px 28px; border-radius: var(--radius-sm);
    border: 2px solid var(--border); cursor: pointer;
    transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-nav {
    background: var(--orange); color: var(--white);
    font-weight: 700; font-size: .9rem;
    padding: 10px 22px; border-radius: var(--radius-sm);
    transition: background .2s;
}
.btn-nav:hover { background: var(--orange2); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.light-section { background: var(--off); }
.dark-section { background: var(--navy); color: var(--white); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; margin: 16px 0 20px; color: var(--text); }
.dark-section .section-header h2, .section-header.light h2 { color: var(--white); }

.section-tag {
    display: inline-block; background: rgba(255,107,53,.1); color: var(--orange);
    font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px;
}
.dark-section .section-tag, .section-header.light .section-tag { background: rgba(255,107,53,.2); }

.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-header.light .section-sub, .dark-section .section-sub { color: rgba(255,255,255,.6); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 18px 0;
    transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
    background: rgba(8, 18, 30, .97);
    box-shadow: 0 2px 20px rgba(0,0,0,.35);
    padding: 12px 0; backdrop-filter: blur(8px);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.nav-brand {
    display: flex; align-items: center; gap: 10px;
    color: var(--white); font-size: 1.1rem; font-weight: 600; flex-shrink: 0;
}
.nav-brand strong { font-weight: 900; }
.brand-pin { width: 28px; height: 28px; flex-shrink: 0; }
.brand-pin svg { width: 100%; height: 100%; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links li a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links li a:hover { color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh; background: var(--navy);
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 0 80px; position: relative; overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,107,53,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,53,.035) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 70% at 20% 50%, rgba(255,107,53,.08) 0%, transparent 65%);
}

.hero-inner { display: flex; flex-direction: column; gap: 60px; position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,53,.15); color: rgba(255,255,255,.9);
    font-size: .85rem; font-weight: 600; padding: 8px 16px;
    border-radius: 100px; border: 1px solid rgba(255,107,53,.3);
    margin-bottom: 24px; width: fit-content;
}
.badge-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero-content h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 900;
    line-height: 1.08; color: var(--white); letter-spacing: -.025em;
    margin-bottom: 24px;
}
.accent { color: var(--orange); }

.hero-sub { font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(255,255,255,.68); max-width: 520px; line-height: 1.7; margin-bottom: 36px; }

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

.hero-stats {
    display: flex; align-items: center; flex-wrap: wrap;
    padding: 24px 32px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--radius); backdrop-filter: blur(8px); width: fit-content;
}
.hstat { padding: 0 28px; text-align: center; }
.hstat:first-child { padding-left: 0; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,.12); flex-shrink: 0; }
.hstat-num { font-size: 2.2rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.hstat-num sup { font-size: .85rem; vertical-align: super; }
.hstat-label { font-size: .77rem; color: rgba(255,255,255,.5); max-width: 130px; line-height: 1.4; }

.hero-scroll-cue {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,.3); font-size: .75rem; letter-spacing: .08em;
}
.scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid rgba(255,255,255,.25); border-bottom: 2px solid rgba(255,255,255,.25);
    transform: rotate(45deg); animation: bounce 1.8s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.industries-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.industry-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 24px;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}
.industry-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(255,107,53,.3); }

.industry-card-cta { background: rgba(255,107,53,.05); border-color: rgba(255,107,53,.2); }
.industry-card-cta a { color: var(--orange); font-weight: 600; }
.industry-card-cta a:hover { text-decoration: underline; }

.industry-icon {
    width: 44px; height: 44px; background: rgba(255,107,53,.1);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; color: var(--orange);
}
.industry-icon svg { width: 22px; height: 22px; }

.industry-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.industry-card p { font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); overflow: hidden;
}
.feature-item {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 36px 28px;
    border-right: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: background .2s;
}
.feature-item:hover { background: rgba(255,255,255,.03); }
.feature-item:nth-child(3n) { border-right: none; }
.feature-item:nth-last-child(-n+3) { border-bottom: none; }

.feature-num { font-size: 1.8rem; font-weight: 900; color: rgba(255,107,53,.2); line-height: 1; flex-shrink: 0; width: 36px; margin-top: 2px; }
.feature-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-body p { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ============================================================
   MODULES
   ============================================================ */
.modules-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px;
}

.module-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px 28px;
    display: flex; flex-direction: column; gap: 0;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}
.module-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(255,107,53,.25); }

.module-icon {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; flex-shrink: 0;
}
.module-icon svg { width: 24px; height: 24px; }
.sched   { background: rgba(99,102,241,.12);  color: #6366f1; }
.form    { background: rgba(20,184,166,.12);   color: #14b8a6; }
.pay     { background: rgba(34,197,94,.12);    color: #16a34a; }
.gallery { background: rgba(249,115,22,.12);   color: #ea580c; }
.chat    { background: rgba(59,130,246,.12);   color: #3b82f6; }
.reviews { background: rgba(234,179,8,.12);    color: #ca8a04; }

.module-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.module-body p  { font-size: .9rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }

.module-price {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px; background: var(--off);
    border-radius: var(--radius-sm); margin-top: auto;
    border: 1px solid var(--border);
}
.mod-setup   { font-size: .9rem; font-weight: 700; color: var(--text); }
.mod-sep     { color: var(--muted); font-size: .85rem; }
.mod-monthly { font-size: .9rem; font-weight: 600; color: var(--orange); }

.modules-note { text-align: center; font-size: .92rem; color: var(--muted); }
.modules-note a { color: var(--orange); font-weight: 600; }
.modules-note a:hover { text-decoration: underline; }

/* ============================================================
   ADDITIONAL SERVICES
   ============================================================ */
.add-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.add-service-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 36px 32px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: background .2s, border-color .2s;
}
.add-service-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,107,53,.3);
}

.add-service-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.add-service-icon svg { width: 26px; height: 26px; }
.logo-icon { background: rgba(255,107,53,.18); color: var(--orange); }

.add-service-badge {
    display: inline-block;
    background: rgba(255,107,53,.2);
    color: var(--orange);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.add-service-body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.add-service-body p {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    margin-bottom: 20px;
}

.add-service-features {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 24px;
    padding-left: 4px;
}
.add-service-features li {
    font-size: .88rem;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    gap: 8px;
}
.add-service-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.add-service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(255,255,255,.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.08);
    width: fit-content;
}
.add-price-label { font-size: .82rem; color: rgba(255,255,255,.4); }
.add-price-amount { font-size: 1.1rem; font-weight: 700; color: var(--orange); }

.add-services-note {
    text-align: center;
    font-size: .92rem;
    color: rgba(255,255,255,.4);
}
.add-services-note a { color: var(--orange); font-weight: 600; }
.add-services-note a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .add-services-grid { grid-template-columns: 1fr; }
    .add-service-card { flex-direction: column; gap: 20px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row {
    display: flex; align-items: flex-start; gap: 16px;
    max-width: 960px; margin: 0 auto;
}

.step {
    flex: 1; text-align: center; padding: 32px 24px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
}
.step-num {
    width: 52px; height: 52px; background: var(--orange);
    border-radius: 50%; font-size: 1.4rem; font-weight: 900; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p  { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.6; }

.step-arrow { font-size: 1.5rem; color: rgba(255,107,53,.4); flex-shrink: 0; margin-top: 52px; }

/* ============================================================
   PRICING
   ============================================================ */
.build-card {
    background: var(--white); border: 2px solid var(--border);
    border-radius: var(--radius); padding: 48px; max-width: 700px;
    margin: 0 auto 64px; text-align: center;
    box-shadow: var(--shadow);
}
.build-card-label { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.build-price-split { display: flex; align-items: center; justify-content: center; gap: 32px; margin-bottom: 32px; }
.build-amount { font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; }
.build-when { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.build-plus { font-size: 2rem; font-weight: 300; color: var(--muted); }
.build-includes { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin-bottom: 32px; }
.build-feature { display: flex; align-items: center; gap: 6px; font-size: .9rem; color: var(--text); }
.check { color: var(--success); font-weight: 700; }

.maint-header { text-align: center; margin-bottom: 40px; }
.maint-header h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.maint-header p { color: var(--muted); }

.plans-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.plan-card {
    background: var(--off); border: 2px solid var(--border);
    border-radius: var(--radius); padding: 36px 28px;
    position: relative; transition: box-shadow .25s; text-align: left;
}
.plan-card:hover { box-shadow: var(--shadow); }
.plan-card.plan-popular { border-color: var(--orange); background: var(--white); box-shadow: 0 8px 40px rgba(255,107,53,.15); }

.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--orange); color: var(--white);
    font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.plan-tier { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.plan-popular .plan-tier { color: var(--orange); }
.plan-price { font-size: 2.8rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 28px; }
.plan-mo { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan-price-tbd { font-size: 1.5rem; font-weight: 700; color: var(--orange); margin-bottom: 12px; }
.plan-desc { font-size: .88rem; color: var(--muted); line-height: 1.55; margin-bottom: 24px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.feat-yes { color: var(--text); }
.feat-yes::before { content:'✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.feat-no  { color: #b0b8c4; }
.feat-no::before  { content:'✗'; color: #d1d5db; flex-shrink: 0; }
.plan-card .btn-primary, .plan-card .btn-outline { width: 100%; justify-content: center; }
.btn-demo { display: block; text-align: center; margin-top: 10px; font-size: .85rem; font-weight: 600; color: var(--orange); padding: 8px; border-radius: var(--radius-sm); transition: background .2s; }
.btn-demo:hover { background: rgba(255,107,53,.08); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px; background: none; border: none;
    font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--text);
    cursor: pointer; text-align: left; transition: color .2s;
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--orange); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--orange); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; padding: 0 24px; }
.faq-a.open { max-height: 200px; padding-bottom: 20px; }
.faq-a p { font-size: .95rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-form { max-width: 820px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-full { margin-bottom: 20px; }

label { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.75); }
.req { color: var(--orange); }

input, select, textarea {
    font-family: var(--font); font-size: .95rem;
    background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm); color: var(--white);
    padding: 13px 16px; transition: border-color .2s, background .2s; outline: none; width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.28); }
input:focus, select:focus, textarea:focus { border-color: var(--orange); background: rgba(255,255,255,.1); }
select option { background: var(--navy); color: var(--white); }
textarea { resize: vertical; min-height: 120px; }

.form-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.form-note { font-size: .82rem; color: rgba(255,255,255,.35); }

.form-success { display: none; text-align: center; padding: 64px 32px; max-width: 480px; margin: 0 auto; }
.form-success.visible { display: block; }
.success-check {
    width: 72px; height: 72px; background: rgba(34,197,94,.15); color: var(--success);
    font-size: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; border: 2px solid rgba(34,197,94,.3);
}
.form-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.06); padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.1rem; font-weight: 600; }
.footer-brand strong { font-weight: 900; }
.footer-pin { width: 24px; height: 24px; }
.footer-pin svg { width: 100%; height: 100%; }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.38); }
.footer-links { font-size: .88rem; }
.footer-links a { color: var(--orange); font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.22); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.07); }
    .feature-item:nth-child(2n) { border-right: none; }
    .feature-item:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.07); }
    .feature-item:nth-last-child(-n+2) { border-bottom: none; }
}

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

    .nav-links {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(8,18,30,.98); flex-direction: column;
        align-items: center; justify-content: center; gap: 32px; z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { font-size: 1.2rem; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero { padding: 100px 0 64px; }
    .hero-stats { flex-direction: column; gap: 20px; padding: 24px; width: 100%; }
    .hstat-div { width: 100%; height: 1px; }
    .hstat { padding: 0; }

    .industries-grid { grid-template-columns: 1fr; }
    .modules-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; border: none; gap: 1px; background: rgba(255,255,255,.07); }
    .feature-item { border-right: none !important; border-bottom: none !important; background: var(--navy2); }

    .steps-row { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: 0 auto; }

    .plans-row { grid-template-columns: 1fr; }
    .build-card { padding: 32px 24px; }
    .build-price-split { gap: 20px; }
    .build-amount { font-size: 2.2rem; }

    .form-row { grid-template-columns: 1fr; }
    .form-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
    .section-header h2 { font-size: 1.7rem; }
}
