:root {
  --brand-navy: #0b1f4d;
  --brand-navy-mid: #12306e;
  --brand-navy-dark: #071536;
  --brand-orange: #f15a24;
  --brand-orange-dark: #d94816;
  --brand-orange-soft: #fff1eb;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 31, 77, 0.08);
  --shadow-sm: 0 4px 14px rgba(11, 31, 77, 0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.accent { color: var(--brand-orange); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .75rem 1.35rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}
.btn-orange { background: var(--brand-orange); color: #fff; }
.btn-orange:hover { background: var(--brand-orange-dark); }
.btn-navy { background: var(--brand-navy); color: #fff; }
.btn-navy:hover { background: var(--brand-navy-mid); }
.btn-outline-navy {
  background: #fff;
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}
.btn-outline-navy:hover { background: var(--brand-navy); color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }

/* Top bar + header */
.topbar {
  background: var(--brand-navy);
  color: #fff;
  font-size: .82rem;
}
.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  flex-wrap: wrap;
}
.topbar a { color: #fff; opacity: .92; }
.topbar a:hover { opacity: 1; color: #ffd7c8; }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}
.topbar-center { opacity: .9; }
.socials { display: flex; gap: .55rem; }
.socials a {
  width: 28px; height: 28px; border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  font-size: .75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(11,31,77,.04);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}
.topbar-loc { display: inline-flex; align-items: center; gap: .35rem; }
.topbar-loc svg { opacity: .9; }

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: max-content;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 2px 8px rgba(11,31,77,.12);
}
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(145deg, var(--brand-navy), var(--brand-navy-mid));
  color: #fff; display: grid; place-items: center;
  font-weight: 800; letter-spacing: -.02em; font-size: .95rem;
  box-shadow: inset 0 -3px 0 rgba(241,90,36,.9);
}
.brand-text strong {
  display: block;
  color: var(--brand-navy);
  font-size: 1.02rem;
  line-height: 1.15;
  letter-spacing: .01em;
}
.brand-text small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
}
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text .accent { color: var(--brand-orange); }

.nav {
  display: none;
  gap: 1.15rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--brand-navy);
}
.nav a { position: relative; padding: .2rem 0; }
.nav a:hover, .nav a.is-active { color: var(--brand-orange); }
.nav a.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -.35rem;
  height: 2px; background: var(--brand-orange); border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.search-btn, .menu-toggle, .cart-mini {
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid; place-items: center;
  cursor: pointer; color: var(--brand-navy);
  position: relative;
}
.cart-mini span {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  display: grid; place-items: center;
  padding: 0 4px;
}
.btn-login {
  display: none;
  padding: .65rem 1.05rem;
  font-size: .84rem;
}
.menu-toggle { display: grid; }

@media (min-width: 960px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
  .btn-login { display: inline-flex; }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: .75rem 0 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: .7rem 0;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--brand-navy);
  border-bottom: 1px solid #f1f5f9;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding: 2.8rem 0 2.2rem;
}
.hero-wave {
  position: absolute;
  right: -6%;
  top: -8%;
  width: min(58vw, 640px);
  height: 118%;
  background:
    radial-gradient(circle at 28% 38%, rgba(241,90,36,.55), transparent 36%),
    linear-gradient(160deg, #0b1f4d 0%, #163a86 52%, #1c4db0 100%);
  border-radius: 42% 58% 48% 52% / 40% 38% 62% 60%;
  transform: rotate(8deg);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; min-height: 460px; }
}
.hero-copy h1 {
  margin: 0 0 1rem;
  color: var(--brand-navy);
  font-size: clamp(2.15rem, 4.8vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.hero-copy p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--brand-navy);
}
.trust-item .ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--brand-orange-soft);
  color: var(--brand-orange);
}

.hero-visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
}
.hero-stage {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
}
.hero-logo-main {
  position: absolute;
  inset: 18% 18%;
  width: 64%;
  height: 64%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(7, 21, 54, .28);
  background: #fff;
  z-index: 2;
}
.float-img {
  position: absolute;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(7, 21, 54, .22);
  border: 3px solid #fff;
  background: #fff;
  z-index: 3;
}
.float-img.phone { width: 78px; height: 110px; top: 4%; left: 2%; transform: rotate(-8deg); }
.float-img.laptop { width: 150px; height: 100px; top: 6%; right: -2%; transform: rotate(6deg); }
.float-img.headphones { width: 108px; height: 108px; bottom: 8%; left: 0; transform: rotate(-4deg); }
.float-img.earbuds { width: 92px; height: 92px; bottom: 4%; right: 2%; transform: rotate(8deg); }

/* Quick services */
.quick-services {
  margin-top: -1.2rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
@media (min-width: 700px) {
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .quick-grid { grid-template-columns: repeat(6, 1fr); padding: 1.15rem; }
}
.quick-item {
  text-align: center;
  padding: .85rem .45rem;
  border-radius: 16px;
  transition: .2s ease;
}
.quick-item:hover { background: var(--brand-orange-soft); }
.quick-ico {
  width: 62px; height: 62px; margin: 0 auto .65rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #eef2ff;
  color: var(--brand-navy);
  border: 1px solid #dbe3f5;
}
.quick-item strong {
  display: block;
  font-size: .72rem;
  color: var(--brand-navy);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.offer-illu img {
  width: min(220px, 100%);
  margin: 0 auto;
  border-radius: 12px;
}
.offer-side img {
  width: 72px;
  height: 72px;
  margin: 0 auto .55rem;
  object-fit: contain;
}
.section-head.center {
  justify-content: center;
  text-align: center;
}
.section-head.center > div { width: 100%; }

/* Sections */
.section { padding: 2rem 0; }
@media (min-width: 768px) {
  .section { padding: 3.5rem 0; }
}
.section-soft { background: var(--bg-soft); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.section-head h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -.02em;
}
.section-head p {
  margin: .45rem 0 0;
  color: var(--muted);
  max-width: 34rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 700px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .category-grid { grid-template-columns: repeat(5, 1fr); }
}
.category-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: .2s ease;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #ffd0bf;
}
.category-card .media {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #f3f5f9;
  display: block;
  overflow: hidden;
  padding: 0;
}
.category-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}
.category-card .body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1rem 1.1rem;
  text-align: center;
}
.category-card .body strong {
  color: var(--brand-navy);
  font-size: .92rem;
}
.arrow-btn {
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--brand-orange); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  font-size: .9rem;
}

/* Why choose */
.why {
  background:
    radial-gradient(circle at 85% 70%, rgba(241,90,36,.18), transparent 30%),
    linear-gradient(135deg, var(--brand-navy-dark), var(--brand-navy) 55%, var(--brand-navy-mid));
  color: #fff;
  padding: 3.5rem 0;
}
.why-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .why-grid { grid-template-columns: 1.15fr .85fr; }
}
.why h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -.02em;
}
.why-list {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .why-list { grid-template-columns: 1fr 1fr; }
}
.why-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1rem;
}
.why-item .ico {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1.5px solid var(--brand-orange);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.why-item strong { display: block; margin-bottom: .2rem; }
.why-item p { margin: 0; color: #c7d5f2; font-size: .9rem; }
.why-visual {
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.why-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
}

/* Offer banner */
.offer-banner {
  padding: 2.5rem 0 1rem;
}
.offer-card {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  background:
    radial-gradient(circle at 0% 50%, rgba(241,90,36,.18), transparent 28%),
    radial-gradient(circle at 100% 50%, rgba(11,31,77,.12), transparent 30%),
    linear-gradient(90deg, #fff7f3, #ffffff 40%, #eef3ff);
  border: 1px solid #ffd8c8;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 900px) {
  .offer-card { grid-template-columns: .7fr 1.3fr .8fr; padding: 1.75rem 2rem; }
}
.offer-illu {
  font-size: 3.5rem;
  text-align: center;
}
.offer-copy h3 {
  margin: 0 0 .55rem;
  color: var(--brand-navy);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
}
.offer-copy p { margin: 0 0 1rem; color: var(--muted); }
.offer-side {
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 1rem;
  border: 1px dashed #ffb899;
}
.offer-side strong {
  display: block;
  color: var(--brand-orange);
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.testimonial .quote {
  color: var(--brand-orange);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}
.testimonial p {
  color: var(--muted);
  min-height: 4.5rem;
}
.testimonial-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 1rem;
}
.testimonial-foot strong { color: var(--brand-navy); }
.stars { color: var(--brand-orange); letter-spacing: 1px; }

/* Newsletter */
.newsletter {
  background: var(--brand-navy);
  color: #fff;
  padding: 1.35rem 0;
}
.newsletter .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.newsletter-copy {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.newsletter-copy .ico {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.newsletter-copy p { margin: .15rem 0 0; color: #b7c7ea; font-size: .9rem; }
.newsletter-form {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  width: min(460px, 100%);
}
.newsletter-form input {
  flex: 1;
  min-width: 180px;
  border: none;
  border-radius: 999px;
  padding: .8rem 1.1rem;
}
.newsletter-form button {
  border: none;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 700;
  padding: .8rem 1.25rem;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--brand-orange-dark); }

/* Footer */
.site-footer {
  background: var(--brand-navy-dark);
  color: #d7e3fb;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  padding: 2.75rem 0 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr 1fr; }
}
.site-footer h4 {
  margin: 0 0 .9rem;
  color: #fff;
  font-size: .95rem;
}
.site-footer p, .site-footer li {
  margin: 0 0 .55rem;
  font-size: .9rem;
  color: #a9bce3;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a:hover { color: #ffc7b0; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand { margin-bottom: .85rem; }
.pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.pay-logos span {
  background: #fff;
  color: var(--brand-navy);
  border-radius: 8px;
  padding: .35rem .55rem;
  font-size: .72rem;
  font-weight: 800;
}
.footer-bottom {
  background: var(--brand-orange);
  color: #fff;
  font-size: .84rem;
}
.footer-bottom .inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: .85rem 0;
}
.footer-bottom a { color: #fff; opacity: .95; }

.wa-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  z-index: 60;
}

/* Shared catalog bits (inner pages) */
.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}
.product-card, .card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.product-card:hover, .card:hover { border-color: #ffd0bf; }
.product-card .product-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: #f1f5f9;
}
.product-card h3 {
  font-size: .92rem;
  margin: .65rem 0 .3rem;
  color: var(--brand-navy);
}
.price { font-weight: 800; color: var(--brand-navy); }
.price-row { display: flex; align-items: baseline; gap: .45rem; flex-wrap: wrap; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: .85rem; font-weight: 600; }
.featured-badge {
  position: absolute;
  left: .55rem;
  top: .55rem;
  z-index: 1;
  background: var(--brand-orange);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 999px;
}
.featured-card { transition: transform .2s ease, box-shadow .2s ease; }
.featured-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.muted { color: var(--muted); font-size: .9rem; }
.section h2 { color: var(--brand-navy); }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; }
.form-control {
  width: 100%;
  padding: .7rem .85rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
}
.alert { padding: .85rem 1rem; border-radius: 12px; margin-bottom: 1rem; }
.alert-error { background: #fef2f2; color: #b91c1c; }
.alert-success { background: #ecfdf5; color: #047857; }
.alert-warn { background: #fff7ed; color: #9a3412; border: 1px dashed var(--brand-orange); }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: .75rem; border-bottom: 1px solid var(--line); text-align: left; font-size: .9rem; }

/* Admin leftovers used by shared css */
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--brand-navy-dark); color: #e0f2fe; padding: 1rem; }
.admin-sidebar a { display: block; padding: .55rem .7rem; border-radius: .5rem; margin-bottom: .25rem; }
.admin-sidebar a:hover { background: var(--brand-navy); color: #ffd0bf; }
.admin-main { flex: 1; background: #f8fafc; }
.admin-top { background: #fff; border-bottom: 1px solid var(--line); padding: .9rem 1.25rem; display: flex; justify-content: space-between; }
.admin-content { padding: 1.25rem; }
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #eef2ff, #fff); }
.login-card { width: 100%; max-width: 420px; background: #fff; border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow); }
.btn-primary, .btn-yellow { background: var(--brand-orange); color: #fff; }
.btn-primary:hover, .btn-yellow:hover { background: var(--brand-orange-dark); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.6); color: #fff; }
.thumb { width: 64px; height: 64px; object-fit: cover; border-radius: .5rem; }
.grid-4 { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.services-strip { background: var(--bg-soft); padding: 2.5rem 0; }
.value-bar { background: var(--brand-navy); color: #fff; padding: 1rem 0; }
.value-bar .title { color: var(--brand-orange); text-align: center; font-weight: 700; margin-bottom: .8rem; }

/* Static pages */
.page-hero {
  background:
    radial-gradient(circle at 90% 20%, rgba(241,90,36,.16), transparent 28%),
    linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 2.6rem 0 1.6rem;
  border-bottom: 1px solid var(--line);
}
.page-eyebrow {
  margin: 0 0 .45rem;
  color: var(--brand-orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.page-hero h1 {
  margin: 0 0 .55rem;
  color: var(--brand-navy);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -.02em;
}
.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}
.page-wrap {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .page-wrap { grid-template-columns: 1.5fr .85fr; align-items: start; }
}
.page-content h2 {
  margin: 1.4rem 0 .55rem;
  font-size: 1.15rem;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p, .legal-content li {
  color: #475569;
  line-height: 1.7;
}
.page-list { padding-left: 1.1rem; color: #475569; }
.page-list li { margin-bottom: .45rem; }
.page-feature-grid {
  display: grid;
  gap: .85rem;
}
@media (min-width: 700px) {
  .page-feature-grid { grid-template-columns: 1fr 1fr; }
}
.page-feature {
  display: flex;
  gap: .75rem;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
}
.page-feature .ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand-orange-soft);
  color: var(--brand-orange);
  flex-shrink: 0;
}
.page-feature p { margin: .2rem 0 0; font-size: .9rem; }
.page-cta { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.4rem; }
.page-side h3 { margin: 0 0 .85rem; color: var(--brand-navy); }
.page-side p { margin: 0 0 .7rem; color: #475569; }
.contact-info-list { display: grid; gap: .9rem; }
.contact-info-list strong { display: block; color: var(--brand-navy); margin-bottom: .2rem; }
.contact-info-list p { margin: 0; }
.contact-form { margin-top: 1rem; }
.legal-content ul { padding-left: 1.15rem; }
.legal-content a { color: var(--brand-orange); font-weight: 600; }
.footer-bottom a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
