/* Lorenz Mobs — styles.css */
:root{
  --navy:#0f1b2d;
  --navy-2:#16263e;
  --amber:#e8912d;
  --amber-dark:#c9761a;
  --ink:#1c2530;
  --grey:#5b6672;
  --line:#e3e7ec;
  --bg:#f6f8fa;
  --white:#ffffff;
  --radius:14px;
  --shadow:0 6px 24px rgba(15,27,45,0.08);
  --maxw:1120px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}
section{padding:64px 0}
.eyebrow{
  display:inline-block;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--amber-dark);
  background:rgba(232,145,45,.12);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:14px;
}
h1,h2,h3{font-weight:800;line-height:1.2;color:var(--navy)}
h1{font-size:clamp(2rem,4vw,2.9rem)}
h2{font-size:clamp(1.5rem,3vw,2.1rem)}
h3{font-size:1.15rem}
p{color:var(--grey)}
.lede{font-size:1.1rem;color:var(--grey);max-width:640px}

/* Header */
header{
  background:var(--navy);
  position:sticky;top:0;z-index:50;
  box-shadow:0 2px 12px rgba(0,0,0,.15);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 20px;max-width:var(--maxw);margin:0 auto;
}
.brand{display:flex;align-items:center;gap:10px;color:var(--white);font-weight:800;font-size:1.2rem}
.brand-mark{
  width:36px;height:36px;border-radius:9px;
  background:linear-gradient(135deg,var(--amber),var(--amber-dark));
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;color:var(--navy);font-weight:900;
}
.nav-links{display:flex;gap:28px}
.nav-links a{color:#c9d3e0;font-size:.95rem;font-weight:600}
.nav-links a:hover{color:var(--white)}
.call-pill{
  display:flex;align-items:center;gap:8px;
  background:var(--amber);color:var(--navy);
  padding:10px 18px;border-radius:999px;font-weight:800;font-size:.95rem;
  white-space:nowrap;
}
.call-pill:hover{background:var(--amber-dark);color:var(--white)}
.menu-toggle{display:none}

/* Hero */
.hero{
  background:radial-gradient(circle at 80% 20%, #1c3151 0%, var(--navy) 55%);
  color:var(--white);
  padding:72px 0 88px;
}
.hero .wrap{display:grid;grid-template-columns:1.2fr 1fr;gap:40px;align-items:center}
.hero .eyebrow{background:rgba(232,145,45,.18);color:var(--amber)}
.hero h1{color:var(--white)}
.hero .lede{color:#c9d3e0}
.hero-actions{display:flex;gap:14px;margin-top:28px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 26px;border-radius:10px;font-weight:800;font-size:1rem;
  border:2px solid transparent;cursor:pointer;
}
.btn-primary{background:var(--amber);color:var(--navy)}
.btn-primary:hover{background:var(--amber-dark);color:var(--white)}
.btn-ghost{border-color:rgba(255,255,255,.3);color:var(--white)}
.btn-ghost:hover{border-color:var(--white)}
.hero-stats{display:flex;gap:26px;margin-top:36px;flex-wrap:wrap}
.hero-stats div{min-width:110px}
.hero-stats strong{display:block;font-size:1.5rem;color:var(--amber)}
.hero-stats span{font-size:.85rem;color:#9fb0c6}

.hero-card{
  background:var(--white);border-radius:var(--radius);
  padding:28px;box-shadow:var(--shadow);color:var(--ink);
}
.hero-card h3{margin-bottom:6px}
.hero-card p{font-size:.92rem;margin-bottom:18px}
.hero-card ul li{
  display:flex;gap:10px;align-items:flex-start;
  font-size:.92rem;color:var(--ink);padding:8px 0;
  border-top:1px solid var(--line);
}
.hero-card ul li:first-child{border-top:none}
.check{color:var(--amber-dark);font-weight:900}

/* Trust bar */
.trustbar{background:var(--white);border-bottom:1px solid var(--line)}
.trustbar .wrap{
  display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;
  padding:22px 20px;font-size:.85rem;color:var(--grey);font-weight:600;
}
.trustbar span{display:flex;align-items:center;gap:8px}

/* Package type grid */
.types-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:36px}
.type-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:28px;box-shadow:var(--shadow);
}
.type-card .icon{
  width:46px;height:46px;border-radius:10px;background:rgba(232,145,45,.14);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;font-size:1.3rem;
}
.type-card h3{margin-bottom:8px}
.type-card p{font-size:.93rem;margin-bottom:14px}
.type-card ul li{font-size:.88rem;color:var(--grey);padding:4px 0;padding-left:18px;position:relative}
.type-card ul li::before{content:"—";position:absolute;left:0;color:var(--amber-dark)}

/* Comparison table */
.compare-wrap{
  background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);
  overflow:hidden;margin-top:36px;border:1px solid var(--line);
}
table{width:100%;border-collapse:collapse}
th,td{padding:16px 18px;text-align:left;font-size:.92rem;border-bottom:1px solid var(--line)}
th{background:var(--navy);color:var(--white);font-weight:700;font-size:.85rem;text-transform:uppercase;letter-spacing:.03em}
tbody tr:last-child td{border-bottom:none}
tbody tr:hover{background:var(--bg)}
td.highlight{font-weight:800;color:var(--navy)}
.table-note{font-size:.82rem;color:var(--grey);margin-top:14px}

/* How it works */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:36px}
.step{position:relative;padding-left:54px}
.step-num{
  position:absolute;left:0;top:0;width:38px;height:38px;border-radius:10px;
  background:var(--navy);color:var(--amber);display:flex;align-items:center;justify-content:center;
  font-weight:900;font-size:1rem;
}
.step h3{margin-bottom:6px;font-size:1.05rem}
.step p{font-size:.92rem}

/* Why section */
.why{background:var(--navy);color:var(--white)}
.why .eyebrow{background:rgba(232,145,45,.18);color:var(--amber)}
.why h2{color:var(--white)}
.why-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:32px}
.why-item{display:flex;gap:16px;padding:18px 0;border-bottom:1px solid rgba(255,255,255,.1)}
.why-item .icon{
  width:42px;height:42px;border-radius:10px;background:rgba(232,145,45,.16);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.1rem;color:var(--amber);
}
.why-item h3{color:var(--white);font-size:1.02rem;margin-bottom:4px}
.why-item p{color:#aebbcc;font-size:.9rem}

/* FAQ */
.faq-list{margin-top:32px;max-width:820px}
.faq-item{border-bottom:1px solid var(--line);padding:20px 0}
.faq-item h3{font-size:1rem;margin-bottom:8px}
.faq-item p{font-size:.92rem}

/* CTA band */
.cta-band{
  background:linear-gradient(120deg,var(--amber),var(--amber-dark));
  color:var(--navy);text-align:center;
}
.cta-band h2{color:var(--navy)}
.cta-band p{color:#5a3d0f;max-width:560px;margin:10px auto 26px}
.cta-band .btn-primary{background:var(--navy);color:var(--white)}
.cta-band .btn-primary:hover{background:#0a1420}

/* Footer */
footer{background:var(--navy-2);color:#aebbcc;padding:52px 0 24px;font-size:.88rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:36px;margin-bottom:36px}
.footer-brand p{color:#8fa0b6;font-size:.88rem;margin-top:10px;max-width:340px}
.footer-col h4{color:var(--white);font-size:.92rem;margin-bottom:14px}
.footer-col ul li{margin-bottom:9px}
.footer-col a:hover{color:var(--white)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);padding-top:20px;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:.8rem;color:#7c8ba0;
}

/* Legal pages */
.legal-hero{background:var(--navy);color:var(--white);padding:56px 0}
.legal-hero h1{color:var(--white)}
.legal-hero p{color:#c9d3e0;margin-top:8px}
.legal-body{padding:56px 0;max-width:820px;margin:0 auto}
.legal-body h2{margin-top:34px;margin-bottom:12px;font-size:1.25rem}
.legal-body h2:first-child{margin-top:0}
.legal-body p,.legal-body li{color:var(--grey);font-size:.96rem;margin-bottom:12px}
.legal-body ul{list-style:disc;padding-left:22px}
.legal-body a{color:var(--amber-dark);font-weight:700}
.legal-body strong{color:var(--ink)}
.updated{font-size:.85rem;color:var(--grey);margin-bottom:8px}

/* Responsive */
@media (max-width:900px){
  .hero .wrap{grid-template-columns:1fr}
  .types-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:24px}
  .nav-links{display:none}
  table{font-size:.82rem}
  th,td{padding:12px 10px}
}
