:root {
  --red: #cc0000;
  --ink: #191b1e;
  --muted: #62666c;
  --line: #dce0e2;
  --soft: #f4f5f6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  max-width: 1328px;
  margin: auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* Utility */

.utility {
  background: var(--ink);
  color: #ddd;
  font-size: 12px;
  letter-spacing: 0.07em;
}

.utility > .wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
}

.utility .wrap > div {
  display: flex;
  gap: 25px;
}

.utility a:last-child {
  font-weight: 700;
  color: white;
}

/* Header / Navigation */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 24px;
}

header {
  background: white;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

nav > a:hover {
  color: var(--red);
}

.menu {
  display: none;
}

/* Buttons */

.button {
  background: var(--red);
  color: white !important;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--red);
  transition: background 0.18s, transform 0.18s;
}

.button:hover {
  background: #a51821;
  transform: translateY(-2px);
}

.button.small {
  padding: 12px 17px;
}

.button.outline {
  background: transparent;
  color: var(--ink) !important;
  border-color: #bfc3c6;
}

.button.outline:hover {
  border-color: var(--red);
  color: var(--red) !important;
}

/* Typography */

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--red);
  margin-bottom: 22px;
  line-height: 1.5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(44px, 4.8vw, 68px);
  font-weight: 600;
  margin-bottom: 0;
}

h1 span {
  color: var(--red);
}

h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  margin-bottom: 27px;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

p {
  color: var(--muted);
}

/* Hero */

.hero {
  padding-top: 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 55px;
  align-items: start;
}

.hero-copy {
  padding-top: 4px;
}

.hero-copy p {
  font-size: 17px;
  line-height: 1.65;
}

.actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.text-link {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.text-link:hover {
  color: var(--red);
}

.hero-copy .small-copy {
  font-size: 12px;
  letter-spacing: 0.02em;
  margin: 20px 0 0;
}

.hero-media {
  margin-top: 45px;
  height: 306px;
  position: relative;
  overflow: hidden;
  background: #30363b;
}

.hero-media > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 75%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #15202c50, transparent);
}

.image-caption {
  position: absolute;
  left: 25px;
  right: 25px;
  top: 22px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  z-index: 1;
}

.media-label {
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: white;
  font-size: 29px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  z-index: 1;
}

/* Proof */

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 37px;
  padding-bottom: 40px;
}

.proof > div {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.proof > div:first-child {
  padding-left: 0;
  border: 0;
}

.proof strong {
  font-size: 32px;
  letter-spacing: -0.04em;
  font-weight: 500;
  line-height: 1.3;
}

.proof p {
  font-size: 13px;
  line-height: 1.5;
  margin: 9px 0 0;
}

.proof-highlight strong {
  color: var(--red);
}

/* Sections */

.section {
  padding-top: 94px;
  padding-bottom: 94px;
}

.soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head > p {
  max-width: 345px;
  margin-bottom: 4px;
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: white;
}

.service {
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}

.service:last-child {
  border: 0;
}

.service:hover {
  background: #fafafa;
}

.number {
  color: var(--red);
  font-size: 13px;
  margin-bottom: 35px;
}

.service h3 {
  margin-bottom: 20px;
}

.service p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 35px;
}

.service-end {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-end b {
  font-size: 21px;
  color: var(--red);
}

/* Split Content */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}

.split p {
  max-width: 540px;
}

/* Bandwidth */

.bandwidth {
  background: var(--soft);
  padding: 40px;
}

.speed {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.speed strong {
  font-size: 65px;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.speed span {
  font-size: 12px;
  line-height: 1.7;
}

.bar {
  height: 6px;
  background: var(--red);
  margin-bottom: 22px;
}

.bandwidth-note {
  font-size: 13px;
  color: var(--muted);
  padding-top: 8px;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  position: relative;
}

.price.featured {
  border-top: 3px solid var(--red);
  padding-top: 28px;
}

.tag {
  font-size: 12px;
  letter-spacing: 0.09em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 30px;
}

.price h3 {
  font-size: 30px;
  margin-bottom: 9px;
}

.price small {
  font-size: 15px;
  letter-spacing: 0;
}

.price > p {
  font-size: 13px;
  min-height: 42px;
}

.amount {
  font-size: 54px;
  letter-spacing: -0.06em;
  line-height: 1.2;
}

.amount span {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 7px;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 25px 0;
}

.price ul {
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 2.2;
  margin: 0 0 25px;
}

.price li::before {
  content: "✓";
  color: var(--red);
  margin-right: 10px;
}

.price .button {
  width: 100%;
}

.pricing-note {
  font-size: 13px;
  margin: 22px 0 12px;
}

.terms {
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.terms summary {
  cursor: pointer;
}

.terms p {
  margin: 15px 0;
}

/* Dark Section */

.dark {
  background: #181b20;
  color: white;
}

.dark .eyebrow {
  color: #f06b70;
}

.dark p {
  color: #b6bac1;
}

/* Resilience */

.resilience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 105px;
  margin-top: 50px;
  align-items: center;
}

.resilience h3 {
  font-size: 30px;
}

.adoption {
  border-top: 1px solid #404349;
  margin-top: 35px;
  padding-top: 22px;
  display: flex;
  gap: 25px;
  align-items: center;
}

.adoption strong {
  font-size: 56px;
  color: #f06b70;
  letter-spacing: -0.05em;
}

.adoption span {
  font-size: 14px;
  color: #c7cbd1;
}

/* Diagram */

.diagram {
  background: #20242a;
  padding: 28px 34px;
  border: 1px solid #3b3e44;
}

.diagram-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 25px;
  color: #bec4cc;
}

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.paths > div,
.business,
.sdwan {
  border: 1px solid #66707a;
  padding: 14px;
  text-align: center;
}

.paths > div:first-child {
  border-color: #f06b70;
}

.paths b,
.sdwan b,
.business b {
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.paths span,
.sdwan span,
.business span {
  display: block;
  font-size: 12px;
  color: #abb3be;
  margin-top: 5px;
}

.paths .secondary {
  border-style: dashed;
}

.connectors {
  height: 33px;
  margin: 0 24%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #83909e;
}

.connectors span {
  height: 100%;
  border-left: 1px solid #83909e;
}

.connectors span:first-child {
  border-color: #f06b70;
}

.sdwan {
  background: #c7212b;
  border-color: #c7212b;
  margin: 0 12%;
  position: relative;
  margin-top: 21px;
}

.sdwan::before {
  content: "";
  position: absolute;
  height: 21px;
  top: -22px;
  left: 50%;
  border-left: 1px solid #83909e;
}

.sdwan span {
  color: #fff;
}

.vertical {
  height: 20px;
  border-left: 1px solid #83909e;
  margin-left: 50%;
}

.business {
  margin: 0 12%;
}

.cloud {
  text-align: center;
  color: #d0d4db;
  font-size: 12px;
}

.diagram > p {
  font-size: 12px;
  text-align: center;
  margin: 22px 0 0;
}

/* SD-WAN Pricing */

.sdwan-pricing {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  margin-top: 60px;
  border-top: 1px solid #41454c;
  border-bottom: 1px solid #41454c;
}

.sdwan-pricing > div {
  padding: 30px 25px 30px 0;
}

.sdwan-pricing .eyebrow {
  font-size: 12px;
  margin-bottom: 14px;
}

.sdwan-pricing h3 {
  font-size: 21px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.sdwan-pricing p {
  font-size: 12px;
  margin: 0;
}

.sdwan-pricing > a {
  padding: 30px 24px;
  border-left: 1px solid #41454c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.sdwan-pricing > a:hover {
  background: #252930;
}

.sdwan-pricing span {
  font-size: 13px;
}

.sdwan-pricing strong {
  font-size: 33px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.sdwan-pricing small {
  font-size: 12px;
  color: #abb3be;
  letter-spacing: 0;
}

.sdwan-pricing span:last-child {
  color: #b4bbc4;
  font-size: 12px;
}

.dark-note {
  font-size: 13px;
  margin-top: 22px;
}

/* Locations */

.locations {
  border: 1px solid var(--line);
  padding: 35px;
  text-align: center;
  background: var(--soft);
}

.locations > strong {
  font-size: 135px;
  color: var(--red);
  letter-spacing: -0.075em;
  font-weight: 500;
  line-height: 1.2;
}

.locations > div {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.locations p {
  font-size: 13px;
  margin: 15px auto 25px;
  max-width: 240px;
}

.location-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.location-tags span {
  font-size: 12px;
  letter-spacing: 0.08em;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}

/* Why Grid */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-grid article {
  border-top: 1px solid #bfc4c8;
  padding-top: 20px;
}

.why-grid span {
  font-size: 12px;
  color: var(--red);
}

.why-grid h3 {
  font-size: 21px;
  margin-top: 24px;
}

.why-grid p {
  font-size: 14px;
}

.support-note {
  font-size: 13px;
  margin-top: 25px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
}

/* Use Cases */

.use-cases article {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
  align-items: baseline;
}

.use-cases span {
  color: var(--red);
  font-size: 12px;
}

.use-cases h3 {
  font-size: 22px;
  margin: 0;
}

.use-cases p {
  font-size: 14px;
  margin: 0;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 45px;
}

.steps article {
  border-top: 1px solid #bec4c9;
  padding-top: 20px;
}

.steps span {
  font-size: 30px;
  color: var(--red);
}

.steps h3 {
  font-size: 22px;
  margin-top: 30px;
}

.steps p {
  font-size: 14px;
}

/* Coverage */

.coverage {
  padding: 35px;
  background: var(--soft);
  border-left: 3px solid var(--red);
}

.coverage h3 {
  font-size: 36px;
}

.coverage ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  line-height: 2;
}

.coverage li {
  border-bottom: 1px solid var(--line);
  padding: 5px 0;
  font-size: 14px;
}

.coverage p {
  font-size: 12px;
  margin: 20px 0 0;
}

/* Case Placeholder */

.case-placeholder {
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px dashed #b7bcc1;
  border-bottom: 1px dashed #b7bcc1;
}

.case-placeholder .eyebrow {
  color: var(--muted);
}

.case-placeholder p {
  margin: 8px 0 3px;
}

.case-placeholder > span:last-child {
  font-size: 12px;
  color: var(--muted);
}

/* FAQ */

.faq {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 90px;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 19px 30px 19px 0;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  list-style: none;
  line-height: 1.5;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  color: var(--red);
  font-size: 21px;
  top: 14px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  font-size: 14px;
  margin: 0 20px 20px 0;
}

/* Contact */

.contact {
  background: #eeeef0;
  padding: 75px 0 35px;
  border-top: 4px solid var(--red);
}

.contact > .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contact h2 {
  font-size: 40px;
}

.contact .actions {
  flex-direction: column;
  align-items: flex-start;
}

.contact-bottom {
  width: 100%;
  display: flex;
  gap: 30px;
  border-top: 1px solid #ccc;
  padding-top: 25px;
  font-size: 14px;
}

/* Footer */

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
  padding: 50px 0;
}

.footer-main p {
  font-size: 13px;
}

.footer-main > div {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 9px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom > span:nth-child(2) {
  max-width: 450px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-bottom: 26px;
  font-size: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Skip Link */

.skip {
  position: fixed;
  left: 10px;
  top: -100px;
  background: white;
  padding: 15px;
  z-index: 100;
}

.skip:focus {
  top: 10px;
}

/* Additional Overrides */

.service p,
.why-grid p,
.steps p,
.use-cases p,
.faq details p {
  font-size: 16px;
}

.service-end {
  letter-spacing: 0.04em;
}

.sdwan-pricing .eyebrow {
  letter-spacing: 0.05em;
}

/* Large Screens */

@media (min-width: 1450px) {
  .hero {
    padding-top: 76px;
  }

  .hero-media {
    height: 350px;
  }
}

/* Screens <= 1100px */

@media (max-width: 1100px) {
  .wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  nav {
    gap: 16px;
  }

  .hero-grid {
    gap: 30px;
    grid-template-columns: 1.2fr 1fr;
  }

  h1 {
    font-size: 50px;
  }

  .split,
  .resilience {
    gap: 50px;
  }

  .service {
    padding: 22px 18px;
  }

  .price {
    padding: 22px;
  }

  .price.featured {
    padding-top: 20px;
  }

  .sdwan-pricing strong {
    font-size: 29px;
  }

  .faq {
    gap: 45px;
  }
}

/* Screens <= 850px */

@media (max-width: 850px) {
  .utility .wrap > span {
    font-size: 12px;
  }

  .utility a:not(:last-child) {
    display: none;
  }

  .nav {
    min-height: 80px;
  }

  .menu {
    display: flex;
    gap: 14px;
    background: none;
    border: 1px solid var(--line);
    padding: 7px 12px;
    font-size: 14px;
  }

  nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px 30px;
    box-shadow: 0 10px 20px #0001;
    align-items: stretch;
  }

  nav.open {
    display: flex;
    flex-direction: column;
  }

  nav > a {
    padding: 9px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 600px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-media {
    margin-top: 30px;
    height: 280px;
  }

  .proof {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
  }

  .proof > div:nth-child(3) {
    border: 0;
    padding-left: 0;
  }

  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .section-head {
    gap: 30px;
    align-items: start;
  }

  .section-head > p {
    max-width: 280px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service:nth-child(2) {
    border-right: 0;
  }

  .service:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service h3 br {
    display: none;
  }

  .split,
  .resilience {
    gap: 35px;
  }

  .pricing-grid {
    gap: 10px;
  }

  .price h3 {
    font-size: 24px;
  }

  .amount {
    font-size: 43px;
  }

  .price .button {
    padding: 13px 10px;
    font-size: 12px;
    gap: 8px;
  }

  .tag {
    font-size: 12px;
  }

  .price ul {
    font-size: 12px;
  }

  .price > p {
    min-height: 60px;
  }

  .sdwan-pricing {
    grid-template-columns: repeat(3, 1fr);
  }

  .sdwan-pricing > div {
    grid-column: 1 / -1;
    border-bottom: 1px solid #41454c;
  }

  .sdwan-pricing > a:first-of-type {
    border-left: 0;
  }

  .why-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact h2 {
    font-size: 35px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .diagram {
    padding: 25px 18px;
  }

  .paths {
    gap: 12px;
  }

  .paths > div {
    padding: 10px;
  }

  .paths b {
    font-size: 12px;
  }
}

/* Screens <= 600px */

@media (max-width: 600px) {
  .wrap {
    padding-left: 22px;
    padding-right: 22px;
  }

  .utility .wrap {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .utility .wrap > span {
    max-width: 190px;
    font-size: 12px;
    letter-spacing: 0.035em;
  }

  .utility .wrap a {
    font-size: 12px;
  }

  .nav img {
    width: 160px;
    height: auto;
  }

  h1 {
    font-size: 44px;
    letter-spacing: -0.055em;
  }

  .hero-grid {
    gap: 22px;
  }

  .eyebrow {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .hero .actions {
    gap: 17px;
  }

  .hero-media {
    height: 240px;
  }

  .image-caption {
    font-size: 12px;
    left: 17px;
    right: 17px;
    gap: 20px;
  }

  .media-label {
    left: 17px;
    font-size: 25px;
  }

  .proof {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .proof strong {
    font-size: 29px;
  }

  .proof p {
    font-size: 12px;
  }

  .proof > div {
    padding-left: 18px;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .section-head > p {
    max-width: none;
    margin-top: 20px;
  }

  .section-head h2 {
    font-size: 34px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service {
    padding: 21px 15px;
  }

  .service h3 {
    font-size: 21px;
  }

  .service p {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .service-end {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .number {
    margin-bottom: 25px;
  }

  .split,
  .resilience {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bandwidth {
    padding: 28px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .price {
    padding: 28px;
  }

  .price.featured {
    padding-top: 26px;
  }

  .price h3 {
    font-size: 32px;
  }

  .price > p {
    min-height: 0;
  }

  .tag {
    font-size: 12px;
    margin-bottom: 23px;
  }

  .amount {
    font-size: 52px;
  }

  .price ul {
    font-size: 14px;
  }

  .price .button {
    padding: 15px 19px;
    font-size: 14px;
  }

  .pricing-note {
    font-size: 12px;
  }

  .sdwan-pricing {
    grid-template-columns: 1fr;
  }

  .sdwan-pricing > a {
    border-left: 0;
    border-bottom: 1px solid #41454c;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px 0;
  }

  .sdwan-pricing > a:last-child {
    border-bottom: 0;
  }

  .sdwan-pricing strong {
    text-align: right;
  }

  .sdwan-pricing span:last-child {
    grid-column: 1 / -1;
  }

  .why-grid {
    gap: 25px;
  }

  .why-grid h3 {
    font-size: 20px;
  }

  .why-grid p {
    font-size: 13px;
  }

  .use-cases article {
    grid-template-columns: 25px 1fr;
    gap: 10px;
  }

  .use-cases p {
    grid-column: 2;
  }

  .use-cases h3 {
    font-size: 21px;
  }

  .steps {
    gap: 22px;
  }

  .steps h3 {
    font-size: 20px;
  }

  .steps p {
    font-size: 13px;
  }

  .faq summary {
    font-size: 14px;
  }

  .contact h2 {
    font-size: 33px;
  }

  .contact-bottom {
    flex-wrap: wrap;
    gap: 13px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    font-size: 12px;
    gap: 12px;
  }

  .footer-main p {
    font-size: 12px;
  }

  .locations > strong {
    font-size: 110px;
  }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}