/* ============================================================
   CONETECH — Corporate Website Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --navy:    #0A1F44;
  --navy-2:  #0D2B5A;
  --blue:    #1A4FA0;
  --cyan:    #00B4D8;
  --orange:  #FF6B35;
  --orange-2:#E55A24;
  --white:   #FFFFFF;
  --off-white:#F8F9FC;
  --light:   #EEF2F9;
  --muted:   #6B7A99;
  --ink:     #0F1B2D;
  --line:    #E2E8F4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-weight: 800; line-height: 1.15; color: var(--navy); }
p { color: var(--muted); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.bg-navy { background: var(--navy); }
.bg-off { background: var(--off-white); }
.bg-light { background: var(--light); }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--orange);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--orange);
  display: inline-block; border-radius: 2px;
}

/* ── Section head ── */
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin: 0 auto 56px; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after {
  content: ""; width: 28px; height: 2px; background: var(--orange);
  display: inline-block; border-radius: 2px;
}
.section-head h2 { font-size: 2.6rem; margin-top: 12px; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .95rem; padding: 14px 30px;
  border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; transition: all .25s; letter-spacing: .2px;
}
.btn-primary {
  background: var(--orange); color: #fff; border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-2); border-color: var(--orange-2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,53,.3); }
.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: #fff; color: var(--navy); }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ── Topbar ── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: .83rem;
  color: #aab8d4;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar a { color: #aab8d4; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-right a {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; font-size: .72rem;
}
.topbar-right a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── Navbar ── */
.navbar {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(10,31,68,.06);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.navbar-brand {
  font-size: 1.55rem; font-weight: 800; color: var(--navy);
  display: flex; align-items: center; gap: 2px;
}
.navbar-brand .dot { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600; font-size: .92rem; color: var(--ink);
  padding: 8px 14px; border-radius: 6px; position: relative; transition: .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.mobile-menu {
  display: none; background: #fff; border-top: 1px solid var(--line);
  padding: 20px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #0E3166 100%);
  color: #fff; padding: 120px 0 100px; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0,180,216,.15), transparent),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,107,53,.12), transparent);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 7px 16px; border-radius: 30px; font-size: .82rem; font-weight: 600; color: #fff;
  margin-bottom: 22px;
}
.hero-tag i { color: var(--orange); }
.hero h1 { font-size: 3.4rem; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero-lead { font-size: 1.1rem; color: #b8c6e0; max-width: 500px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat .n { font-size: 2rem; font-weight: 800; color: #fff; font-family: 'Plus Jakarta Sans'; }
.hero-stat .l { font-size: .78rem; color: #8aabe0; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.hero-stat { border-left: 2px solid rgba(255,107,53,.5); padding-left: 18px; }
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 36px; backdrop-filter: blur(10px);
}
.hero-card-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-row .label { color: #8aabe0; font-size: .88rem; display: flex; align-items: center; gap: 10px; }
.hero-card-row .label i { color: var(--orange); }
.hero-card-row .val { font-weight: 800; font-size: 1.3rem; color: #fff; }

/* ── Trust strip ── */
.trust-strip { background: var(--off-white); padding: 22px 0; border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .88rem; color: var(--muted); }
.trust-item i { color: var(--orange); font-size: 1rem; }

/* ── Service cards ── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 36px 28px; transition: .3s; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: .35s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(10,31,68,.1); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,53,.1), rgba(0,180,216,.1));
  color: var(--orange); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 22px;
}
.svc-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.svc-card p { font-size: .92rem; }
.svc-card .svc-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-weight: 700; font-size: .88rem; color: var(--orange);
}
.svc-card .svc-link:hover gap { gap: 10px; }

/* ── About ── */
.about-img { position: relative; }
.about-img img { border-radius: 16px; width: 100%; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--navy); color: #fff; border-radius: 14px;
  padding: 22px 26px; box-shadow: 0 20px 40px rgba(10,31,68,.2);
  max-width: 220px;
}
.about-badge .n { font-size: 2.2rem; font-weight: 800; color: var(--orange); }
.about-point { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.about-point .icon {
  flex: 0 0 48px; height: 48px; width: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,53,.12), rgba(0,180,216,.12));
  color: var(--orange); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.about-point h6 { font-weight: 700; margin-bottom: 4px; font-size: 1rem; }
.about-point p { font-size: .9rem; }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.stat-box { background: var(--navy-2); padding: 50px 30px; text-align: center; }
.stat-box:first-child { border-radius: 16px 0 0 16px; }
.stat-box:last-child { border-radius: 0 16px 16px 0; }
.stat-box .n { font-size: 2.8rem; font-weight: 800; color: var(--orange); font-family: 'Plus Jakarta Sans'; }
.stat-box .l { font-size: .82rem; color: #8aabe0; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-top: 8px; }

/* ── Why us ── */
.why-card {
  background: #fff; border-radius: 16px; padding: 34px 28px;
  box-shadow: 0 4px 24px rgba(10,31,68,.06); border: 1px solid var(--line);
  height: 100%;
}
.why-card .num {
  font-size: 2.5rem; font-weight: 800; color: rgba(255,107,53,.15);
  font-family: 'Plus Jakarta Sans'; line-height: 1; margin-bottom: 16px;
}
.why-card h5 { font-size: 1.1rem; margin-bottom: 10px; }

/* ── Process ── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-grid::before {
  content: ""; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 2; }
.process-step .circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF9F7A);
  color: #fff; font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  box-shadow: 0 10px 28px rgba(255,107,53,.3);
}
.process-step h5 { font-size: 1rem; margin-bottom: 10px; }
.process-step p { font-size: .88rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 20px; padding: 70px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,107,53,.1); pointer-events: none;
}
.cta-banner h2 { font-size: 2.2rem; color: #fff; max-width: 500px; }
.cta-banner h2 span { color: var(--orange); }
.cta-banner p { color: #8aabe0; margin-top: 10px; }

/* ── Testimonials ── */
.testi-card {
  background: #fff; border-radius: 16px; padding: 34px;
  border: 1px solid var(--line); box-shadow: 0 4px 24px rgba(10,31,68,.06);
}
.testi-card .stars { color: #F59E0B; font-size: .9rem; margin-bottom: 16px; }
.testi-card .quote { font-size: 1rem; color: var(--ink); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testi-card .author { display: flex; align-items: center; gap: 12px; }
.testi-card .author .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.testi-card .author h6 { font-weight: 700; margin-bottom: 2px; font-size: .95rem; }
.testi-card .author span { color: var(--muted); font-size: .82rem; }

/* ── Team ── */
.team-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 4px 24px rgba(10,31,68,.06);
  transition: .3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(10,31,68,.12); }
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-card-body { padding: 24px; }
.team-card-body h5 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card-body .role { color: var(--orange); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; }
.team-card-body p { font-size: .88rem; margin-top: 10px; }
.team-card-body .socials { display: flex; gap: 8px; margin-top: 14px; }
.team-card-body .socials a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--muted); transition: .2s;
}
.team-card-body .socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── Portfolio ── */
.port-card { border-radius: 16px; overflow: hidden; position: relative; border: 1px solid var(--line); }
.port-card img { width: 100%; height: 280px; object-fit: cover; transition: .5s; }
.port-card:hover img { transform: scale(1.06); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,31,68,0) 30%, rgba(10,31,68,.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  opacity: 0; transition: .35s;
}
.port-card:hover .port-overlay { opacity: 1; }
.port-tag {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 8px; width: fit-content;
}
.port-overlay h6 { color: #fff; font-weight: 700; font-size: 1rem; }
.port-overlay p { color: #b8c6e0; font-size: .85rem; margin-top: 4px; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 90px 0 70px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0,180,216,.12), transparent);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: 2.8rem; color: #fff; margin-top: 14px; }
.page-hero p { color: #b8c6e0; max-width: 600px; margin: 14px auto 0; font-size: 1.05rem; }
.breadcrumb-nav { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 18px; font-size: .85rem; color: #8aabe0; }
.breadcrumb-nav a { color: #8aabe0; }
.breadcrumb-nav a:hover { color: var(--orange); }

/* ── Contact ── */
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-item .icon {
  flex: 0 0 48px; height: 48px; width: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,53,.12), rgba(0,180,216,.12));
  color: var(--orange); display: flex; align-items: center; justify-content: center;
}
.contact-info-item h6 { font-weight: 700; margin-bottom: 4px; }
.contact-info-item span, .contact-info-item a { color: var(--muted); font-size: .93rem; }
.contact-form-card { background: #fff; border-radius: 16px; padding: 42px; border: 1px solid var(--line); box-shadow: 0 4px 24px rgba(10,31,68,.06); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 16px; font-size: .95rem; font-family: inherit;
  background: var(--off-white); color: var(--ink); transition: .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 3px rgba(255,107,53,.1);
}
#formStatus { display: none; padding: 14px 18px; border-radius: 10px; font-weight: 600; font-size: .92rem; margin-top: 14px; }
#formStatus.success { display: block; background: #edfaf4; color: #166534; border: 1px solid #bbf7d0; }
#formStatus.error { display: block; background: #fff5f5; color: #991b1b; border: 1px solid #fecaca; }

/* ── Legal pages ── */
.legal-card { background: #fff; border-radius: 16px; padding: 50px; border: 1px solid var(--line); box-shadow: 0 4px 24px rgba(10,31,68,.06); }
.legal-card h2 { font-size: 1.4rem; margin-top: 46px; margin-bottom: 16px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.legal-card h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal-card h2 .num {
  flex: 0 0 36px; height: 36px; width: 36px; border-radius: 50%;
  background: rgba(255,107,53,.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
}
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.85; font-size: .97rem; }
.legal-card ul { padding-left: 20px; list-style: disc; }
.legal-card li { margin-bottom: 10px; }
.legal-card strong { color: var(--navy); }
.legal-card a { color: var(--orange); }
.legal-card a:hover { text-decoration: underline; }
.toc { background: var(--off-white); border: 1px solid var(--line); border-radius: 12px; padding: 28px 30px; margin-bottom: 36px; }
.toc h6 { font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); margin-bottom: 16px; }
.toc ol { columns: 2; padding-left: 18px; }
.toc li { margin-bottom: 8px; }
.toc a { color: var(--muted); font-size: .9rem; }
.toc a:hover { color: var(--orange); }
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal-table th, .legal-table td { border: 1px solid var(--line); padding: 12px 16px; font-size: .9rem; text-align: left; }
.legal-table th { background: var(--off-white); color: var(--navy); font-weight: 700; }
.legal-table td { color: var(--muted); }

/* ── Footer ── */
footer { background: var(--navy); color: #8aabe0; padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { font-size: 1.55rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.footer-brand .dot { color: var(--orange); }
footer p { font-size: .92rem; color: #8aabe0; }
footer h6 { color: #fff; font-weight: 700; text-transform: uppercase; font-size: .8rem; letter-spacing: 1px; margin-bottom: 20px; }
footer ul li { margin-bottom: 12px; }
footer ul li a { color: #8aabe0; font-size: .9rem; transition: .2s; }
footer ul li a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; color: #8aabe0; font-size: .9rem; }
.footer-contact li i { color: var(--orange); margin-top: 3px; width: 16px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12); color: #8aabe0;
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
}
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 60px;
  padding: 22px 0; font-size: .85rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: #8aabe0; }
.footer-bottom a:hover { color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid .stat-box:first-child { border-radius: 16px 0 0 0; }
  .stats-grid .stat-box:last-child { border-radius: 0 0 16px 0; }
  .stats-grid .stat-box:nth-child(2) { border-radius: 0 16px 0 0; }
  .stats-grid .stat-box:nth-child(3) { border-radius: 0 0 0 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .process-grid::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.6rem; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-head h2, .page-hero h1 { font-size: 2rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .cta-banner { padding: 40px 28px; text-align: center; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .toc ol { columns: 1; }
  .legal-card { padding: 30px 20px; }
  .about-badge { position: static; margin-top: 20px; max-width: 100%; }
  .topbar { display: none; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
