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

:root {
  --bg-dark: #07142c;
  --bg-darker: #041022;
  --panel: #0c1d3b;
  --panel-soft: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.08);
  --text: #f2f6ff;
  --muted: #b8c7ee;
  --blue: #3c6cff;
  --blue-2: #678bff;
  --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-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;
  }
}
