:root {
  --navy-950: #031033;
  --navy-900: #061b4f;
  --navy-800: #08286d;
  --blue-700: #0754bd;
  --blue-600: #0879dc;
  --cyan-500: #05a9e4;
  --cyan-300: #69d7f5;
  --red-600: #df002c;
  --red-500: #ee1640;
  --green: #25d366;
  --ink: #09132b;
  --muted: #5d6680;
  --line: #dce4ef;
  --surface: #f4f7fb;
  --white: #fff;
  --shadow-sm: 0 12px 30px rgba(5, 28, 79, .08);
  --shadow-lg: 0 30px 75px rgba(3, 16, 51, .18);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.topbar {
  position: relative;
  z-index: 40;
  color: rgba(255,255,255,.82);
  background: var(--navy-950);
  font-size: 12px;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar p { margin: 0; display: flex; align-items: center; gap: 9px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 0 4px rgba(5,169,228,.15); }
.topbar-links { display: flex; align-items: center; gap: 24px; }
.topbar-links a { transition: color .2s ease; }
.topbar-links a:hover { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(8,40,109,.09);
  box-shadow: 0 8px 26px rgba(3,16,51,.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 24px rgba(3,16,51,.16); }
.brand-copy { display: grid; line-height: .9; letter-spacing: -.04em; }
.brand-copy b { color: var(--navy-900); font-size: 20px; text-transform: uppercase; }
.brand-copy small { justify-self: end; color: var(--cyan-500); font-size: 15px; font-weight: 800; letter-spacing: .15em; }

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 2.5vw, 38px); margin-left: auto; }
.desktop-nav a { position: relative; color: #26324f; font-size: 14px; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--red-500); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgba(5,169,228,.38); outline-offset: 3px; }
.button-sm { min-height: 44px; padding: 0 20px; font-size: 13px; color: var(--white); background: var(--navy-900); }
.button-sm:hover { background: var(--blue-700); box-shadow: 0 12px 24px rgba(7,84,189,.2); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--red-500), #c70027); box-shadow: 0 14px 30px rgba(223,0,44,.22); }
.button-primary:hover { box-shadow: 0 18px 34px rgba(223,0,44,.3); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.16); }
.button-outline { color: var(--navy-900); border-color: var(--line); background: var(--white); }
.button-outline:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.button-light { color: var(--navy-900); background: var(--white); box-shadow: 0 14px 34px rgba(3,16,51,.18); }

.service-switch {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 0 15px;
  color: var(--navy-900);
  background: #f3f7fc;
  border: 1px solid rgba(8,40,109,.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.service-switch:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); transform: translateY(-2px); }
.service-switch-dot { width: 8px; height: 8px; flex: 0 0 8px; background: var(--red-500); border-radius: 50%; box-shadow: 0 0 0 4px rgba(238,22,64,.12); }
.mobile-service-link { display: flex !important; align-items: center; justify-content: space-between; color: var(--cyan-300) !important; }

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--navy-900);
  background: #eef4fb;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
}
.menu-toggle span { width: 21px; height: 2px; background: currentColor; border-radius: 3px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  padding: 18px 24px calc(24px + env(safe-area-inset-bottom));
  color: var(--white);
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 25px 50px rgba(3,16,51,.26);
}
.mobile-nav:not([hidden]) { display: grid; }
.mobile-nav a:not(.button) { padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.12); color: var(--white); font-weight: 750; }
.mobile-nav .button { margin-top: 16px; color: var(--navy-950); background: var(--white); }

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 36px - var(--header-height)));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--navy-950);
}
.hero-image { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(3,16,51,.96) 0%, rgba(3,16,51,.84) 37%, rgba(3,16,51,.3) 68%, rgba(3,16,51,.12) 100%), linear-gradient(0deg, rgba(3,16,51,.38), transparent 50%); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; top: -300px; left: -220px; z-index: -1; border-radius: 50%; background: var(--cyan-500); opacity: .2; filter: blur(90px); }
.hero::after { content: ""; position: absolute; right: 0; bottom: 0; width: 45%; height: 4px; background: linear-gradient(90deg, transparent, var(--red-500)); }
.hero-content { display: flex; align-items: center; padding-block: 88px 104px; }
.hero-copy { width: min(650px, 58%); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--blue-700); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; flex: 0 0 auto; background: var(--red-500); }
.eyebrow-light { color: var(--cyan-300); }

.hero h1, .section-heading h2, .split-copy h2, .coverage-content h2, .support-copy h2, .faq-intro h2, .final-cta h2 {
  margin: 0;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero h1 { max-width: 640px; font-size: clamp(48px, 6.4vw, 88px); font-weight: 850; }
h1 em, h2 em { color: var(--cyan-500); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero p { max-width: 580px; margin: 26px 0 32px; color: rgba(255,255,255,.8); font-size: clamp(17px, 1.8vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 32px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 700; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points span { width: 19px; height: 19px; display: inline-grid; place-items: center; color: var(--navy-950); background: var(--cyan-300); border-radius: 50%; font-size: 11px; }
.scroll-cue { position: absolute; bottom: 27px; left: 50%; width: 28px; height: 46px; display: grid; place-items: start center; padding-top: 8px; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; transform: translateX(-50%); }
.scroll-cue span { width: 4px; height: 8px; background: var(--white); border-radius: 3px; animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(18px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

.trust-strip { color: var(--white); background: var(--navy-900); }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid > div { min-height: 56px; display: grid; align-content: center; gap: 4px; padding-inline: clamp(16px, 3vw, 40px); border-left: 1px solid rgba(255,255,255,.13); }
.trust-grid > div:first-child { border-left: 0; padding-left: 0; }
.trust-grid strong { font-size: clamp(18px, 2vw, 25px); letter-spacing: -.03em; }
.trust-grid span { color: rgba(255,255,255,.62); font-size: 12px; }

.section { padding-block: clamp(84px, 9vw, 132px); }
.section-heading { max-width: 780px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .split-copy h2, .support-copy h2, .faq-intro h2 { font-size: clamp(40px, 5vw, 64px); }
.section-heading p { max-width: 610px; margin: 20px auto 0; color: var(--muted); font-size: 17px; line-height: 1.7; }

.plans-section { background: var(--surface); }
.plans-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.plan-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid rgba(8,40,109,.09); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .28s ease, box-shadow .28s ease; }
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border: 2px solid var(--red-500); }
.plan-card > img { width: 100%; height: 160px; object-fit: cover; background: var(--navy-900); }
.plan-card.featured > img { height: 159px; }
.plan-badge { position: absolute; top: 14px; right: 14px; z-index: 2; padding: 8px 12px; color: var(--white); background: var(--red-500); border-radius: 999px; box-shadow: 0 8px 18px rgba(223,0,44,.26); font-size: 10px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.plan-body { padding: 24px; }
.plan-kicker { color: var(--blue-700); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.plan-speed { display: flex; align-items: baseline; gap: 6px; margin: 10px 0 4px; color: var(--navy-900); }
.plan-speed strong { font-size: 50px; line-height: 1; letter-spacing: -.07em; }
.plan-speed span { font-size: 18px; font-weight: 850; }
.plan-price { margin: 14px 0 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 25px; font-weight: 900; letter-spacing: -.03em; }
.plan-price small { font-size: 13px; }
.plan-price span { color: var(--muted); font-size: 12px; font-weight: 600; }
.plan-card ul { display: grid; gap: 11px; margin: 0 0 24px; padding: 0; list-style: none; color: #3d4760; font-size: 13px; }
.plan-card li { display: flex; gap: 8px; }
.plan-card li span { color: var(--cyan-500); font-weight: 900; }
.plan-card .button { width: 100%; min-height: 48px; font-size: 13px; }
.plans-note { margin: 22px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.uses-section { background: var(--white); }
.uses-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 16px; }
.use-card { position: relative; overflow: hidden; min-width: 0; border-radius: var(--radius-md); isolation: isolate; background: var(--navy-900); }
.use-card-large { grid-column: span 2; grid-row: span 2; }
.use-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.use-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(3,16,51,.9), rgba(3,16,51,.02) 68%); }
.use-card:hover img { transform: scale(1.05); }
.use-card > div { position: absolute; left: 24px; right: 24px; bottom: 23px; color: var(--white); }
.use-card span { color: var(--cyan-300); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.use-card h3 { margin: 6px 0 0; font-size: 21px; letter-spacing: -.03em; }
.use-card-large h3 { max-width: 430px; font-size: clamp(27px, 3vw, 38px); }

.fiber-section { overflow: hidden; background: var(--surface); }
.split-layout { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); gap: clamp(54px, 8vw, 104px); align-items: center; }
.media-stack { position: relative; min-height: 600px; }
.media-main { position: absolute; top: 0; left: 0; width: 82%; height: 86%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.media-float { position: absolute; right: 0; bottom: 0; width: 45%; aspect-ratio: 1; object-fit: cover; border: 10px solid var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.media-stat { position: absolute; left: 24px; bottom: 48px; display: grid; gap: 2px; padding: 19px 22px; color: var(--white); background: var(--red-500); border-radius: 18px; box-shadow: 0 16px 34px rgba(223,0,44,.3); }
.media-stat strong { font-size: 30px; letter-spacing: -.04em; }
.media-stat span { font-size: 11px; }
.split-copy > p, .support-copy > p, .faq-intro > p { margin: 24px 0 34px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.feature-list { display: grid; gap: 24px; }
.feature-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 17px; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.feature-number { color: var(--red-500); font-size: 12px; font-weight: 900; }
.feature-list h3 { margin: 0 0 6px; font-size: 18px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.coverage-section { position: relative; min-height: 680px; display: flex; align-items: center; overflow: hidden; isolation: isolate; color: var(--white); background: var(--navy-950); }
.coverage-bg { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; }
.coverage-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(3,16,51,.96) 0%, rgba(3,16,51,.86) 45%, rgba(3,16,51,.35) 100%); }
.coverage-content { position: relative; }
.coverage-content h2 { max-width: 700px; font-size: clamp(43px, 5.6vw, 72px); }
.coverage-content p { max-width: 670px; margin: 25px 0 34px; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.7; }
.coverage-form { max-width: 950px; display: grid; grid-template-columns: 1fr .8fr 1.3fr auto; gap: 10px; align-items: end; padding: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 22px; backdrop-filter: blur(14px); }
.coverage-form label { min-width: 0; display: grid; gap: 7px; }
.coverage-form label > span { padding-left: 13px; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.coverage-form input, .coverage-form select { width: 100%; min-width: 0; height: 52px; padding: 0 15px; color: var(--ink); background: var(--white); border: 0; border-radius: 13px; outline: 0; }
.coverage-form .button { white-space: nowrap; }

.support-section { background: var(--white); }
.split-layout-reverse { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
.support-copy { padding-right: 24px; }
.support-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--navy-900); font-weight: 850; }
.text-link span { color: var(--red-500); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.support-media { position: relative; }
.support-media > img { width: 100%; aspect-ratio: 1.25; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.support-card { position: absolute; left: -35px; bottom: 28px; display: flex; align-items: center; gap: 13px; padding: 18px 22px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg); }
.support-card div { display: grid; gap: 3px; }
.support-card strong { font-size: 14px; }
.support-card small { color: var(--muted); font-size: 11px; }
.pulse-icon { width: 13px; height: 13px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(37,211,102,.14); }

.client-section { color: var(--white); background: var(--navy-950); }
.client-section .section-heading p { color: rgba(255,255,255,.65); }
.client-section .eyebrow { color: var(--cyan-300); }
.client-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: stretch; }
.client-visual { overflow: hidden; min-height: 500px; border-radius: var(--radius-lg); }
.client-visual img { width: 100%; height: 100%; object-fit: cover; }
.client-options { display: grid; align-content: center; }
.client-options article { display: grid; grid-template-columns: 56px 1fr 54px; gap: 18px; align-items: center; padding: 30px 8px; border-bottom: 1px solid rgba(255,255,255,.14); }
.client-options article:first-child { border-top: 1px solid rgba(255,255,255,.14); }
.city-index { color: var(--cyan-500); font-size: 13px; font-weight: 900; }
.mini-label { color: rgba(255,255,255,.5); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.client-options h3 { margin: 5px 0; font-size: clamp(22px, 3vw, 32px); letter-spacing: -.04em; }
.client-options p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; }
.circle-link { width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-size: 21px; transition: background .2s ease, transform .2s ease; }
.circle-link:hover { background: var(--red-500); border-color: var(--red-500); transform: rotate(8deg); }
.client-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 30px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.7); font-size: 12px; }
.client-features li::before { content: "✓"; margin-right: 8px; color: var(--cyan-300); font-weight: 900; }

.faq-section { background: var(--surface); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.accordion { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 0; }
.accordion summary { position: relative; padding: 27px 62px 27px 27px; cursor: pointer; list-style: none; color: var(--navy-900); font-weight: 850; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span, .accordion summary span::after { position: absolute; top: 50%; right: 27px; width: 16px; height: 2px; content: ""; background: var(--red-500); transform: translateY(-50%); transition: transform .2s ease; }
.accordion summary span::after { top: 0; right: 0; transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { margin: -8px 60px 26px 27px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.final-cta { padding-block: 64px; color: var(--white); background: linear-gradient(120deg, var(--blue-700), var(--navy-900) 65%, var(--navy-950)); overflow: hidden; }
.final-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.final-cta-inner::after { content: ""; position: absolute; right: 13%; top: -130px; width: 280px; height: 280px; border: 55px solid rgba(5,169,228,.13); border-radius: 50%; pointer-events: none; }
.final-cta h2 { position: relative; z-index: 1; max-width: 800px; font-size: clamp(34px, 4.5vw, 58px); }
.final-cta .button { position: relative; z-index: 2; flex: 0 0 auto; }

.site-footer { padding-top: 76px; color: rgba(255,255,255,.66); background: #020b24; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr 1fr; gap: 48px; padding-bottom: 64px; }
.brand-footer .brand-copy b { color: var(--white); }
.footer-brand p { max-width: 330px; margin: 22px 0 0; font-size: 14px; line-height: 1.7; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-grid h3 { margin: 7px 0 9px; color: var(--white); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a { font-size: 13px; transition: color .2s ease; }
.footer-grid a:hover { color: var(--cyan-300); }
.footer-grid address { font-size: 13px; font-style: normal; line-height: 1.8; }
.footer-bottom { min-height: 75px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

.whatsapp-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1000;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--white);
  background: var(--green);
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
  font-size: 14px;
  font-weight: 900;
  animation: whatsappPulse 2.2s infinite;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.whatsapp-float:hover { transform: translateY(-3px) translateZ(0); }
.whatsapp-icon { width: 26px; height: 26px; min-width: 26px; display: block; flex: 0 0 26px; aspect-ratio: 1 / 1; overflow: visible; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.43), 0 14px 32px rgba(0,0,0,.22); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0), 0 14px 32px rgba(0,0,0,.22); }
}

/* Pontual Rastreamento */
.tracking-topbar { background: #020b24; }
.tracking-live-dot { background: var(--red-500); box-shadow: 0 0 0 4px rgba(238,22,64,.15); }
.tracking-header { border-bottom-color: rgba(223,0,44,.1); }
.tracking-brand img { width: 58px; height: 58px; object-fit: cover; border: 2px solid var(--white); }
.tracking-brand-copy { display: grid; line-height: .92; text-transform: uppercase; }
.tracking-brand-copy b { color: var(--navy-900); font-size: 19px; letter-spacing: .04em; }
.tracking-brand-copy small { color: var(--blue-600); font-size: 10px; font-weight: 900; letter-spacing: .09em; }
.tracking-service-switch .service-switch-dot { background: var(--cyan-500); box-shadow: 0 0 0 4px rgba(5,169,228,.13); }

.tracking-hero { min-height: min(780px, calc(100svh - 36px - var(--header-height))); }
.tracking-hero-overlay { background: linear-gradient(90deg, rgba(2,11,36,.98) 0%, rgba(3,16,51,.9) 36%, rgba(3,16,51,.28) 67%, rgba(3,16,51,.04) 100%), linear-gradient(0deg, rgba(2,11,36,.32), transparent 54%); }
.tracking-hero .hero-copy { width: min(700px, 58%); }
.tracking-hero h1 { font-size: clamp(48px, 5.8vw, 82px); }
.tracking-hero::after { background: linear-gradient(90deg, transparent, var(--cyan-500), var(--red-500)); }
.tracking-trust { background: linear-gradient(100deg, #04143f, var(--navy-900)); }

.tracking-benefits-section { background: var(--surface); }
.tracking-benefits-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.tracking-benefit { position: relative; min-height: 300px; padding: 34px 28px; overflow: hidden; background: var(--white); border: 1px solid rgba(8,40,109,.08); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.tracking-benefit::after { content: ""; position: absolute; right: -55px; bottom: -70px; width: 150px; height: 150px; border: 28px solid rgba(5,169,228,.07); border-radius: 50%; }
.tracking-benefit:nth-child(even)::after { border-color: rgba(238,22,64,.06); }
.tracking-benefit-number { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 48px; color: var(--white); background: var(--navy-900); border-radius: 16px; font-size: 12px; font-weight: 900; box-shadow: 0 12px 24px rgba(3,16,51,.18); }
.tracking-benefit:nth-child(2) .tracking-benefit-number, .tracking-benefit:nth-child(4) .tracking-benefit-number { background: var(--red-500); }
.tracking-benefit h3 { position: relative; z-index: 1; margin: 0 0 12px; color: var(--navy-900); font-size: 21px; letter-spacing: -.03em; }
.tracking-benefit p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.tracking-app-section { overflow: hidden; background: var(--white); }
.tracking-photo { position: relative; min-width: 0; }
.tracking-photo > img { width: 100%; aspect-ratio: 1.12; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.tracking-photo-badge { position: absolute; right: -26px; bottom: 28px; display: flex; align-items: center; gap: 13px; padding: 18px 22px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg); }
.tracking-photo-badge div { display: grid; gap: 3px; }
.tracking-photo-badge strong { color: var(--navy-900); font-size: 14px; }
.tracking-photo-badge small { color: var(--muted); font-size: 11px; }
.tracking-check-list { display: grid; gap: 14px; margin: 0 0 30px; padding: 0; list-style: none; }
.tracking-check-list li { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: center; }
.tracking-check-list li > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--white); background: var(--blue-700); border-radius: 50%; font-size: 13px; font-weight: 900; }
.tracking-check-list div { display: grid; gap: 4px; }
.tracking-check-list strong { color: var(--navy-900); font-size: 15px; }
.tracking-check-list small { color: var(--muted); font-size: 13px; line-height: 1.45; }

.appguard-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #080416 0%, #12052d 48%, #07143f 100%);
}
.appguard-section::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 560px;
  height: 560px;
  content: "";
  background: radial-gradient(circle, rgba(142,69,255,.32), rgba(142,69,255,0) 69%);
  border-radius: 50%;
  pointer-events: none;
}
.appguard-heading { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px, 8vw, 110px); align-items: end; margin-bottom: 54px; }
.appguard-label { display: inline-flex; margin-bottom: 18px; color: #b998ff; font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.appguard-heading h2 { max-width: 780px; margin: 0; font-size: clamp(42px, 5.3vw, 68px); line-height: .98; letter-spacing: -.055em; }
.appguard-heading h2 em { color: #a979ff; }
.appguard-heading p { margin: 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.75; }
.appguard-features-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.appguard-feature { min-width: 0; padding: 28px; background: rgba(255,255,255,.055); border: 1px solid rgba(190,153,255,.18); border-radius: 22px; backdrop-filter: blur(10px); }
.appguard-feature-index { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 28px; color: #d7c4ff; background: rgba(142,69,255,.18); border: 1px solid rgba(190,153,255,.28); border-radius: 13px; font-size: 11px; font-weight: 900; }
.appguard-feature h3 { margin: 0 0 11px; font-size: 20px; letter-spacing: -.03em; }
.appguard-feature p { min-height: 72px; margin: 0 0 20px; color: rgba(255,255,255,.63); font-size: 13px; line-height: 1.65; }
.appguard-feature ul { display: grid; gap: 9px; margin: 0; padding: 17px 0 0; border-top: 1px solid rgba(255,255,255,.11); list-style: none; }
.appguard-feature li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); font-size: 12px; }
.appguard-feature li::before { width: 6px; height: 6px; flex: 0 0 6px; content: ""; background: #9c6cff; border-radius: 50%; box-shadow: 0 0 0 4px rgba(156,108,255,.1); }
.appguard-fleet-panel { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(36px, 7vw, 84px); margin-top: 20px; padding: clamp(28px, 5vw, 54px); background: linear-gradient(120deg, rgba(128,57,241,.19), rgba(255,255,255,.055)); border: 1px solid rgba(190,153,255,.2); border-radius: 28px; }
.appguard-fleet-intro > span { color: #b998ff; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.appguard-fleet-intro h3 { margin: 10px 0 15px; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.05; letter-spacing: -.045em; }
.appguard-fleet-intro p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.65; }
.appguard-fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.appguard-fleet-grid > div { min-width: 0; display: grid; align-content: start; gap: 7px; padding: 18px; background: rgba(3,8,28,.45); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; }
.appguard-fleet-grid strong { color: var(--white); font-size: 13px; }
.appguard-fleet-grid span { color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.55; }
.appguard-note { position: relative; margin: 18px 0 0; color: rgba(255,255,255,.5); font-size: 10px; line-height: 1.55; text-align: center; }

.tracking-steps-section { color: var(--white); background: linear-gradient(125deg, #020b24, var(--navy-900)); }
.tracking-steps-section .section-heading { max-width: 900px; }
.tracking-steps-section .section-heading h2 { color: var(--white); }
.tracking-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 0; list-style: none; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); overflow: hidden; }
.tracking-steps li { min-height: 290px; display: grid; align-content: space-between; gap: 54px; padding: 30px; background: rgba(2,11,36,.9); }
.tracking-steps li > span { color: var(--cyan-300); font-size: 13px; font-weight: 900; }
.tracking-steps h3 { margin: 0 0 12px; font-size: 20px; letter-spacing: -.03em; }
.tracking-steps p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.65; }

.tracking-install-section { background: var(--surface); }
.tracking-install-photo > img { aspect-ratio: 1.25; }
.tracking-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: -8px 0 28px; }
.tracking-stat-row > div { display: grid; gap: 4px; padding: 17px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
.tracking-stat-row strong { color: var(--navy-900); font-size: 14px; }
.tracking-stat-row span { color: var(--muted); font-size: 11px; }
.tracking-faq { background: var(--white); }

.tracking-contact-section { color: var(--white); background: #020b24; }
.tracking-contact-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(54px, 8vw, 100px); align-items: center; }
.tracking-contact-copy h2 { margin: 0; max-width: 660px; font-size: clamp(42px, 5.3vw, 68px); letter-spacing: -.055em; line-height: .98; }
.tracking-contact-copy > p { max-width: 570px; margin: 24px 0 32px; color: rgba(255,255,255,.64); font-size: 16px; line-height: 1.7; }
.tracking-contact-links { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.tracking-contact-links > * { min-width: 0; display: grid; gap: 7px; padding: 17px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11); border-radius: 15px; }
.tracking-contact-links small { color: var(--cyan-300); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.tracking-contact-links strong { color: var(--white); font-size: 12px; line-height: 1.55; overflow-wrap: anywhere; }
.tracking-contact-links a { transition: background .2s ease, border-color .2s ease; }
.tracking-contact-links a:hover { background: rgba(5,169,228,.12); border-color: rgba(105,215,245,.38); }

.tracking-lead-form { display: grid; gap: 17px; padding: clamp(26px, 4vw, 42px); color: var(--ink); background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 28px 75px rgba(0,0,0,.28); }
.form-heading { margin-bottom: 3px; }
.form-heading span { color: var(--blue-700); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.form-heading h3 { margin: 7px 0 0; color: var(--navy-900); font-size: 30px; letter-spacing: -.04em; }
.tracking-lead-form label { min-width: 0; display: grid; gap: 7px; }
.tracking-lead-form label > span { padding-left: 3px; color: #37435d; font-size: 11px; font-weight: 850; }
.tracking-lead-form input, .tracking-lead-form select { width: 100%; min-width: 0; height: 52px; padding: 0 15px; color: var(--ink); background: #f4f7fb; border: 1px solid #dce4ef; border-radius: 13px; outline: 0; }
.tracking-lead-form input:focus, .tracking-lead-form select:focus { background: var(--white); border-color: var(--cyan-500); box-shadow: 0 0 0 3px rgba(5,169,228,.12); }
.tracking-lead-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tracking-lead-form .button { width: 100%; margin-top: 4px; }
.tracking-lead-form > small { color: var(--muted); font-size: 10px; text-align: center; }
.tracking-final-cta { background: linear-gradient(115deg, var(--red-600), #b40024 52%, var(--navy-900)); }
.tracking-footer .tracking-brand-copy b { color: var(--white); }
.tracking-footer .tracking-brand-copy small { color: var(--cyan-300); }
.tracking-brand-footer img { border-color: rgba(255,255,255,.28); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 13px; }
  .header-cta { display: none; }
  .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-card > img { height: 200px; }
  .plan-card.featured > img { height: 199px; }
  .uses-grid { grid-template-columns: repeat(3, 1fr); }
  .coverage-form { grid-template-columns: 1fr 1fr; }
  .coverage-form .address-field { grid-column: 1 / -1; }
  .tracking-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tracking-benefit { min-height: 260px; }
  .tracking-benefit-number { margin-bottom: 34px; }
  .tracking-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .appguard-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  :root { --header-height: 72px; }
  .desktop-nav, .header-cta, .service-switch { display: none; }
  .menu-toggle { display: flex; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy b { font-size: 18px; }
  .brand-copy small { font-size: 13px; }
  .hero { min-height: 720px; }
  .hero-copy { width: min(680px, 84%); }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,16,51,.95) 0%, rgba(3,16,51,.78) 60%, rgba(3,16,51,.3) 100%), linear-gradient(0deg, rgba(3,16,51,.5), transparent); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding-block: 12px; }
  .trust-grid > div { padding: 18px 24px; }
  .trust-grid > div:nth-child(3) { border-left: 0; }
  .uses-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .split-layout, .split-layout-reverse { grid-template-columns: 1fr; }
  .media-stack { max-width: 720px; min-height: 620px; }
  .support-copy { padding-right: 0; }
  .support-media { max-width: 760px; }
  .support-card { left: 22px; }
  .client-layout { grid-template-columns: 1fr; }
  .client-visual { min-height: 430px; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .tracking-brand-copy b { font-size: 17px; }
  .tracking-brand-copy small { font-size: 9px; }
  .tracking-hero .hero-copy { width: min(680px, 84%); }
  .tracking-photo { max-width: 760px; }
  .tracking-photo-badge { right: 22px; }
  .tracking-contact-layout { grid-template-columns: 1fr; }
  .appguard-heading, .appguard-fleet-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 32px, var(--container)); }
  .topbar { display: none; }
  .header-inner { min-height: var(--header-height); gap: 12px; }
  .brand-copy { display: none; }
  .tracking-brand-copy { display: grid; }
  .tracking-brand img { width: 50px; height: 50px; }
  .mobile-nav { padding-inline: 16px; }
  .hero, .tracking-hero { min-height: 0; max-height: none; display: block; padding-top: 56.28vw; background: var(--navy-950); }
  .hero-image, .tracking-hero-image { inset: 0 0 auto; width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: contain; object-position: center; }
  .hero-overlay, .tracking-hero-overlay { inset: 0 0 auto; height: 56.28vw; background: linear-gradient(0deg, rgba(3,16,51,.48), rgba(3,16,51,.04) 70%); }
  .hero-content { min-height: 0; align-items: stretch; padding-block: 48px 82px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero p { margin: 20px 0 26px; font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; grid-template-columns: 1fr; margin-top: 25px; }
  .scroll-cue { display: none; }
  .trust-grid > div { padding: 17px 12px; }
  .trust-grid > div:nth-child(even) { border-left: 1px solid rgba(255,255,255,.13); }
  .trust-grid strong { font-size: 18px; }
  .section { padding-block: 78px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .split-copy h2, .support-copy h2, .faq-intro h2 { font-size: clamp(37px, 11vw, 48px); }
  .section-heading p { font-size: 15px; }
  .plans-grid { grid-template-columns: 1fr; gap: 15px; }
  .plan-card > img, .plan-card.featured > img { height: auto; aspect-ratio: 1672 / 941; object-fit: contain; }
  .uses-grid { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 0 8px; scrollbar-width: none; }
  .uses-grid::-webkit-scrollbar { display: none; }
  .use-card, .use-card-large { min-width: min(84%, 340px); height: auto; min-height: 0; flex: 0 0 min(84%, 340px); scroll-snap-align: start; }
  .use-card img { position: relative; inset: auto; z-index: 0; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; }
  .use-card::after { display: none; }
  .use-card > div { position: static; padding: 19px 21px 22px; }
  .use-card-large h3 { font-size: 24px; }
  .media-stack { min-height: 0; display: grid; gap: 12px; }
  .media-main, .media-float { position: static; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
  .media-float { border-width: 6px; }
  .media-stat { left: 12px; bottom: 18px; padding: 15px 17px; }
  .media-stat strong { font-size: 24px; }
  .coverage-section { min-height: 0; display: block; padding-top: 56.28vw; background: var(--navy-950); }
  .coverage-bg { inset: 0 0 auto; width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: contain; object-position: center; }
  .coverage-shade { inset: 0 0 auto; height: 56.28vw; background: linear-gradient(0deg, rgba(3,16,51,.46), rgba(3,16,51,.05)); }
  .coverage-content h2 { font-size: clamp(40px, 12vw, 54px); }
  .coverage-form { grid-template-columns: 1fr; padding: 12px; }
  .coverage-form .address-field { grid-column: auto; }
  .coverage-form .button { width: 100%; }
  .support-actions { align-items: flex-start; flex-direction: column; }
  .support-media > img { height: auto; aspect-ratio: auto; object-fit: contain; }
  .support-card { position: static; margin-top: 12px; }
  .client-visual { min-height: 0; }
  .client-visual img { height: auto; object-fit: contain; }
  .client-options article { grid-template-columns: 36px 1fr 44px; gap: 10px; padding: 24px 0; }
  .circle-link { width: 42px; height: 42px; }
  .client-features { grid-template-columns: 1fr; }
  .accordion summary { padding: 23px 54px 23px 20px; font-size: 14px; }
  .accordion summary span, .accordion summary span::after { right: 20px; }
  .accordion details p { margin: -5px 22px 23px 20px; }
  .final-cta-inner { align-items: stretch; flex-direction: column; gap: 28px; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }
  .footer-bottom p { margin: 0; }
  .tracking-benefits-grid { grid-template-columns: 1fr; }
  .tracking-benefit { min-height: 0; }
  .tracking-benefit-number { margin-bottom: 28px; }
  .tracking-photo > img { height: auto; aspect-ratio: auto; object-fit: contain; }
  .tracking-photo-badge { position: static; margin-top: 12px; }
  .tracking-steps { grid-template-columns: 1fr; }
  .tracking-steps li { min-height: 230px; gap: 40px; }
  .tracking-stat-row { grid-template-columns: 1fr; }
  .tracking-contact-links { grid-template-columns: 1fr; }
  .tracking-lead-form .form-row { grid-template-columns: 1fr; }
  .tracking-contact-copy h2 { font-size: clamp(39px, 11vw, 50px); }
  .appguard-heading { margin-bottom: 36px; }
  .appguard-heading h2 { font-size: clamp(38px, 10.5vw, 49px); }
  .appguard-features-grid, .appguard-fleet-grid { grid-template-columns: 1fr; }
  .appguard-feature { padding: 24px; }
  .appguard-feature p { min-height: 0; }
  .whatsapp-float { right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); width: 56px; min-height: 56px; padding: 0; border-radius: 50%; }
  .whatsapp-float span { display: none; }
  .whatsapp-icon { width: 27px; height: 27px; min-width: 27px; flex-basis: 27px; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 24px); }
  .hero h1 { font-size: 40px; }
  .hero-content { padding-top: 70px; }
  .button { padding-inline: 18px; }
  .trust-grid span { font-size: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .tracking-brand-copy b { font-size: 15px; }
  .tracking-brand-copy small { font-size: 8px; }
}
