@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --ink: #2d4277;
  --blue: #0069ff;
  --blue-hover: #0056d6;
  --violet: #2a169b;
  --cyan: #2cd4d9;
  --pale: #f4f8fd;
  --line: #e9f1fd;
  --muted: #64748b;
  --white: #fff;
  --dark-bg: #202a41;
  --dark-border: #39455d;
  --text-muted-dark: #b7c0cf;
  --shadow: 0 8px 28px rgba(30,75,138,.10);
  --shadow-hover: 0 14px 34px rgba(30,75,138,.16);
  --container-width: 1140px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #ffffff;
  border: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

/* =========================================
   TOPBAR
========================================= */
.topbar {
  background: var(--dark-bg);
  color: #fff;
  font-size: 13px;
  padding: 11px 0;
  position: relative;
  z-index: 1001;
  transition: transform .25s ease, opacity .25s ease;
}

.topbar.topbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.topbar .contact {
  display: flex;
  align-items: center;
}

.topbar span {
  margin-right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar .location-pin {
  width: 11px;
  height: 11px;
  margin: 0 2px 2px 0;
  display: inline-block;
  position: relative;
  border: 2px solid var(--cyan);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.topbar .location-pin::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  top: 2px;
  left: 2px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
}

.topbar .email-icon {
  width: 13px;
  height: 10px;
  margin-right: 1px;
  display: inline-block;
  position: relative;
  border: 1.5px solid var(--cyan);
  border-radius: 2px;
}

.topbar .email-icon::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  top: -1px;
  left: 2px;
  border-right: 1.5px solid var(--cyan);
  border-bottom: 1.5px solid var(--cyan);
  transform: rotate(45deg);
}

.topbar .topbar-links a {
  margin-left: 20px;
  color: #fff;
}

.topbar a:hover, .nav a:hover {
  color: #7db1fb;
}

/* =========================================
   NAVBAR / HEADER & UBER MEGA MENU
========================================= */
.navbar {
  height: 88px;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 15px rgba(26,50,100,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  position: static;
}

.brand {
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

.brand i {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 18px;
  box-shadow: 12px 0 0 var(--cyan);
}

.brand strong {
  font-weight: 800;
}

.brand span {
  color: var(--blue);
}

.site-logo {
  display: block;
  width: min(245px, 48vw);
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.site-logo-header {
  width: min(245px, 48vw);
  max-height: 62px;
}

.site-logo-footer {
  width: min(235px, 100%);
  max-height: 58px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #233d62;
  font-size: 14px;
  font-weight: 600;
  height: 88px;
}

.nav > a {
  padding: 0 4px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav > a.active {
  color: var(--blue);
}

.nav > a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 3px 3px 0 0;
}

/* =========================================
   DROPDOWNS & UBER MEGA MENU
========================================= */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 88px;
}

/* Hover Bridge: ensures cursor moving down into menu never drops hover */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  display: none;
}

.nav-item-dropdown:hover::after,
.nav-item-dropdown.open::after {
  display: block;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #233d62;
  height: 88px;
  padding: 0 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-toggle:hover,
.nav-item-dropdown:hover > .nav-dropdown-toggle,
.nav-item-dropdown.open > .nav-dropdown-toggle {
  color: var(--blue);
}

.nav-dropdown-toggle.active {
  color: var(--blue);
}

.nav-dropdown-toggle.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 3px 3px 0 0;
}

.nav-arrow {
  font-size: 11px;
  transition: transform 0.2s ease;
  line-height: 1;
}

.nav-item-dropdown:hover .nav-arrow,
.nav-item-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}

/* Default Dropdown Floating Card */
.nav-dropdown-menu {
  display: none !important;
  position: absolute;
  top: calc(100% + 4px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
  z-index: 99999;
}

.nav-item-dropdown:hover > .nav-dropdown-menu,
.nav-item-dropdown.open > .nav-dropdown-menu {
  display: block !important;
  animation: fadeInMenu 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInMenu {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   SERVICES UBER / MEGA MENU
========================================= */
.services-uber-menu {
  left: -120px;
  width: 780px;
  padding: 24px;
}

.uber-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.1fr;
  gap: 20px;
  align-items: stretch;
}

.uber-column {
  display: flex;
  flex-direction: column;
}

.uber-items-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.uber-featured-column {
  background: linear-gradient(145deg, #f0f7ff 0%, #e2efff 100%);
  border: 1px solid #cce3fe;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.uber-featured-box h4 {
  font-size: 16px;
  color: var(--ink);
  margin: 10px 0 6px;
  font-weight: 700;
  line-height: 1.3;
}

.uber-featured-box p {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 14px;
}

.uber-badge {
  display: inline-block;
  background: var(--blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* =========================================
   SIGN IN MENU
========================================= */
.signin-dropdown {
  margin-left: 6px;
}

.btn-nav-signin {
  background: rgba(0, 105, 255, 0.08);
  color: var(--blue);
  height: 42px;
  padding: 0 18px;
  border-radius: 24px;
  border: 1px solid rgba(0, 105, 255, 0.2);
  font-weight: 600;
  align-self: center;
  transition: all 0.2s ease;
}

.btn-nav-signin:hover,
.signin-dropdown:hover > .btn-nav-signin,
.signin-dropdown.open > .btn-nav-signin {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.signin-icon {
  font-size: 14px;
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 22px;
}

.signin-menu {
  right: 0;
  left: auto;
  width: 320px;
  padding: 18px;
}

.signin-menu-header {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink);
}

/* Dropdown Groups & Links */
.dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-group-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 6px;
  display: block;
}

.dropdown-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 10px 0;
}

.dropdown-link {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px;
  padding: 9px 10px !important;
  border-radius: 8px;
  transition: all 0.15s ease;
  color: var(--ink) !important;
  text-decoration: none;
  background: transparent;
  line-height: 1.3;
  height: auto !important;
}

.dropdown-link::after {
  display: none !important;
}

.dropdown-link:hover {
  background: #f4f8fd !important;
  color: var(--blue) !important;
  transform: translateX(3px);
}

.dropdown-link.active {
  background: rgba(0, 105, 255, 0.08) !important;
  color: var(--blue) !important;
}

.link-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 1px;
}

.nav .link-icon,
.nav .signin-icon {
  max-width: 28px;
  max-height: 28px;
}

.dropdown-link div {
  display: flex;
  flex-direction: column;
}

.dropdown-link strong {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.dropdown-link:hover strong {
  color: var(--blue);
}

.dropdown-link small {
  font-size: 11px;
  color: #64748b;
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.3;
}

.inline-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: -4px;
  margin-right: 4px;
}

.category-inline-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
}

/* Signup Highlight in Sign In Menu */
.signup-highlight {
  background: linear-gradient(135deg, rgba(0, 105, 255, 0.08) 0%, rgba(44, 212, 217, 0.12) 100%) !important;
  border: 1px solid rgba(0, 105, 255, 0.18);
}

.signup-highlight:hover {
  background: linear-gradient(135deg, rgba(0, 105, 255, 0.16) 0%, rgba(44, 212, 217, 0.22) 100%) !important;
}

.signup-highlight strong {
  color: var(--blue);
}

.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
  padding: 6px;
}

.link-icon {
  font-size: 20px;
  line-height: 1.2;
  flex-shrink: 0;
}

.dropdown-link div {
  display: flex;
  flex-direction: column;
}

.dropdown-link strong {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.dropdown-link:hover strong {
  color: var(--blue);
}

.dropdown-link small {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.3;
}

/* Signup Highlight in Sign In Menu */
.signup-highlight {
  background: linear-gradient(135deg, rgba(0, 105, 255, 0.07) 0%, rgba(44, 212, 217, 0.1) 100%);
  border: 1px solid rgba(0, 105, 255, 0.15);
}

.signup-highlight:hover {
  background: linear-gradient(135deg, rgba(0, 105, 255, 0.14) 0%, rgba(44, 212, 217, 0.18) 100%);
}

.signup-highlight strong {
  color: var(--blue);
}

.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
  padding: 6px;
}

/* =========================================
   SECTION HEADINGS & LAYOUTS
========================================= */
.section {
  padding: 80px 0;
}

.bg-pale {
  background: var(--pale);
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-heading p {
  font-size: 16px;
  color: var(--muted);
  max-width: 680px;
  margin-inline: auto;
}

/* =========================================
   PAGE HERO & HOMEPAGE HERO
========================================= */
.page-hero {
  --hero-image: var(--hero-image-desktop);
  position: relative;
  isolation: isolate;
  background-color: #111c45;
  background-image: linear-gradient(90deg, rgba(17, 28, 69, 0.98) 0%, rgba(17, 28, 69, 0.9) 30%, rgba(17, 28, 69, 0.48) 58%, rgba(17, 28, 69, 0) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin-inline: auto;
}

.hero-section {
  --hero-image: var(--hero-image-desktop);
  position: relative;
  isolation: isolate;
  background-color: #111c45;
  background-image: linear-gradient(90deg, rgba(17, 28, 69, 0.98) 0%, rgba(17, 28, 69, 0.9) 30%, rgba(17, 28, 69, 0.48) 58%, rgba(17, 28, 69, 0) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.2px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.stat-card h3 {
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 14px;
  color: var(--muted);
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,105,255,0.25);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: var(--pale);
  border-color: var(--blue);
  color: var(--blue);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-sm {
  padding: 9px 22px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.full-width {
  width: 100%;
}

/* =========================================
   CARDS & GRIDS
========================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card-icon img,
.info-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services-overview .card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  margin: 0 auto 18px;
}

.services-overview .card-icon img {
  width: 72px;
  height: 72px;
}

.feature-card h3 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
}

.feature-card .inline-icon {
  width: 36px;
  height: 36px;
  vertical-align: -8px;
  margin-right: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
}

.card-link:hover {
  text-decoration: underline;
}

.step-num {
  width: 38px;
  height: 38px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

.step-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 105, 255, 0.1);
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Summary Cards */
.summary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-card h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 14px;
}

.summary-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.highlighted-summary {
  position: relative;
  border-color: var(--blue);
  background: #ffffff;
}

.popular-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}

/* =========================================
   PRICING GRIDS & CARDS
========================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured-plan {
  border: 2px solid var(--blue);
  transform: scale(1.02);
}

.pricing-card.featured-plan:hover {
  transform: scale(1.02) translateY(-4px);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.plan-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plan-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.plan-description {
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
  margin: 0 0 20px;
  flex-grow: 1;
}

.plan-description ul {
  margin: 0;
  padding-left: 18px;
}

.plan-description li {
  padding: 2px 0;
}

.plan-description p {
  margin: 0 0 5px;
}

.plan-footer {
  margin-top: auto;
}

.price-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 10px 0;
}

.price-amount span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

/* =========================================
   INSTANCE PICKER & SIZE TABLE
========================================= */
.instance-picker {
  display: flex;
  flex-direction: column;
  gap: 36px;
  scroll-margin-top: 110px;
}

.instance-picker-head h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.instance-substep {
  margin-top: 24px;
}

.instance-substep h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.network-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.badge-recommended {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 2px 7px;
  border-radius: 6px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.region-flag {
  display: inline-block;
  width: 24px;
  height: 16px;
  border-radius: 3px;
  flex: 0 0 24px;
  object-fit: cover;
}

.choice-card.region-card {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}

.instance-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(30, 75, 138, 0.05);
}

.instance-step h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.instance-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.instance-step p {
  color: var(--muted);
  font-size: 14px;
}

.is-hidden {
  display: none !important;
}

.platform-grid,
.plan-type-grid,
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.choice-card.region-card {
  padding: 14px 18px;
}

.choice-card {
  text-align: left;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}

.choice-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}

.choice-card.plan-type-card {
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

.choice-card.plan-type-card img {
  flex: 0 0 36px;
  margin: 2px 0 0;
}

.plan-type-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.choice-card strong {
  color: var(--ink);
  font-size: 15px;
}

.choice-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.choice-card:hover,
.blueprint-card:hover {
  border-color: #cbd5e1;
}

.choice-card.is-selected,
.blueprint-card.is-selected {
  border-color: var(--blue);
  background: #f8fbff;
  box-shadow: 0 0 0 1px var(--blue);
}

.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.blueprint-card {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.blueprint-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blueprint-icon img {
  width: 28px;
  height: 28px;
}

.blueprint-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.blueprint-card strong {
  font-size: 14px;
  color: var(--ink);
}

.blueprint-card span {
  font-size: 12px;
  color: var(--muted);
}

.instance-config-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.instance-name-group {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.instance-names-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.instance-name-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.instance-name-field label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.instance-name-field input {
  padding: 10px 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  max-width: 400px;
  transition: border-color 0.15s ease;
}

.instance-name-field input:focus {
  outline: none;
  border-color: var(--blue);
}

.instance-name-field input:user-invalid {
  border-color: #ef4444;
}

.instance-qty-field {
  flex: 0 0 100px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.instance-qty-field label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.instance-qty-field input {
  padding: 10px 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  width: 100%;
  max-width: 100px;
  text-align: center;
  transition: border-color 0.15s ease;
}

.instance-qty-field input:focus {
  outline: none;
  border-color: var(--blue);
}

.instance-name-help {
  font-size: 13px;
  color: var(--muted);
}

#order-bar-button.is-disabled,
.order-bar-button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.size-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.size-heading h3 {
  margin-bottom: 2px;
}

.size-sort {
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.size-sort select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-family: inherit;
  color: var(--ink);
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.size-card {
  background: #fff;
  border: 1px solid #9ca3af;
  border-radius: 8px;
  padding: 12px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.size-card[hidden] {
  display: none;
}

.size-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(0, 105, 255, 0.22);
}

.size-card.is-selected {
  border-color: var(--blue);
  background: #eef8ff;
  box-shadow: 0 0 0 1px var(--blue);
}

.size-card-head {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.size-radio {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border: 1px solid #9ca3af;
  border-radius: 50%;
}

.size-card.is-selected .size-radio {
  border: 5px solid var(--blue);
  background: #fff;
}

.size-price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
}

.size-period {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.size-divider {
  width: 126px;
  height: 1px;
  margin: 12px 0 12px 25px;
  background: #b6beca;
}

.size-specs {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--muted);
}

.size-specs > span {
  display: block;
}

.size-specs strong {
  margin-right: 4px;
  font-weight: 700;
  color: var(--ink);
}

.size-row-label {
  font-weight: 600;
  color: var(--ink);
}

.size-plan-type {
  display: flex !important;
  align-items: center;
  gap: 5px;
  color: #475569;
}

.size-plan-type img {
  width: 20px;
  height: 20px;
  filter: grayscale(1) saturate(0) brightness(0.6);
}

.size-network {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #475569;
  margin-bottom: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.size-empty {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.pricing-card .size-divider {
  width: 100%;
  margin: 16px 0;
}

.pricing-card .size-specs {
  flex-grow: 1;
  margin-bottom: 32px;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}

.pricing-card .size-specs > span {
  display: block;
}

.pricing-card .size-specs strong {
  margin-right: 4px;
  font-weight: 700;
  color: var(--blue);
}

.plan-specs {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.plan-specs li {
  font-size: 14px;
  color: #334155;
  padding: 8px 0;
  border-bottom: 1px solid rgba(233, 241, 253, 0.6);
}

.plan-specs li strong {
  color: var(--ink);
}

.order-bar {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(30, 75, 138, 0.08);
}

.order-bar.is-hidden {
  display: none;
}

.order-bar-info {
  min-width: 0;
  flex: 1 1 auto;
}

.order-bar-label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.order-bar-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-bar-line {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.order-bar-line.order-bar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.order-bar-line.order-bar-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}

#order-bar-button {
  flex: 0 0 auto;
  white-space: nowrap;
  align-self: center;
}

@media (max-width: 720px) {
  .order-bar {
    flex-direction: column;
  }

  #order-bar-button {
    width: 100%;
    text-align: center;
  }
}

.billing-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 30px;
  line-height: 1.6;
}

/* =========================================
   DOMAIN SEARCH BOX
========================================= */
.search-box-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px 36px;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin-inline: auto;
}

.search-box-card h2 {
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 10px;
}

.search-box-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.domain-search-form {
  display: flex;
  gap: 12px;
  max-width: 720px;
  margin-inline: auto;
}

.domain-search-form input {
  flex-grow: 1;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  background: var(--pale);
}

.domain-search-form input:focus {
  border-color: var(--blue);
  background: #fff;
}

.domain-search-form select {
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  background: var(--pale);
}

.domain-pills {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 14px;
  color: var(--muted);
}

.domain-pills span strong {
  color: var(--blue);
}

/* Domain Search Live AJAX Results Box */
.domain-results-box {
  margin-top: 20px;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  text-align: left;
  animation: fadeIn 0.25s ease-out;
}

.domain-results-box.loading {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  text-align: center;
  font-size: 14.5px;
}

.domain-results-box.available {
  background: #f0fdf4;
  border: 1px solid #86efac;
}

.domain-results-box.taken {
  background: #fef2f2;
  border: 1px solid #fca5a5;
}

.domain-result-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.domain-result-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.domain-result-status .status-icon {
  font-size: 24px;
  line-height: 1;
}

.domain-name-highlight {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.domain-results-box.available .domain-name-highlight {
  color: #15803d;
}

.domain-results-box.taken .domain-name-highlight {
  color: #b91c1c;
}

.domain-price-tag {
  font-size: 13.5px;
  color: #64748b;
  margin-top: 2px;
}

.domain-price-tag strong {
  color: var(--ink);
  font-weight: 700;
}

/* =========================================
   GUARANTEE, APPS, SERVICE AREAS, FAQ
========================================= */
.guarantee-box {
  max-width: 760px;
  margin-inline: auto;
  padding: 20px;
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.guarantee-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.guarantee-box h2 {
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 14px;
}

.guarantee-box p {
  font-size: 16px;
  color: var(--muted);
}

.app-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.app-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--pale);
}

.app-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.app-item strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
}

.app-item span:not(.app-icon) {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .app-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}

.service-areas-grid span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 30px;
  box-shadow: var(--shadow);
}

.faq-item h4 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================
   TESTIMONIALS & CTA BANNER
========================================= */
.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(100%, 1240px);
  max-width: 1240px;
  margin-inline: auto;
}

.testimonial-viewport {
  flex: 1;
  min-width: 0;
  overflow: visible;
  height: 370px;
  position: relative;
}

.testimonial-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.testimonial-box {
  position: absolute;
  top: 30px;
  left: 50%;
  width: calc(50% - 18px);
  height: 304px;
  margin: 0;
  overflow: hidden;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px 38px;
  box-shadow: var(--shadow);
  transform: translateX(-50%) scale(0.82);
  opacity: 0;
  filter: blur(2px);
  pointer-events: none;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}

.testimonial-box.testimonial-current {
  top: 0;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  filter: none;
  z-index: 3;
  pointer-events: auto;
  box-shadow: var(--shadow-hover);
}

.testimonial-box.testimonial-prev,
.testimonial-box.testimonial-next {
  opacity: 0.48;
  filter: blur(1.5px);
  z-index: 2;
  pointer-events: auto;
}

.testimonial-box.testimonial-prev {
  transform: translateX(calc(-50% - 370px)) scale(0.82);
}

.testimonial-box.testimonial-next {
  transform: translateX(calc(-50% + 370px)) scale(0.82);
}

.testimonial-box.testimonial-hidden {
  transform: translateX(-50%) scale(0.7);
  opacity: 0;
  z-index: 1;
}

.testimonial-control {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--blue);
  font-size: 21px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 5;
  opacity: 0.72;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.testimonial-control:hover,
.testimonial-control:focus-visible {
  background: var(--pale);
  opacity: 1;
  outline: none;
}

.quote-text {
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 22px;
}

.quote-author strong {
  display: block;
  font-size: 16px;
  color: var(--blue);
}

.quote-author span {
  font-size: 13px;
  color: var(--muted);
}

.testimonial-stars {
  display: block;
  width: 128px;
  height: 25px;
  margin: 0 auto 18px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .testimonial-carousel {
    gap: 8px;
  }

  .testimonial-viewport {
    height: 370px;
    overflow: hidden;
  }

  .testimonial-box {
    top: 10px;
    width: calc(100% - 8px);
    height: 350px;
    padding: 32px 24px;
  }

  .quote-text {
    font-size: 15px;
    line-height: 1.65;
  }

  .testimonial-box.testimonial-prev,
  .testimonial-box.testimonial-next {
    opacity: 0;
    pointer-events: none;
  }

  .testimonial-control {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}

.cta-banner {
  background: #151d30;
  color: #fff;
  padding: 80px 0;
}


.cta-banner h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 17px;
  color: var(--text-muted-dark);
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 30px;
}

/* =========================================
   CONTACT PAGE SPECIFICS
========================================= */
.contact-section {
  padding: 70px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.contact-form-card, .contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.contact-form-card h2, .contact-info-card h2 {
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-row {
  display: flex;
  gap: 16px;
}

.contact-form .form-col {
  flex: 1;
}

@media (max-width: 640px) {
  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--pale);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 105, 255, 0.12);
}

.alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.info-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-block strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.info-block p, .info-block a {
  font-size: 14px;
  color: var(--muted);
}

.info-block a:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background: var(--dark-bg);
  color: var(--text-muted-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  gap: 46px;
}

.footer h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.footer p, .footer li {
  font-size: 14px;
  line-height: 1.9;
}

.footer p {
  margin: 0 0 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin: 7px 0;
}

.footer a {
  color: var(--text-muted-dark);
}

.footer a:hover {
  color: #fff;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #53627d;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  transition: all 0.2s ease;
}

.social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.copyright {
  margin-top: 60px;
  border-top: 1px solid var(--dark-border);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted-dark);
}

.back-to-top {
  position: fixed;
  right: 0;
  bottom: 24px;
  z-index: 9000;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 105, 255, 0.28);
  border-radius: 10px 0 0 10px;
  background: #3ddee0;
  color: #202a41;
  box-shadow: var(--shadow);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-to-top::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 13px solid currentColor;
  transform: translate(-50%, -58%);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #2cd4d9;
  outline: none;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 0;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

/* =========================================
   LEGAL PAGES
========================================= */
.legal-container {
  max-width: 900px;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

.legal-notice-box {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 16px 20px;
  border-radius: 8px;
  color: #92400e;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.legal-intro {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.7;
}

.legal-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.legal-card h2:first-of-type {
  margin-top: 16px;
}

.legal-card p {
  font-size: 14px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-card a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-bullet-list {
  margin: 16px 0 24px 20px;
}

.legal-bullet-list li {
  font-size: 14px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 12px;
  list-style-type: disc;
}

.legal-address-box {
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  margin-top: 16px;
}

/* =========================================
   COOKIE CONSENT BANNER (SLIDE / POPUP)
========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(32, 42, 65, 0.98);
  backdrop-filter: blur(10px);
  color: #fff;
  z-index: 9999;
  border-top: 1px solid var(--dark-border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
  padding: 18px 0;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cookie-banner-text p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--cyan);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner-text a:hover {
  color: #fff;
}

.cookie-banner-actions {
  flex-shrink: 0;
}

/* =========================================
   FAQ KNOWLEDGE BASE & ACCORDION
========================================= */
.faq-category-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.faq-cat-nav-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: block;
}

.faq-cat-nav-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
}

.faq-cat-icon {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  margin-inline: auto;
  display: block;
  margin-bottom: 12px;
}

.faq-cat-icon img,
.cat-icon-lg img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
}

.faq-cat-nav-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.faq-cat-nav-card p {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
}

.faq-category-block {
  margin-bottom: 60px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px;
}

.category-header-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cat-icon-lg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  flex: 0 0 32px;
}

.category-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

.category-header p {
  font-size: 14px;
  color: var(--muted);
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 880px;
  margin-inline: auto;
}

.faq-accordion-item {
  border: 1px solid #dbe6f6;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(32, 42, 65, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.faq-accordion-item:hover {
  border-color: #0069ff;
  box-shadow: 0 6px 18px rgba(0, 105, 255, 0.12);
}

.faq-accordion-item.open {
  background: #ffffff;
  border: 2px solid var(--blue);
  box-shadow: 0 8px 24px rgba(0, 105, 255, 0.16);
}

.faq-accordion-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-accordion-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  padding-right: 16px;
}

.accordion-toggle-icon {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  transition: transform 0.2s ease;
}

.faq-accordion-body {
  display: none;
  padding: 0 24px 22px;
  border-top: 1px solid rgba(233, 241, 253, 0.8);
}

.faq-accordion-item.open .faq-accordion-body {
  display: block;
}

.faq-answer-content p {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.8;
  margin: 16px 0 0;
}

.faq-meta-bar {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: flex-end;
}

.direct-faq-link {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
}

.direct-faq-link:hover {
  text-decoration: underline;
}

/* Single FAQ View Page */
.single-faq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px 38px;
  box-shadow: var(--shadow);
}

.single-faq-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.single-faq-content h2 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 16px;
}

.faq-answer-text p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #334155;
}

.single-faq-related {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.single-faq-related h3 {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 14px;
}

.related-faq-list li {
  margin-bottom: 10px;
}

.related-faq-list a {
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
}

.related-faq-list a:hover {
  text-decoration: underline;
}

.single-faq-cta {
  margin-top: 36px;
  padding: 24px;
  background: var(--pale);
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: center;
}

.back-to-faq {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  margin: 0 12px 14px 0;
  vertical-align: middle;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.page-hero .back-to-faq + .badge {
  display: inline-flex;
  vertical-align: middle;
}

/* =========================================
   BLOG STYLES (HUB, CATEGORIES, POST READER)
========================================= */
.pb-0 {
  padding-bottom: 0 !important;
}

.blog-cat-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.blog-cat-pill {
  padding: 10px 20px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.blog-cat-pill:hover,
.blog-cat-pill.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 105, 255, 0.22);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
}

.blog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 12.5px;
}

.blog-badge {
  background: rgba(0, 105, 255, 0.08);
  color: var(--blue);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.blog-date {
  color: var(--muted);
}

.blog-card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 12px;
}

.blog-card-title a {
  color: inherit;
}

.blog-card-title a:hover {
  color: var(--blue);
}

.blog-card-summary {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 13px;
}

.blog-author {
  color: #64748b;
  font-weight: 500;
}

.blog-read-more {
  color: var(--blue);
  font-weight: 600;
}

.blog-read-more:hover {
  text-decoration: underline;
}

/* Blog Pagination & Load More Controls */
.blog-pagination-wrapper {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.blog-load-more-btn {
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(0, 105, 255, 0.2);
  transition: all 0.2s ease;
  cursor: pointer;
}

.blog-load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 105, 255, 0.3);
}

.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-link {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.pagination-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #f8fbff;
  transform: translateY(-1px);
}

.pagination-link.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(0, 105, 255, 0.28);
}

.pagination-link.disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
  background: #f1f5f9;
}

.pagination-link.nav-arrow {
  padding: 0 16px;
}

.pagination-info {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}

/* Single Post Article Reader */
.single-post-header {
  position: relative;
  isolation: isolate;
  background-color: #111c45;
  background-image: linear-gradient(90deg, rgba(8, 17, 50, 0.96) 0%, rgba(8, 17, 50, 0.88) 38%, rgba(8, 17, 50, 0.64) 72%, rgba(8, 17, 50, 0.48) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.single-post-header > * {
  position: relative;
  z-index: 1;
}

.single-post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
}

.single-post-meta .back-to-faq {
  margin: 0;
  color: #ffffff;
}

.post-category-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.post-date {
  color: rgba(255, 255, 255, 0.78);
}

.single-post-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.8px;
  max-width: 900px;
  margin-inline: auto;
}

.blog-reading-container {
  max-width: 860px;
}

.single-post-content-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px;
  box-shadow: var(--shadow);
  margin-bottom: 50px;
}

.article-prose {
  font-size: 16px;
  line-height: 1.85;
  color: #334155;
}

.article-prose h3,
.article-prose h2,
.article-prose h4 {
  color: var(--ink);
  font-weight: 700;
  margin: 36px 0 16px;
  line-height: 1.35;
}

.article-prose h3 {
  font-size: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.article-prose p {
  margin-bottom: 20px;
}

.article-prose ul,
.article-prose ol {
  margin: 16px 0 24px 24px;
}

.article-prose li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.article-prose a {
  color: var(--blue);
  text-decoration: underline;
}

.post-cta-box {
  margin-top: 48px;
  padding: 30px;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.post-cta-text h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}

.post-cta-text p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

.related-posts-section h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 20px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.related-post-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-post-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
}

.related-post-card time {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.related-post-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 12px;
}

.related-post-card span {
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 600;
}

/* =========================================
   RESPONSIVE QUERIES
========================================= */
@media (max-width: 1024px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .pricing-card.featured-plan {
    transform: none;
  }
  .nav {
    gap: 12px;
  }
  .services-menu {
    min-width: 460px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Keep the desktop Services menu inside the viewport on smaller laptops. */
@media (min-width: 769px) and (max-width: 1500px) {
  .services-uber-menu {
    left: -25vw;
    right: 0;
    width: min(780px, calc(100vw - 32px));
    box-sizing: border-box;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .services-uber-menu {
    width: min(660px, calc(100vw - 32px));
    padding: 18px;
  }

  .services-uber-menu .uber-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .services-uber-menu .uber-featured-column {
    grid-column: 1 / -1;
  }

  .services-uber-menu .dropdown-link,
  .services-uber-menu .dropdown-link > div {
    min-width: 0;
  }

  .services-uber-menu .dropdown-link strong,
  .services-uber-menu .dropdown-link small {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 768px) {
  .page-hero,
  .hero-section,
  .single-post-header {
    --hero-image: var(--hero-image-mobile);
    background-image: linear-gradient(90deg, rgba(8, 17, 50, 0.98) 0%, rgba(8, 17, 50, 0.9) 48%, rgba(8, 17, 50, 0.54) 86%, rgba(8, 17, 50, 0.38) 100%), var(--hero-image);
    background-position: center;
  }

  .topbar-inner {
    justify-content: center;
  }
  .topbar .contact {
    display: none;
  }
  .topbar .topbar-links a {
    margin: 0 8px;
  }
  .navbar {
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 1100;
  }
  .site-logo {
    width: min(235px, 72vw);
    max-height: 58px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    background: #ffffff !important;
    background-color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible;
    z-index: 1000;
    padding: 8px 20px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow);
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    isolation: isolate;
    height: auto;
    min-height: 0;
    max-height: calc(100vh - 72px);
    box-sizing: border-box;
  }
  .nav.open {
    display: flex;
  }
  .nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: -1;
    pointer-events: none;
  }
  .nav a {
    padding: 9px 0;
    width: 100%;
    height: auto;
    min-height: 48px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--line);
  }
  .nav a.active::after {
    display: none;
  }

  /* Mobile Dropdowns */
  .nav-item-dropdown {
    width: 100%;
    height: auto;
    min-height: 0;
    flex-shrink: 0;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .nav-dropdown-toggle {
    padding: 9px 0;
    width: 100%;
    height: 48px;
    min-height: 48px;
    box-sizing: border-box;
    justify-content: space-between;
  }
  .nav-dropdown-toggle.active::after {
    display: none;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--pale);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: 100%;
    background-color: #f4f7fb;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    animation: none !important;
  }
  .nav-item-dropdown:hover > .nav-dropdown-menu {
    display: none !important;
  }
  .nav-item-dropdown.open > .nav-dropdown-menu {
    display: flex !important;
    position: static;
    flex-direction: column;
    gap: 8px;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .nav-item-dropdown.open > .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .services-uber-menu {
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px;
    overflow: hidden;
  }
  .services-uber-menu .uber-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .services-uber-menu .uber-column {
    min-width: 0;
    box-sizing: border-box;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
  }
  .services-uber-menu .uber-items-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .services-uber-menu .dropdown-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 8px;
    border-radius: 7px;
    min-width: 0;
    overflow: hidden;
  }

  .services-uber-menu .link-icon,
  .signin-menu .link-icon,
  .btn-nav-signin .signin-icon {
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
  }
  .services-uber-menu .dropdown-link > div {
    min-width: 0;
  }
  .services-uber-menu .dropdown-link small,
  .services-uber-menu .dropdown-link strong {
    display: block;
    overflow-wrap: anywhere;
  }
  .services-uber-menu .dropdown-link:hover,
  .services-uber-menu .dropdown-link:focus-visible {
    background: var(--pale);
  }
  .services-menu {
    min-width: 100%;
    grid-template-columns: 1fr;
  }
  .dropdown-divider {
    display: none;
  }
  .signin-dropdown {
    margin-left: 0;
    margin-top: 6px;
  }
  .btn-nav-signin {
    width: 100%;
    justify-content: center;
    padding: 9px 0;
    height: 38px;
  }

  .menu {
    display: block;
  }
  .page-hero h1, .hero-copy h1 {
    font-size: 32px;
  }
  .domain-search-form {
    flex-direction: column;
  }
  .pricing-grid-4 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-banner-actions {
    text-align: right;
  }
  .cookie-banner-actions .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .copyright {
    margin-top: 38px;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .page-hero,
  .hero-section,
  .single-post-header {
    --hero-image: var(--hero-image-tablet);
  }
}
