/* ==========================================================================
   Ubuntu Networks — Global Stylesheet
   ========================================================================== */

:root {
  --paper: #F5F7FA;
  --paper-2: #EDF1F6;
  --ink: #101B2D;
  --navy: #1D3557;
  --navy-deep: #0E1D33;
  --red: #E63946;
  --red-deep: #C22733;
  --signal: #00C2A8;
  --signal-deep: #00A28C;
  --slate: #5B6B82;
  --line: #DFE6EE;
  --white: #FFFFFF;

  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--display); margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px rgba(0,194,168,0.18);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 8px; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 16px rgba(230,57,70,0.28); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--navy); }
.btn-outline:hover { border-color: var(--navy); }
.btn-signal { background: var(--signal); color: #fff; }
.btn-signal:hover { background: var(--signal-deep); transform: translateY(-1px); }

/* ---------- Utility bar ---------- */
.utility {
  background: var(--navy-deep); color: #B9C6D8; font-family: var(--mono); font-size: 12.5px;
}
.utility .wrap { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.utility a { color: #DCE6F2; }
.utility a:hover { color: #fff; }
.utility-links { display: flex; gap: 22px; }
.utility-links span { color: #4C617D; }

/* ---------- Nav ---------- */
header.main {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
nav.wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 21px; color: var(--navy); }
.logo img {
  height: 40px;
  width: auto;
}
.logo span.red { color: var(--red); }
.navlinks { display: flex; align-items: center; gap: 30px; }
.navlinks a { font-size: 14.5px; font-weight: 600; color: var(--navy); position: relative; padding: 6px 0; }
.navlinks a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .18s ease;
}
.navlinks a:hover::after { transform: scaleX(1); }
.navlinks a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; padding: 8px; }
.mobile-cta { display: none; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 520px at 82% -10%, #16305238, transparent), var(--paper);
  padding: 76px 0 70px;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px,4.6vw,54px); color: var(--navy); }
.hero h1 .accent { color: var(--red); }
.hero .sub { margin-top: 20px; font-size: 17.5px; line-height: 1.65; color: var(--slate); max-width: 47ch; }
.hero .badges { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.badge {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em;
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  padding: 7px 12px; border-radius: 999px; display: flex; align-items: center; gap: 7px;
}
.badge b { color: var(--signal-deep); }

.coverage-box {
  margin-top: 32px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 8px; display: flex; gap: 8px; box-shadow: 0 12px 30px -18px rgba(16,27,45,0.35);
  max-width: 480px;
}
.coverage-box input {
  flex: 1; border: none; outline: none; padding: 12px 14px; font-family: var(--body); font-size: 14.5px; color: var(--ink); background: transparent;
}
.coverage-note { margin-top: 10px; font-size: 12.5px; color: var(--slate); font-family: var(--mono); }
.coverage-result {
  margin-top: 12px; font-size: 13.5px; color: var(--navy); background: #fff; border: 1px solid var(--line);
  padding: 18px; border-radius: 14px; display: none; font-family: var(--body);
  box-shadow: 0 8px 24px -12px rgba(16,27,45,0.15);
}
.coverage-result.show { display: block; }

/* ---------- Hero Merge Visual ---------- */
.merge { position: relative; height: 420px; }
.merge-card {
  position: absolute; width: 198px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 16px 18px; box-shadow: 0 18px 40px -22px rgba(16,27,45,0.4);
}
.merge-card .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); }
.merge-card h4 { font-size: 16px; margin-top: 6px; color: var(--navy); }
.merge-card .stat { font-family: var(--mono); font-size: 22px; color: var(--signal-deep); margin-top: 10px; }
.merge-card.left { top: 18px; left: 0; animation: float1 6s ease-in-out infinite; }
.merge-card.right { bottom: 18px; right: 0; animation: float2 6.5s ease-in-out infinite; }
.merge-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 150px; height: 150px; border-radius: 50%;
  background: linear-gradient(155deg, var(--navy), var(--navy-deep));
  display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 0 0 10px rgba(29,53,87,0.06), 0 24px 50px -20px rgba(14,29,51,0.55);
}
.merge-center b { font-family: var(--display); font-size: 15px; }
.merge-center span { font-family: var(--mono); font-size: 10px; color: #9FE3D8; margin-top: 4px; letter-spacing: .04em; }
.merge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.merge .pulse-dot { fill: var(--signal); }
@keyframes float1 { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }
@keyframes float2 { 0%,100% { transform: translateY(0) } 50% { transform: translateY(10px) } }
@media (prefers-reduced-motion: reduce) {
  .merge-card.left, .merge-card.right { animation: none; }
}

/* ---------- Partner strip ---------- */
.partners { background: var(--navy); padding: 26px 0; }
.partners .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.partners .label { font-family: var(--mono); font-size: 12px; color: #9FB2C9; letter-spacing: 0.08em; text-transform: uppercase; }
.partner-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.pbadge {
  font-family: var(--display); font-weight: 600; font-size: 14.5px; color: #EAF0F7;
  border: 1px solid rgba(255,255,255,0.18); padding: 8px 16px; border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.pbadge em { font-style: normal; color: var(--signal); }

/* ---------- Section shell ---------- */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px,3.4vw,38px); color: var(--navy); margin-top: 14px; }
.section-head p { margin-top: 14px; color: var(--slate); font-size: 16px; line-height: 1.6; }
.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Plan cards ---------- */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px; position: relative; transition: transform .18s ease, box-shadow .18s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -26px rgba(16,27,45,0.35); }
.plan.featured { border-color: var(--navy); }
.plan.featured::before {
  content: "MOST POPULAR"; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  position: absolute; top: -11px; left: 26px; background: var(--red); color: #fff; padding: 4px 10px; border-radius: 999px;
}
.plan .ptype { font-family: var(--mono); font-size: 12px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.06em; }
.plan h3 { font-size: 21px; color: var(--navy); }
.plan .speed { font-family: var(--mono); font-size: 34px; color: var(--ink); }
.plan .speed sup { font-size: 14px; color: var(--slate); }
.plan .price { font-family: var(--mono); font-size: 15px; color: var(--signal-deep); font-weight: 600; }
.plan ul { display: flex; flex-direction: column; gap: 9px; margin-top: 6px; }
.plan ul li { font-size: 14px; color: var(--slate); display: flex; gap: 9px; align-items: flex-start; }
.plan ul li::before { content: "\203A"; color: var(--red); font-weight: 700; }
.plan .btn { margin-top: 10px; }
.plans-note { margin-top: 22px; font-size: 12.5px; color: var(--slate); font-family: var(--mono); }

.tabbar { display: inline-flex; gap: 4px; background: #fff; border: 1px solid var(--line); padding: 4px; border-radius: 10px; margin-bottom: 36px; }
.tabbar button {
  padding: 9px 18px; border-radius: 7px; border: none; background: transparent; font-weight: 600; font-size: 14px; color: var(--slate);
}
.tabbar button.active { background: var(--navy); color: #fff; }

/* ---------- Bundle ---------- */
.bundle { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; position: relative; overflow: hidden; }
.bundle::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 15% 20%, rgba(0,194,168,0.14), transparent),
             radial-gradient(700px 400px at 85% 80%, rgba(230,57,70,0.12), transparent);
}
.bundle .wrap { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.bundle .eyebrow { color: #8FE3D6; }
.bundle h2 { font-size: clamp(28px,3.4vw,36px); margin-top: 14px; }
.bundle p.lead { margin-top: 16px; color: #C6D3E3; font-size: 16.5px; line-height: 1.65; max-width: 48ch; }
.bundle-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.bundle-list .row { display: flex; gap: 12px; align-items: flex-start; }
.bundle-list .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--signal); margin-top: 7px; flex: none; }
.bundle-list b { font-family: var(--display); font-size: 15.5px; }
.bundle-list span { display: block; font-size: 14px; color: #AEC0D6; margin-top: 2px; }

.bundle-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 18px;
  padding: 30px; backdrop-filter: blur(6px);
}
.bundle-card .line { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px dashed rgba(255,255,255,0.16); font-size: 14.5px; }
.bundle-card .line:last-of-type { border-bottom: none; }
.bundle-card .line b { font-family: var(--mono); color: #fff; }
.bundle-card .total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.2); }
.bundle-card .total .num { font-family: var(--mono); font-size: 30px; color: var(--signal); }
.bundle-card .btn { width: 100%; margin-top: 20px; }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.pillar .icon {
  width: 44px; height: 44px; border-radius: 11px; background: var(--paper-2); display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-family: var(--display); font-weight: 700; margin-bottom: 16px;
}
.pillar h3 { font-size: 18px; color: var(--navy); }
.pillar p { margin-top: 8px; font-size: 14.5px; color: var(--slate); line-height: 1.6; }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 56px; border-top: 1px solid var(--line); padding-top: 40px; }
.stat-item .num { font-family: var(--mono); font-size: 32px; color: var(--navy); }
.stat-item .num em { color: var(--red); font-style: normal; }
.stat-item .lbl { margin-top: 6px; font-size: 13.5px; color: var(--slate); }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.process::before {
  content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.pstep { position: relative; padding: 0 20px; }
.pstep .num {
  width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 2px solid var(--navy); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 600; position: relative; z-index: 2;
}
.pstep h4 { margin-top: 18px; font-size: 17px; color: var(--navy); }
.pstep p { margin-top: 8px; font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ---------- Coverage ---------- */
.coverage-section .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.map-visual {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px; position: relative;
}
.map-visual svg { width: 100%; height: auto; }
.province-dot { fill: var(--signal); }
.map-legend { display: flex; gap: 18px; margin-top: 18px; font-size: 12.5px; color: var(--slate); font-family: var(--mono); }
.map-legend .k { display: inline-flex; align-items: center; gap: 6px; }
.map-legend .sw { width: 9px; height: 9px; border-radius: 50%; }

/* ---------- Testimonial ---------- */
.testimonial { background: var(--paper-2); }
.t-card {
  max-width: 760px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 48px 44px;
}
.t-card q { font-family: var(--display); font-size: 22px; color: var(--navy); line-height: 1.5; display: block; }
.t-card .who { margin-top: 22px; font-family: var(--mono); font-size: 13px; color: var(--slate); }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--red); }
.cta-banner .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: clamp(24px,3vw,32px); max-width: 14ch; }
.cta-banner .btn-outline { background: #fff; color: var(--red-deep); border-color: #fff; }
.cta-banner .btn-outline:hover { background: #FFE9EA; }

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: #B9C6D8; padding: 70px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--display); font-weight: 700; font-size: 19px; }
.foot-logo img { height: 34px; width: auto; }
footer p.tag { margin-top: 14px; font-size: 13.5px; color: #8CA0BA; max-width: 32ch; line-height: 1.6; }
footer h5 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #6C81A0; margin-bottom: 16px; }
footer ul li { margin-bottom: 10px; font-size: 14px; }
footer ul li a:hover { color: #fff; }
.foot-contact li { color: #B9C6D8; }
.foot-bottom {
  margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: #6C81A0;
}
.foot-bottom a { color: #9FB2C9; }

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 20%, rgba(0,194,168,0.12), transparent);
}
.page-header .wrap { position: relative; }
.page-header .eyebrow { color: #8FE3D6; }
.page-header h1 { font-size: clamp(32px,4vw,48px); color: #fff; margin-top: 14px; }
.page-header p { margin-top: 16px; color: #C6D3E3; font-size: 17px; line-height: 1.6; max-width: 58ch; }

/* ---------- Services Grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -26px rgba(16,27,45,0.35);
}
.service-card .icon {
  width: 52px; height: 52px; border-radius: 13px; background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--navy);
}
.service-card h3 { font-size: 19px; color: var(--navy); }
.service-card p { font-size: 14.5px; color: var(--slate); line-height: 1.6; flex: 1; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Feature List (stacked) ---------- */
.features-list { display: flex; flex-direction: column; gap: 32px; }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 40px;
}
.feature-row:nth-child(even) { direction: rtl; }
.feature-row:nth-child(even) > * { direction: ltr; }
.feature-row .feature-visual {
  background: var(--paper-2); border-radius: 14px; padding: 20px;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px; font-size: 48px; overflow: hidden;
}
.feature-row .feature-visual img {
  width: 100%; height: auto; border-radius: 10px; object-fit: cover;
}
.feature-row h3 { font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.feature-row p { color: var(--slate); font-size: 15px; line-height: 1.65; }
.feature-row ul { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.feature-row ul li { font-size: 14px; color: var(--slate); display: flex; gap: 9px; align-items: flex-start; }
.feature-row ul li::before { content: "\203A"; color: var(--red); font-weight: 700; }

/* ---------- Tech Stack ---------- */
.tech-stack { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.tech-item {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 18px;
  text-align: center; transition: transform .15s ease, border-color .15s ease;
}
.tech-item:hover { transform: translateY(-3px); border-color: var(--navy); }
.tech-item .tech-icon { font-size: 32px; margin-bottom: 10px; }
.tech-item h4 { font-size: 14px; color: var(--navy); }
.tech-item p { font-size: 12.5px; color: var(--slate); margin-top: 4px; }

/* ---------- Contact Form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  font-family: var(--body); font-size: 14.5px; color: var(--ink); background: var(--paper);
  transition: border-color .15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--signal);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px;
}
.contact-info-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: var(--slate); line-height: 1.6; }
.contact-info-card a { color: var(--signal-deep); font-weight: 600; }
.contact-info-card a:hover { color: var(--navy); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .merge { height: 340px; margin-top: 20px; }
  .plans { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .process { grid-template-columns: 1fr; gap: 36px; }
  .process::before { display: none; }
  .bundle .wrap { grid-template-columns: 1fr; }
  .coverage-section .wrap { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) { direction: ltr; }
  .tech-stack { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .navlinks {
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: #fff;
    flex-direction: column; padding: 30px 28px; gap: 22px; transform: translateX(100%);
    transition: transform .25s ease; z-index: 40;
  }
  .navlinks.open { transform: translateX(0); }
  .menu-toggle { display: block; }
  .utility { display: none; }
  nav.wrap { height: 64px; }
  .logo { font-size: 17px; gap: 8px; }
  .logo .mark { width: 28px; height: 28px; font-size: 14px; }
  .nav-cta .btn-primary { display: none; }
  .navlinks { top: 64px; }
  .mobile-cta { display: block; margin-top: 8px; }
  .mobile-cta .btn { width: 100%; }
  .navlinks a.btn-primary { color: #fff; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-banner .wrap { flex-direction: column; text-align: center; }
  .stats { grid-template-columns: 1fr; }
}
