/*
Theme Name: Codex LocalWP Starter
Theme URI: https://example.local/
Author: Codex
Description: A WooCommerce-ready starter theme for Ejbynet's local WordPress design.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: codex-localwp-starter
*/

:root {
  --navy: #292761;
  --navy-deep: #16154a;
  --green: #8bc63f;
  --green-dark: #6bab27;
  --ink: #10122f;
  --muted: #646982;
  --line: #dfe3ef;
  --page: #f7f9ff;
  --panel: #ffffff;
  --soft: #eef7df;
  --shadow: 0 24px 70px rgba(22, 21, 74, 0.14);
}

.utility-menu,
.primary-menu,
.primary-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.utility-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.utility-menu li {
  display: inline-flex;
}

.utility-menu li:nth-child(3) {
  margin-left: auto;
}

.utility-menu a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-menu > li {
  position: relative;
}

.primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--navy-deep);
  font-weight: 850;
  text-decoration: none;
}

.primary-menu > li > a:hover,
.primary-menu > li.is-open > a,
.primary-menu > li:hover > a {
  background: var(--soft);
  color: var(--green-dark);
}

.primary-menu .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  min-width: 250px;
  max-width: min(560px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.primary-menu .menu-item-has-children:nth-child(2) .sub-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 4px;
  width: min(540px, calc(100vw - 32px));
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children.is-open > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.primary-menu .sub-menu a {
  width: 100%;
  min-height: 40px;
  justify-content: flex-start;
  border-radius: 10px;
}

.primary-menu .sub-menu a:hover {
  background: var(--soft);
  color: var(--green-dark);
}

.ejb-el-hero,
.ejb-el-section {
  background: var(--page);
}

.ejb-el-hero > .elementor-container,
.ejb-el-section > .elementor-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ejb-el-hero {
  padding: 86px 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: white;
}

.ejb-el-subhero {
  padding: 78px 0;
}

.ejb-el-section {
  padding: 72px 0;
}

.ejb-el-chip-nav {
  padding: 0;
  background: white;
  border-bottom: 1px solid var(--line);
}

.ejb-el-title .elementor-heading-title {
  color: inherit;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
  margin: 0;
}

.ejb-el-section-title .elementor-heading-title {
  color: var(--navy-deep);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.ejb-el-eyebrow .elementor-heading-title {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ejb-el-lead,
.ejb-el-lead p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.ejb-el-section p,
.ejb-el-page-copy p {
  color: var(--muted);
  font-size: 18px;
}

.ejb-el-showcase {
  background: white;
}

.ejb-copy-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.ejb-copy-grid article,
.ejb-centered-cta {
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 45px rgba(22, 21, 74, 0.06);
}

.ejb-copy-grid h2,
.ejb-copy-grid h3,
.ejb-centered-cta h2 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  line-height: 1.1;
}

.ejb-centered-cta {
  text-align: center;
}

.area-note {
  display: inline-flex;
  width: fit-content;
  max-width: 780px;
  padding: 12px 16px;
  border: 1px solid rgba(139, 198, 63, 0.5);
  border-radius: 12px;
  background: var(--soft);
  color: var(--navy-deep);
  font-weight: 750;
}

.search-band {
  background: white;
}

.search-shell {
  display: grid;
  gap: 22px;
}

.ejbynet-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 860px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--page);
  box-shadow: 0 18px 45px rgba(22, 21, 74, 0.08);
}

.ejbynet-search-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 16px;
  background: white;
  color: var(--navy-deep);
  font: inherit;
  font-size: 18px;
  outline: none;
}

.ejbynet-search-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(139, 198, 63, 0.2);
}

.search-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-quicklinks button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: white;
  color: var(--navy-deep);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.search-quicklinks button:hover {
  border-color: var(--green);
  background: var(--soft);
}

.search-count {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.search-result-card {
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 45px rgba(22, 21, 74, 0.06);
}

.search-result-card[hidden] {
  display: none;
}

.search-result-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-result-card h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 24px;
  line-height: 1.1;
}

.search-result-card h3 a {
  text-decoration: none;
}

.search-result-card p {
  margin: 0;
  color: var(--muted);
}

.search-result-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.search-result-terms small {
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--soft);
  color: var(--navy-deep);
  font-weight: 800;
}

.search-empty {
  max-width: 760px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
}

.search-empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-deep);
  font-size: 24px;
}

body.elementor-page .elementor-widget:not(:last-child) {
  margin-bottom: 18px;
}

@media (max-width: 1040px) {
  .primary-menu {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .ejb-copy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .utility-menu,
  .primary-menu {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-menu .sub-menu,
  .primary-menu .menu-item-has-children:nth-child(2) .sub-menu {
    position: static;
    display: none;
    width: 100%;
    max-width: 100%;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
  }

  .primary-menu .menu-item-has-children:hover > .sub-menu,
  .primary-menu .menu-item-has-children.is-open > .sub-menu,
  .primary-menu .menu-item-has-children:focus-within > .sub-menu {
    display: grid;
  }

  .ejb-el-hero,
  .ejb-el-section {
    padding: 52px 0;
  }

  .ejb-el-title .elementor-heading-title {
    font-size: 46px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.site-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.utility-bar {
  border-bottom: 1px solid var(--line);
  background: var(--navy-deep);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-left,
.utility-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.utility-bar a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.utility-bar a:hover {
  color: var(--green);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: min(260px, 42vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a,
.site-nav button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav button:hover {
  color: var(--green-dark);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 16px;
}

.nav-dropdown:hover > button,
.nav-dropdown.is-open > button,
.nav-dropdown:focus-within > button {
  background: var(--soft);
  color: var(--green-dark);
}

.nav-dropdown-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 50;
  width: min(360px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown-panel.is-wide {
  width: min(520px, calc(100vw - 32px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-dropdown-panel a {
  justify-content: flex-start;
  min-height: 42px;
  border-radius: 8px;
  color: var(--navy-deep);
}

.nav-dropdown-panel a:hover {
  background: var(--soft);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-actions-menu,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-actions-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.header-actions-menu li:first-child a,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  background: var(--green);
  color: var(--navy-deep);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(139, 198, 63, 0.28);
}

.login-link,
.header-actions-menu li:not(:first-child) a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.button.full {
  width: 100%;
  margin-top: auto;
  color: var(--navy-deep);
}

.text-link {
  display: inline-flex;
  justify-content: center;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

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

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 70px 0 82px;
  background:
    radial-gradient(circle at 84% 18%, rgba(139, 198, 63, 0.24), transparent 28%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 62%, #333079 100%);
  color: white;
}

.subpage-hero {
  padding: 76px 0;
  background:
    radial-gradient(circle at 86% 22%, rgba(139, 198, 63, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: white;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 42px;
  align-items: center;
}

.subpage-stat-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(139, 198, 63, 0.36);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(139, 198, 63, 0.1)),
    linear-gradient(160deg, rgba(22, 21, 74, 0.92), rgba(41, 39, 97, 0.72));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.subpage-stat-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -48px;
  top: -48px;
  border: 26px solid rgba(139, 198, 63, 0.22);
  border-radius: 999px;
}

.subpage-stat-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 74px;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 198, 63, 0.7), rgba(255, 255, 255, 0));
}

.stat-card-top,
.subpage-stat-card strong,
.subpage-stat-card p,
.stat-card-list {
  position: relative;
  z-index: 1;
}

.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stat-card-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--green);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 900;
}

.stat-card-signal {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle, rgba(139, 198, 63, 0.22) 0 16px, transparent 17px);
}

.subpage-stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.subpage-stat-card strong {
  max-width: 300px;
  font-size: 30px;
  line-height: 1.12;
}

.stat-card-list {
  display: grid;
  gap: 8px;
}

.stat-card-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.stat-card-list b {
  min-width: 28px;
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0;
}

.subpage-nav {
  position: sticky;
  top: 82px;
  z-index: 12;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.subpage-nav .site-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.subpage-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.subpage-nav a:hover {
  border-color: var(--green);
  background: var(--soft);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-strip article,
.price-panel,
.addon-list article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: 0 14px 36px rgba(16, 18, 47, 0.07);
}

.page-showcase-band {
  background: white;
}

.page-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.page-visual-card {
  --visual-accent: var(--green);
  --visual-accent-2: #20a6a0;
  min-height: 430px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(230px, 0.7fr);
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: white;
  box-shadow: var(--shadow);
}

.page-visual-card::before {
  content: "";
  position: absolute;
  inset: 28px 24px auto auto;
  width: 46%;
  height: 78%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 22px),
    linear-gradient(160deg, rgba(139, 198, 63, 0.22), rgba(255, 255, 255, 0.04));
  transform: skewX(-8deg);
}

.page-visual-card--support {
  --visual-accent: #8bc63f;
  --visual-accent-2: #52c7b8;
}

.page-visual-card--packages {
  --visual-accent: #8bc63f;
  --visual-accent-2: #f0c94a;
}

.page-visual-card--streaming {
  --visual-accent: #52c7b8;
  --visual-accent-2: #8bc63f;
}

.page-visual-card--sport {
  --visual-accent: #ffcc4d;
  --visual-accent-2: #8bc63f;
}

.page-visual-card--parabol {
  --visual-accent: #7cc7ff;
  --visual-accent-2: #8bc63f;
}

.page-visual-card--app {
  --visual-accent: #8bc63f;
  --visual-accent-2: #b39cff;
}

.page-visual-card--guide {
  --visual-accent: #f0c94a;
  --visual-accent-2: #52c7b8;
}

.page-visual-card--channels {
  --visual-accent: #52c7b8;
  --visual-accent-2: #ffcc4d;
}

.page-visual-card--login {
  --visual-accent: #b39cff;
  --visual-accent-2: #8bc63f;
}

.page-visual-card--search {
  --visual-accent: #7cc7ff;
  --visual-accent-2: #8bc63f;
}

.page-visual-card--business {
  --visual-accent: #8bc63f;
  --visual-accent-2: #7cc7ff;
}

.page-visual-copy,
.page-visual-screen,
.page-visual-tiles,
.page-visual-footer {
  position: relative;
  z-index: 1;
}

.page-visual-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.page-visual-copy span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--visual-accent);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 900;
}

.page-visual-copy strong {
  max-width: 360px;
  font-size: 38px;
  line-height: 1.05;
}

.page-visual-copy p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-visual-screen {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: stretch;
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(16, 18, 47, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.visual-screen-top {
  display: flex;
  gap: 8px;
}

.visual-screen-top span {
  width: 24px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.visual-screen-top span:first-child {
  background: var(--visual-accent);
}

.visual-screen-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.visual-screen-meta {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.visual-screen-bars {
  display: grid;
  gap: 9px;
}

.visual-screen-bars span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.visual-screen-bars span:nth-child(1) {
  width: 100%;
  background: linear-gradient(90deg, var(--visual-accent), var(--visual-accent-2));
}

.visual-screen-bars span:nth-child(2) {
  width: 72%;
}

.visual-screen-bars span:nth-child(3) {
  width: 48%;
}

.page-visual-tiles {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.page-visual-tiles span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.page-visual-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 16px;
}

.page-visual-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.page-visual-footer strong {
  color: var(--visual-accent);
  font-size: 22px;
  line-height: 1;
}

.page-card-stack {
  counter-reset: page-showcase-card;
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-card-stack article {
  counter-increment: page-showcase-card;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: var(--page);
}

.page-card-stack article::before {
  content: counter(page-showcase-card, decimal-leading-zero);
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.page-card-stack strong {
  grid-column: 2;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}

.page-card-stack span {
  grid-column: 2;
}

.page-card-stack span {
  color: var(--muted);
}

.feature-strip article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
}

.feature-strip strong {
  color: var(--navy);
  font-size: 24px;
}

.feature-strip span,
.package-card p,
.check-list,
.price-panel span {
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.trust-row {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.hero-device {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.device-topbar {
  display: flex;
  gap: 7px;
  margin: 4px 0 16px;
}

.device-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.stream-card {
  border-radius: 12px;
  background: white;
  color: var(--navy-deep);
  padding: 26px;
}

.stream-card small,
.package-label {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stream-card h2 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.04;
}

.stream-card p {
  color: var(--muted);
}

.stream-card strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.mini-grid div {
  min-height: 78px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.content-band {
  padding: 82px 0;
}

.package-band,
.faq-band {
  background: white;
}

.order-band {
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}

.order-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.order-progress span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-weight: 900;
}

.order-progress span.is-active,
.order-progress span.is-complete {
  border-color: var(--green);
  background: var(--soft);
  color: var(--navy-deep);
}

.order-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.38fr);
  gap: 22px;
  align-items: start;
}

.order-panel,
.order-summary {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 14px 36px rgba(16, 18, 47, 0.07);
}

.order-panel {
  padding: 26px;
}

.order-panel h3 {
  margin-bottom: 20px;
  color: var(--navy-deep);
  font-size: 30px;
  line-height: 1.1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.addon-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.choice-card input:checked + span {
  border-color: var(--green);
  box-shadow: 0 14px 28px rgba(139, 198, 63, 0.2);
}

.choice-card:hover span {
  transform: translateY(-2px);
}

.choice-card strong {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}

.choice-card small {
  color: var(--muted);
}

.choice-card b {
  margin-top: auto;
  color: var(--navy-deep);
  font-size: 20px;
}

.payment-choice {
  margin-bottom: 22px;
}

.payment-choice > p {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 900;
}

.payment-card span {
  min-height: auto;
  gap: 10px;
  background:
    linear-gradient(135deg, rgba(139, 198, 63, 0.12), rgba(255, 255, 255, 0.96)),
    #fbfcff;
}

.payment-card small {
  max-width: 620px;
}

.payment-card b {
  color: var(--green-dark);
}

.order-next {
  margin-top: 20px;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button.secondary.dark {
  color: var(--navy-deep);
  border-color: var(--line);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 900;
}

.field-grid .wide {
  grid-column: 1 / -1;
}

.field-grid input,
.field-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.field-grid input:focus,
.field-grid textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(139, 198, 63, 0.18);
}

.order-summary {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.order-summary strong {
  display: block;
  color: var(--navy-deep);
  font-size: 22px;
  line-height: 1.2;
}

.order-summary ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.summary-total span {
  color: var(--muted);
  font-weight: 800;
}

.summary-total b {
  color: var(--green-dark);
  font-size: 26px;
}

.summary-payment {
  display: grid;
  gap: 4px;
  margin: -4px 0 20px;
  padding: 14px;
  border: 1px solid rgba(139, 198, 63, 0.35);
  border-radius: 10px;
  background: var(--soft);
}

.summary-payment span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.summary-payment b {
  color: var(--navy-deep);
  font-size: 17px;
}

.order-summary small {
  display: block;
  color: var(--muted);
}

.order-result {
  margin-top: 18px;
  border-radius: 10px;
  font-weight: 800;
}

.order-result.is-loading,
.order-result.is-success,
.order-result.is-error {
  padding: 14px 16px;
}

.order-result.is-loading {
  background: #edf2ff;
  color: var(--navy);
}

.order-result.is-success {
  display: grid;
  gap: 6px;
  background: var(--soft);
  color: var(--navy-deep);
}

.order-result.is-error {
  background: #fff0f0;
  color: #9c1c1c;
}

.order-panel.is-complete .payment-choice,
.order-panel.is-complete .field-grid,
.order-panel.is-complete .order-actions {
  display: none;
}

.order-flow-grid.is-complete .order-summary {
  border-color: rgba(139, 198, 63, 0.42);
  background:
    linear-gradient(135deg, rgba(139, 198, 63, 0.11), rgba(255, 255, 255, 0.96)),
    white;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.compact {
  max-width: 640px;
}

.section-heading h2 {
  margin-bottom: 12px;
  color: var(--navy-deep);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(16, 18, 47, 0.06);
}

.package-card.is-highlighted {
  border-color: rgba(139, 198, 63, 0.74);
  box-shadow: var(--shadow);
}

.package-card h3 {
  min-height: 70px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
}

.price {
  margin-bottom: 22px;
  color: var(--navy-deep);
  font-size: 22px;
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.package-card li {
  position: relative;
  padding-left: 24px;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.package-detail-band {
  background: white;
}

.package-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 34px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.price-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.price-panel strong {
  color: var(--navy-deep);
  font-size: 46px;
  line-height: 1;
}

.logo-list,
.channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo-list span,
.channel-grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-weight: 900;
}

.logo-list span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.channel-grid span {
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(16, 18, 47, 0.06);
}

.addon-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.addon-list article {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
}

.addon-list strong {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}

.addon-list span {
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 900;
}

.split-band {
  background: var(--page);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 48px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 850;
}

.steps span {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy-deep);
  font-weight: 900;
}

.entertainment-band {
  background: var(--navy-deep);
  color: white;
}

.entertainment-band .section-heading h2 {
  color: white;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tile-grid article,
.tile-grid a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(160deg, rgba(139, 198, 63, 0.22), rgba(255, 255, 255, 0.06)),
    var(--navy);
  color: white;
  text-decoration: none;
}

.tile-grid strong {
  margin-bottom: 8px;
  font-size: 24px;
}

.tile-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.inline-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: white;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 20px;
}

summary {
  cursor: pointer;
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
  background: white;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
}

.footer-logo {
  width: min(240px, 70vw);
  height: auto;
}

.footer-grid p {
  max-width: 420px;
  margin: 14px 0 0;
}

.footer-grid div:not(:first-child) {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-menu {
  display: grid;
  gap: 8px;
}

.footer-grid strong {
  color: var(--navy);
}

.footer-grid a {
  text-decoration: none;
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-cta {
    width: fit-content;
  }

  .nav-dropdown-panel.is-wide {
    width: min(360px, calc(100vw - 32px));
    grid-template-columns: 1fr;
  }

  .page-visual-card {
    grid-template-columns: 1fr;
  }

  .page-visual-screen {
    grid-column: 1;
    grid-row: auto;
    min-height: 230px;
  }

  .page-visual-footer {
    grid-column: 1;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .subpage-hero-grid,
  .page-showcase-grid,
  .split-grid,
  .faq-grid,
  .order-flow-grid,
  .package-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .tile-grid,
  .choice-grid,
  .addon-grid,
  .feature-strip,
  .logo-list,
  .channel-grid,
  .addon-list,
  .search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-summary {
    position: static;
  }

  .price-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: min(250px, 78vw);
  }

  .site-nav {
    gap: 14px;
  }

  .hero {
    padding: 52px 0 64px;
  }

  h1 {
    font-size: 48px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-device {
    padding: 12px;
  }

  .stream-card h2 {
    font-size: 28px;
  }

  .content-band {
    padding: 62px 0;
  }

  .package-grid,
  .tile-grid,
  .choice-grid,
  .addon-grid,
  .feature-strip,
  .logo-list,
  .channel-grid,
  .addon-list,
  .field-grid,
  .mini-grid,
  .search-results-grid {
    grid-template-columns: 1fr;
  }

  .order-progress {
    grid-template-columns: 1fr;
  }

  .page-visual-copy strong {
    font-size: 32px;
  }

  .page-visual-tiles {
    grid-template-columns: 1fr;
  }

  .page-visual-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  background: white;
  color: var(--navy-deep);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.menu-toggle-bars {
  display: grid;
  gap: 4px;
}

.menu-toggle-bars span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-header.is-menu-open .menu-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 10px 0;
  }

  .brand img {
    width: min(240px, 58vw);
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.is-menu-open .site-nav {
    display: block;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-header.is-menu-open .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .primary-menu,
  .site-nav {
    width: 100%;
  }

  .primary-menu {
    display: grid;
    gap: 6px;
    align-items: stretch;
    justify-content: stretch;
  }

  .primary-menu > li,
  .nav-dropdown {
    width: 100%;
  }

  .primary-menu a,
  .site-nav a,
  .site-nav button {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    border-radius: 10px;
    padding: 0 14px;
  }

  .primary-menu .menu-item-has-children > a::after,
  .nav-dropdown > button::after {
    content: "+";
    margin-left: auto;
    color: var(--green-dark);
    font-weight: 900;
  }

  .primary-menu .menu-item-has-children.is-open > a::after,
  .nav-dropdown.is-open > button::after {
    content: "-";
  }

  .primary-menu .menu-item-has-children::after,
  .nav-dropdown::after {
    display: none;
  }

  .primary-menu .sub-menu,
  .primary-menu .menu-item-has-children:nth-child(2) .sub-menu,
  .nav-dropdown-panel,
  .nav-dropdown-panel.is-wide {
    position: static;
    display: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 6px 0 4px;
    padding: 8px;
    grid-template-columns: 1fr;
    border-radius: 10px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .primary-menu .menu-item-has-children.is-open > .sub-menu,
  .nav-dropdown.is-open > .nav-dropdown-panel {
    display: grid;
  }

  .primary-menu .sub-menu a,
  .nav-dropdown-panel a {
    min-height: 44px;
    background: var(--page);
  }

  .header-cta,
  .login-link {
    width: 100%;
  }

  .ejb-el-hero > .elementor-container,
  .ejb-el-section > .elementor-container {
    width: min(100% - 32px, 860px);
  }

  .ejb-el-hero .elementor-column,
  .ejb-el-section .elementor-column {
    width: 100% !important;
  }

  .ejb-el-hero .elementor-container,
  .ejb-el-section .elementor-container {
    flex-wrap: wrap;
  }

  .hero-device,
  .subpage-stat-card,
  .page-visual-card {
    margin-top: 28px;
  }
}

@media (max-width: 700px) {
  .utility-inner {
    min-height: 0;
    padding: 8px 0;
  }

  .utility-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
  }

  .utility-menu li:nth-child(3) {
    margin-left: 0;
  }

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

  .menu-toggle-label {
    display: none;
  }

  .site-header.is-menu-open .header-actions {
    grid-template-columns: 1fr;
  }

  .ejb-el-hero,
  .ejb-el-subhero,
  .ejb-el-section,
  .content-band {
    padding: 48px 0;
  }

  .ejb-el-title .elementor-heading-title,
  .subpage-hero h1,
  h1 {
    font-size: 44px;
    line-height: 1;
  }

  .ejb-el-section-title .elementor-heading-title,
  .section-heading h2 {
    font-size: 34px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .package-grid,
  .tile-grid,
  .choice-grid,
  .addon-grid,
  .feature-strip,
  .logo-list,
  .channel-grid,
  .addon-list,
  .search-results-grid,
  .field-grid,
  .mini-grid,
  .page-showcase-grid,
  .faq-grid,
  .order-flow-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .order-panel,
  .order-summary,
  .package-card,
  .search-result-card,
  .page-visual-card,
  .subpage-stat-card {
    border-radius: 8px;
  }

  .ejbynet-search-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .site-header.is-menu-open .site-nav {
    padding: 10px;
  }

  .primary-menu {
    gap: 8px;
  }

  .primary-menu li {
    border: 1px solid transparent;
    border-radius: 10px;
  }

  .primary-menu li a {
    background: white;
    border: 1px solid var(--line);
    color: var(--navy);
  }

  .primary-menu li.is-open {
    padding: 0;
    background: #f6f9ff;
    border-color: var(--line);
  }

  .primary-menu li.is-open a {
    background: var(--soft);
    border-color: rgba(135, 201, 57, 0.45);
    color: var(--green-dark);
  }

  .primary-menu .sub-menu,
  .primary-menu .menu-item-has-children:nth-child(2) .sub-menu {
    position: static !important;
    display: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 8px 0 0 !important;
    padding: 8px !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    background: #f6f9ff !important;
    border: 1px solid #dfe8f5 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .primary-menu .menu-item-has-children.is-open .sub-menu {
    display: grid !important;
  }

  .primary-menu .sub-menu li {
    display: block;
    width: 100%;
    border: 0;
  }

  .primary-menu .sub-menu a {
    position: relative;
    display: flex !important;
    min-height: 46px !important;
    justify-content: flex-start !important;
    padding: 0 14px 0 34px !important;
    color: var(--navy) !important;
    background: white !important;
    border: 1px solid #e2e8f4 !important;
    border-radius: 8px !important;
    font-weight: 800;
  }

  .primary-menu .sub-menu a::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--green);
    transform: translateY(-50%);
  }
}

body.page-id-44 main {
  background: #f6f8fc;
}

body.page-id-44 .ejb-el-subhero,
body.page-id-44 .ejb-el-chip-nav,
body.page-id-44 .ejb-el-showcase,
body.page-id-44 .ejb-el-page-copy {
  display: none !important;
}

body.page-id-44 .search-band {
  padding: clamp(34px, 6vw, 76px) 0 42px;
  background: #191750;
  color: white;
}

body.page-id-44 .search-band .site-shell {
  width: min(1120px, calc(100% - 32px));
}

body.page-id-44 .search-shell {
  gap: 16px;
}

body.page-id-44 .search-band .section-heading {
  max-width: 820px;
}

body.page-id-44 .search-band .eyebrow {
  color: var(--green);
}

body.page-id-44 .search-band h2 {
  color: white;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

body.page-id-44 .search-band .section-heading p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

body.page-id-44 .ejbynet-search-form {
  width: 100%;
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr) 150px;
  padding: 8px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 60px rgba(8, 8, 34, 0.24);
}

body.page-id-44 .ejbynet-search-form input {
  min-height: 64px;
  border: 0;
  background: white;
  font-size: 20px;
}

body.page-id-44 .ejbynet-search-form .button {
  min-height: 64px;
  border-radius: 7px;
}

body.page-id-44 .search-quicklinks {
  gap: 8px;
}

body.page-id-44 .search-quicklinks button {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

body.page-id-44 .search-quicklinks button:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--navy);
}

body.page-id-44 .search-count {
  color: rgba(255, 255, 255, 0.78);
}

body.page-id-44 .search-results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}

body.page-id-44 .search-result-card {
  position: relative;
  min-height: 0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(8, 8, 34, 0.18);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-id-44 .search-result-card:hover {
  transform: translateY(-2px);
  border-color: rgba(135, 201, 57, 0.72);
  box-shadow: 0 20px 46px rgba(8, 8, 34, 0.22);
}

body.page-id-44 .search-result-card h3 a {
  color: inherit;
}

body.page-id-44 .search-result-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
}

body.page-id-44 .search-result-card p {
  line-height: 1.55;
}

body.page-id-44 .search-result-card span,
body.page-id-44 .search-result-card p,
body.page-id-44 .search-result-terms {
  pointer-events: none;
}

body.page-id-44 .search-empty {
  background: white;
}

@media (max-width: 900px) {
  body.page-id-44 .ejbynet-search-form {
    order: -3;
  }

  body.page-id-44 .search-quicklinks {
    order: -2;
  }

  body.page-id-44 .search-band .section-heading {
    order: -1;
  }

  body.page-id-44 .search-band {
    padding-top: 24px;
  }

  body.page-id-44 .search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.page-id-44 .search-band {
    padding: 16px 0 30px;
  }

  body.page-id-44 .search-band .site-shell {
    width: min(100% - 24px, 620px);
  }

  body.page-id-44 .search-band h2 {
    font-size: 30px;
  }

  body.page-id-44 .search-band .eyebrow {
    display: none;
  }

  body.page-id-44 .search-band .section-heading p {
    font-size: 15px;
  }

  body.page-id-44 .ejbynet-search-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.page-id-44 .ejbynet-search-form input {
    min-height: 58px;
    padding: 0 14px;
    font-size: 16px;
  }

  body.page-id-44 .ejbynet-search-form .button {
    width: 100%;
    min-height: 50px;
  }

  body.page-id-44 .search-quicklinks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-id-44 .search-quicklinks button {
    width: 100%;
    min-height: 42px;
    padding: 0 8px;
    font-size: 14px;
  }

  body.page-id-44 .search-results-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.page-id-44 .search-result-card {
    padding: 18px;
  }

  body.page-id-44 .search-result-card h3 {
    font-size: 21px;
  }
}
