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

:root {
  --bg-dark: #060816;
  --bg-darker: #03050f;
  --panel: #0f1530;
  --panel-soft: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.08);
  --text: #f8faff;
  --muted: #b8c7ee;
  --blue: #7b61ff;
  --blue-2: #21c8ff;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(71, 104, 255, 0.18), transparent 32%),
    linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

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

.logo {
  display: inline-flex;
  align-items: flex-end;
  line-height: 1;
  font-weight: 800;
}

.logo-o {
  font-size: 3rem;
  color: #f1f6ff;
}

.logo-two {
  font-size: 1.2rem;
  transform: translateY(-7px);
  color: #b6c6ef;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover {
  color: #ffffff;
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-call,
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 34px rgba(60, 108, 255, 0.3);
  color: #fff;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  color: #e9efff;
}

.header-call:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero-section {
  padding: 76px 0 46px;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dbe7ff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 9ch;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 54ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 30px;
}


.hero-subcta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--muted);
  font-weight: 700;
  margin-top: -4px;
}

.hero-subcta:hover {
  color: #ffffff;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.badge-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.badge-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.badge-card span {
  color: var(--muted);
  font-size: .95rem;
}

.hero-visual {
  position: relative;
}

.hero-image-shell {
  padding: 26px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(163, 195, 255, 0.24), transparent 24%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.brand-strip {
  padding: 10px 0 30px;
}

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

.strip-pill {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dbe6ff;
  font-weight: 700;
}

.phones-section,
.deals-section {
  padding: 72px 0;
}

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

.section-heading h2,
.deal-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p,
.deal-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.phone-card,
.deal-panel,
.info-box {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.phone-card {
  overflow: hidden;
}

.phone-image {
  padding: 26px 26px 10px;
  background: radial-gradient(circle at top left, rgba(118, 151, 255, 0.2), transparent 36%);
}

.phone-image img {
  height: 340px;
  width: 100%;
  object-fit: contain;
}

.phone-content {
  padding: 0 26px 26px;
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(103,139,255,0.18);
  color: #e5edff;
  font-size: .84rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.phone-content h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.phone-content p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.phone-content a {
  color: #dce6ff;
  font-weight: 700;
}

.deals-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
}

.deal-panel {
  padding: 34px;
}

.deal-panel .btn {
  margin-top: 24px;
}

.info-stack {
  display: grid;
  gap: 16px;
}

.info-box {
  padding: 24px;
}

.info-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.info-box span {
  color: var(--muted);
}

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(2, 10, 20, 0.45);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 20px 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 1040px) {
  .hero-grid,
  .phone-grid,
  .deals-grid,
  .hero-badges,
  .strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .site-nav {
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-section {
    padding-top: 40px;
  }

  .hero-cta .btn,
  .header-call {
    width: 100%;
  }

  .container {
    width: min(1180px, calc(100% - 24px));
  }
}


.site-footer {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(3, 10, 20, 0.82), rgba(3, 10, 20, 0.96));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 54px 0 28px;
  align-items: start;
}

.footer-intro h3 {
  margin: 10px 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.footer-intro p,
.footer-col p,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-kicker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dbe7ff;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.footer-col {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
}

.footer-col a {
  display: block;
  margin: 10px 0;
  color: #dce6ff;
  font-weight: 600;
}

.footer-col a:hover,
.footer-mini-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-mini-links a {
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 1040px) {
  .footer-top,
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


.legal-page {
  min-height: 100vh;
  padding: 56px 0;
  background:
    radial-gradient(circle at top left, rgba(71, 104, 255, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
}

.legal-wrap {
  max-width: 860px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.legal-back {
  margin-bottom: 22px;
}

.legal-wrap h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
}

.legal-wrap h2 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
}

.legal-wrap p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}


.hero-image-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(59,108,255,0.28), transparent 30%),
    #02060f;
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.dark-image-frame {
  background: #02060f;
}

.dark-image-frame img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: 18px;
}

.phone-card .dark-image-frame img[src$=".jpg"] {
  object-fit: cover;
}

.legal-page {
  min-height: 100vh;
  padding: 56px 0;
  background:
    radial-gradient(circle at top left, rgba(71, 104, 255, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
}

.legal-wrap {
  max-width: 860px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.legal-back {
  margin-bottom: 22px;
}

.legal-wrap h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
}

.legal-wrap h2 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
}

.legal-wrap p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 1040px) {
  .hero-image-shell img {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .hero-image-shell img,
  .dark-image-frame img {
    min-height: unset;
    height: auto;
  }
}


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

.premium-call {
  min-width: 230px;
  padding: 10px 20px;
  gap: 2px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, rgba(60,108,255,0.95), rgba(103,139,255,0.95));
  box-shadow: 0 18px 34px rgba(60, 108, 255, 0.24);
}

.call-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

.premium-call strong {
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  display: block;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -340px;
  width: min(320px, 88vw);
  height: 100vh;
  z-index: 60;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(4,16,34,0.98), rgba(7,20,44,0.98));
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -20px 0 50px rgba(0,0,0,0.35);
  transition: right 0.28s ease;
}

.mobile-sidebar.open {
  right: 0;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.sidebar-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 800;
}

.sidebar-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.sidebar-nav {
  display: grid;
  gap: 10px;
}

.sidebar-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  color: #e7efff;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.sidebar-call {
  background: linear-gradient(135deg, rgba(60,108,255,0.95), rgba(103,139,255,0.95)) !important;
  color: #fff !important;
  margin-top: 10px;
}

.hero-copy p {
  font-size: 1.12rem;
}

.hero-badges .badge-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .premium-call {
    min-width: unset;
    padding: 11px 18px;
  }

  .premium-call strong {
    font-size: 0.98rem;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 82px;
    flex-direction: row;
    align-items: center;
  }

  .premium-call {
    flex: 1;
    min-width: 0;
  }

  .call-label {
    font-size: 0.68rem;
  }

  .premium-call strong {
    font-size: 0.9rem;
  }

  .hero-copy h1 {
    font-size: 3.3rem;
  }

  .hero-cta {
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .premium-call strong {
    font-size: 0.84rem;
  }

  .premium-call {
    padding: 10px 14px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }
}


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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 12px 28px rgba(60, 108, 255, 0.28);
  flex-shrink: 0;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: #f3f7ff;
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.brand-dot {
  color: #9db6ff;
  font-weight: 700;
}

.legal-brand .brand-text {
  font-size: 1.05rem;
}

.logo,
.wordmark,
.logo-o,
.logo-two {
  display: none !important;
}

@media (max-width: 520px) {
  .brand-text {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}



/* Responsive refinements */
body {
  overflow-x: hidden;
}

.header-actions {
  margin-left: auto;
  min-width: 0;
}

.premium-call {
  white-space: nowrap;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1,
.hero-copy p {
  overflow-wrap: anywhere;
}

.hero-image-shell img {
  height: auto;
}

@media (max-width: 1040px) {
  .hero-section {
    padding: 56px 0 30px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
  }

  .hero-copy p,
  .section-heading p,
  .deal-panel p,
  .footer-intro p,
  .footer-col p {
    max-width: 100%;
  }

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

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

  .header-inner {
    min-height: 78px;
    gap: 12px;
  }

  .brand-logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-text {
    min-width: 0;
  }

  .header-actions {
    flex: 0 1 auto;
    width: auto;
  }

  .premium-call {
    min-height: 50px;
    padding: 10px 14px;
    max-width: 180px;
  }

  .call-label {
    line-height: 1.1;
  }

  .premium-call strong {
    line-height: 1.1;
  }

  .hero-section {
    padding: 42px 0 26px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 1.02;
    max-width: 100%;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-cta {
    margin: 24px 0 22px;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-badges,
  .strip-inner,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .phone-image {
    padding: 20px 20px 8px;
  }

  .phone-content,
  .deal-panel,
  .info-box,
  .footer-col,
  .legal-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-top {
    gap: 24px;
    padding: 40px 0 20px;
  }

  .footer-bottom {
    padding: 16px 0 24px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1180px, calc(100% - 20px));
  }

  .brand-text {
    font-size: 0.84rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .premium-call {
    max-width: 152px;
    padding: 9px 12px;
  }

  .premium-call strong {
    font-size: 0.8rem;
  }

  .call-label {
    font-size: 0.62rem;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 11vw, 2.55rem);
  }

  .hero-copy p {
    font-size: 0.95rem;
  }

  .phone-image img,
  .dark-image-frame img {
    height: auto;
    max-height: 280px;
  }

  .strip-pill {
    min-height: 58px;
    padding: 10px 12px;
    text-align: center;
  }
}


/* Premium MobilesHub refresh */
:root{
  --premium-gold:#f1d18a;
  --premium-shadow:0 24px 60px rgba(0,0,0,.35);
}

body{
  background:
    radial-gradient(circle at top left, rgba(123,97,255,.24), transparent 28%),
    radial-gradient(circle at top right, rgba(33,200,255,.12), transparent 26%),
    linear-gradient(180deg, #060816 0%, #091126 42%, #05070f 100%);
}

.site-header{
  backdrop-filter: blur(12px);
  background: rgba(6,8,22,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand-logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.brand-mark{
  width:46px;
  height:46px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color:#fff;
  font-weight:800;
  box-shadow: 0 18px 40px rgba(123,97,255,.35);
}

.brand-text{
  text-transform: lowercase;
  letter-spacing:-0.02em;
}

.hero-card,
.plan-card,
.info-card,
.contact-highlight-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--premium-shadow);
}

.btn-primary,
button,
a.button{
  background: linear-gradient(135deg, var(--blue), var(--blue-2)) !important;
  border: 0 !important;
  box-shadow: 0 14px 30px rgba(123,97,255,.28);
}

.btn-primary:hover,
button:hover,
a.button:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.section-kicker,
.footer-kicker,
.premium-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color: var(--premium-gold);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

.contact-highlight-section{
  padding: 12px 0 40px;
}

.contact-highlight-card{
  border-radius: 28px;
  padding: 32px;
}

.contact-highlight-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}

.contact-pill{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 18px 20px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.contact-pill strong{
  color:#fff;
}

.contact-pill span{
  color: var(--muted);
  line-height:1.65;
}

.contact-pill-full{
  grid-column:1 / -1;
}

.site-footer{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 768px){
  .contact-highlight-grid{
    grid-template-columns:1fr;
  }
}


/* MobilesHub black and grey premium override */
:root{
  --bg-dark:#121212;
  --bg-darker:#060606;
  --panel:#161616;
  --panel-soft:rgba(255,255,255,0.04);
  --line:rgba(255,255,255,0.08);
  --text:#f4f4f4;
  --muted:#b5b5b5;
  --blue:#5e5e5e;
  --blue-2:#a2a2a2;
  --premium-gold:#d8d8d8;
  --shadow:0 24px 60px rgba(0,0,0,.42);
  --premium-shadow:0 24px 60px rgba(0,0,0,.45);
}
body{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.07), transparent 24%),
    radial-gradient(circle at top right, rgba(255,255,255,.04), transparent 22%),
    linear-gradient(180deg,#050505 0%,#0e0e0e 38%,#171717 100%);
}
.site-header{background:rgba(8,8,8,.82);}
.brand-mark,.header-call,.btn-primary,button,a.button{
  background:linear-gradient(135deg,#3a3a3a,#9d9d9d) !important;
  box-shadow:0 16px 34px rgba(0,0,0,.35);
}
.brand-dot,.premium-badge,.footer-kicker,.section-kicker,.eyebrow{color:#efefef;}
.eyebrow{background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.12);}
.hero-section{padding-top:88px; padding-bottom:56px;}
.hero-copy h1{max-width:11ch; text-shadow:0 8px 30px rgba(0,0,0,.35);}
.hero-copy p{max-width:58ch; color:#c5c5c5;}
.badge-card,.phone-card,.deal-panel,.info-box,.contact-highlight-card,.strip-pill,.mobile-sidebar{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.09);
  box-shadow:var(--premium-shadow);
}
.strip-pill,.tag{color:#fff;}
.hero-image-shell{
  background:linear-gradient(180deg,#101010 0%, #1b1b1b 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 70px rgba(0,0,0,.45);
}
.hero-image-shell img{filter:saturate(.9) contrast(1.04);}
.site-nav a:hover,.hero-subcta:hover{color:#fff;}
.footer-bottom,.site-footer{border-color:rgba(255,255,255,.08);}
