:root {
  --primary: #FF9000;
  --secondary: #121212;
  --dark: #0b0b0b;
  --light: #ffffff;
  --muted: #b7b7b7;
  --card: #1b1b1b;
  --border: rgba(255, 255, 255, 0.1);
  --max-width: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; background: var(--secondary); color: var(--light); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--muted); font-size: 16px; }
h1, h2, h3 { line-height: 1.1; }
h1 { font-size: clamp(42px, 6vw, 78px); letter-spacing: -0.05em; max-width: 980px; }
h2 { font-size: clamp(32px, 4vw, 50px); letter-spacing: -0.04em; }
h3 { font-size: 22px; margin-bottom: 10px; }

.container { width: min(100% - 32px, var(--max-width)); margin: 0 auto; }
.section { padding: 90px 0; }
.pt-0 { padding-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-18 { margin-top: 18px; }
.section-header { max-width: 760px; margin-bottom: 42px; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 999px; font-weight: 800; transition: 0.2s ease; cursor: pointer; border: 1px solid transparent; }
.btn-primary { background: var(--primary); color: #111; }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-secondary { border-color: var(--border); color: var(--light); background: rgba(255,255,255,0.04); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.eyebrow { position: relative; display: inline-flex; align-items: center; gap: 12px; color: var(--primary); font-weight: 900; text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 42px; height: 2px; background: var(--primary); box-shadow: 0 0 12px rgba(255,144,0,0.75); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(18,18,18,0.88); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; }
.logo-img { width: 168px; height: auto; }
.menu { display: flex; align-items: center; gap: 26px; list-style: none; color: var(--muted); font-size: 15px; }
.menu a:hover, .menu .is-active > a { color: var(--primary); }
.mobile-toggle { display: none; background: none; color: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 8px 10px; font-size: 20px; cursor: pointer; }
.menu-item-dropdown { position: relative; }
.dropdown-trigger::after { content: "▾"; margin-left: 6px; font-size: 11px; }
.dropdown-menu { position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 230px; padding: 12px; list-style: none; background: rgba(18,18,18,0.98); border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 24px 70px rgba(0,0,0,0.45); opacity: 0; visibility: hidden; transition: 0.18s ease; }
.dropdown-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -22px; height: 22px; }
.dropdown-menu a { display: block; padding: 11px 12px; border-radius: 12px; color: var(--muted); }
.dropdown-menu a:hover { background: rgba(255,144,0,0.1); color: var(--primary); }
.menu-item-dropdown:hover .dropdown-menu, .menu-item-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.hero { min-height: calc(100vh - 76px); display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(120deg, rgba(255,144,0,0.12), transparent 28%), linear-gradient(180deg, rgba(255,255,255,0.03), transparent 30%), #121212; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 0 14%, rgba(255,144,0,0.92) 14.2%, transparent 14.7%), linear-gradient(105deg, transparent 0 38%, rgba(255,144,0,0.62) 38.2%, transparent 38.6%), linear-gradient(122deg, transparent 0 62%, rgba(255,255,255,0.5) 62.1%, transparent 62.4%), linear-gradient(98deg, transparent 0 77%, rgba(255,144,0,0.72) 77.1%, transparent 77.5%); opacity: 0.5; pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 24%, rgba(255,144,0,0.22), transparent 30%), linear-gradient(90deg, rgba(0,0,0,0.72), rgba(18,18,18,0.56), rgba(18,18,18,0.94)); pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 90px 0; max-width: 900px; }
.hero p, .page-hero p { max-width: 680px; margin: 24px 0 34px; font-size: 19px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 54px; max-width: 720px; }
.stat { padding: 20px; border: 1px solid var(--border); background: rgba(255,255,255,0.04); border-radius: 18px; }
.stat strong { display: block; font-size: 28px; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat span { color: var(--muted); font-size: 14px; }
.energy-frame { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.energy-line { position: absolute; height: 3px; width: 180px; background: var(--primary); box-shadow: 0 0 14px rgba(255,144,0,0.75), 0 0 34px rgba(255,144,0,0.35); transform: rotate(-18deg); opacity: 0.9; }
.energy-line.white { background: #fff; box-shadow: 0 0 12px rgba(255,255,255,0.8), 0 0 28px rgba(255,255,255,0.28); }
.line-1 { top: 18%; right: 10%; } .line-2 { top: 44%; right: 24%; width: 110px; } .line-3 { bottom: 23%; right: 7%; width: 240px; } .line-4 { top: 28%; left: 48%; width: 130px; } .line-5 { bottom: 16%; left: 58%; width: 160px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { position: relative; background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)), rgba(20,20,20,0.92); border: 1px solid rgba(255,255,255,0.11); border-radius: 22px; padding: 28px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.28); }
.card::before { content: ""; position: absolute; top: 0; left: 28px; width: 74px; height: 3px; background: var(--primary); box-shadow: 0 0 18px rgba(255,144,0,0.8); }
.icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(255,144,0,0.14); color: var(--primary); display: grid; place-items: center; font-size: 24px; margin-bottom: 20px; }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 32px; align-items: center; }
.visual-box { min-height: 500px; border-radius: 28px; border: 1px solid var(--border); background: linear-gradient(180deg, rgba(18,18,18,0.08), rgba(18,18,18,0.72)), url('/assets/render-1.png') center / cover no-repeat; position: relative; overflow: hidden; box-shadow: 0 30px 100px rgba(0,0,0,0.45); }
.visual-box::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 0 24%, rgba(255,144,0,0.85) 24.15%, transparent 24.5%), linear-gradient(100deg, transparent 0 72%, rgba(255,255,255,0.55) 72.1%, transparent 72.35%); opacity: 0.45; }
.visual-box::after { content: "NEXA24"; position: absolute; left: 28px; bottom: 28px; font-size: 52px; font-weight: 900; color: rgba(255,255,255,0.92); letter-spacing: -0.08em; }
.feature-list { display: grid; gap: 16px; margin-top: 28px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.check { flex: 0 0 24px; height: 24px; border-radius: 50%; background: var(--primary); color: #111; display: grid; place-items: center; font-weight: 900; margin-top: 2px; }
.gallery-section { background: linear-gradient(180deg, #121212, #0b0b0b); }
.render-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; grid-template-rows: 260px 260px; gap: 18px; }
.render-card { position: relative; border-radius: 26px; overflow: hidden; background-size: cover; background-position: center; border: 1px solid var(--border); box-shadow: 0 30px 90px rgba(0,0,0,0.42); }
.render-card.large { grid-row: span 2; }
.render-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.72)), linear-gradient(115deg, transparent 0 68%, rgba(255,144,0,0.44) 68.2%, transparent 68.7%); }
.locations, .amenities-section { background: #0e0e0e; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.location-card { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.location-meta { margin-top: 10px; color: var(--muted); font-size: 15px; }
.badge { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,144,0,0.12); color: var(--primary); font-weight: 800; font-size: 13px; white-space: nowrap; }
.pricing-card { max-width: 780px; background: linear-gradient(135deg, rgba(255,144,0,0.18), rgba(255,255,255,0.03)), var(--card); border: 1px solid rgba(255,144,0,0.35); border-radius: 28px; padding: 36px; }
.price { display: flex; align-items: flex-end; gap: 10px; margin: 22px 0; }
.price strong { font-size: clamp(42px, 6vw, 68px); line-height: 1; color: var(--primary); letter-spacing: -0.06em; }
.price span { color: var(--muted); margin-bottom: 8px; }
.pricing-list { list-style: none; display: grid; gap: 12px; margin: 24px 0 30px; }
.pricing-list li::before { content: "✓"; color: var(--primary); font-weight: 900; margin-right: 10px; }
.cta { padding: 70px 0; background: var(--primary); color: #111; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta p { color: rgba(0,0,0,0.72); margin-top: 10px; }
.cta .btn { background: #111; color: #fff; }

.page-hero { position: relative; overflow: hidden; padding: 120px 0 70px; background: radial-gradient(circle at 80% 20%, rgba(255,144,0,0.20), transparent 28%), linear-gradient(120deg, #171717, #0b0b0b); border-bottom: 1px solid var(--border); }
.compact-hero { padding-bottom: 84px; }
.location-hero { background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(18,18,18,0.76)), url('/assets/render-3.png') center / cover no-repeat; }
.network-map { min-height: 460px; position: relative; border: 1px solid var(--border); border-radius: 30px; overflow: hidden; background: radial-gradient(circle at 58% 44%, rgba(255,144,0,0.22), transparent 22%), linear-gradient(135deg, #242424, #0f0f0f); box-shadow: 0 30px 100px rgba(0,0,0,0.45); }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(circle, black 0%, transparent 80%); }
.map-pin { position: absolute; transform: translate(-50%, -50%); width: 18px; height: 18px; border-radius: 999px; background: var(--primary); box-shadow: 0 0 0 8px rgba(255,144,0,0.16), 0 0 28px rgba(255,144,0,0.9); }
.map-pin span { position: absolute; left: 50%; top: calc(100% + 14px); transform: translateX(-50%); white-space: nowrap; padding: 7px 10px; border-radius: 999px; background: rgba(0,0,0,0.66); border: 1px solid var(--border); color: #fff; font-weight: 800; font-size: 12px; }
.location-list { display: grid; gap: 42px; }
.network-location-card { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 32px; align-items: center; padding: 28px; border: 1px solid var(--border); border-radius: 32px; background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)); }
.location-mosaic { display: grid; gap: 12px; }
.location-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; border: 1px solid var(--border); background: #222; }
.small-mosaic { grid-template-columns: 1.1fr 0.9fr; grid-template-rows: 170px 130px; }
.small-mosaic img:first-child { grid-row: span 2; }
.network-location-content p { margin-top: 16px; }
.location-meta-large { color: #fff; font-weight: 700; }
.location-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.detail-mosaic { grid-template-columns: 1.2fr 0.8fr 0.9fr; grid-auto-rows: 170px; }
.detail-mosaic img:first-child { grid-row: span 2; }
.detail-mosaic img:nth-child(4) { grid-column: span 2; }
.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }
.compact-cards .card { padding: 22px; }
.side-panel { position: sticky; top: 100px; padding: 28px; border: 1px solid var(--border); border-radius: 26px; background: rgba(20,20,20,0.9); }
.side-title { margin-top: 28px; }
.program-list { display: grid; gap: 10px; margin-top: 18px; }
.program-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.program-row span { color: var(--muted); }
.program-row strong { color: var(--primary); }
.side-panel p { margin-top: 10px; }
.side-panel a:hover { color: var(--primary); }
.amenities-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.amenity-pill { padding: 12px 15px; border-radius: 999px; background: rgba(255,144,0,0.11); border: 1px solid rgba(255,144,0,0.25); color: #fff; font-weight: 700; }
.map-embed { overflow: hidden; border-radius: 28px; border: 1px solid var(--border); min-height: 460px; background: #222; }
.map-embed iframe { width: 100%; min-height: 460px; border: 0; filter: grayscale(1) invert(0.9) contrast(0.88); }

.site-footer { padding: 44px 0; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 28px; }
.footer-logo img { width: 150px; margin-bottom: 10px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--primary); }

@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  .menu { position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: flex-start; background: #121212; border-bottom: 1px solid var(--border); padding: 20px 32px; display: none; }
  .menu.is-open { display: flex; }
  .menu-item-dropdown { width: 100%; }
  .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 6px 0 0 12px; background: transparent; }
  .dropdown-menu::before { display: none; }
  .grid-3, .grid-2, .split, .hero-stats, .network-location-card, .detail-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .visual-box { min-height: 320px; }
  .cta-inner, .location-card { align-items: flex-start; flex-direction: column; }
  .render-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .render-card, .render-card.large { min-height: 300px; grid-row: auto; }
  .small-mosaic, .detail-mosaic { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .small-mosaic img:first-child, .detail-mosaic img:first-child, .detail-mosaic img:nth-child(4) { grid-row: auto; grid-column: auto; }
  .side-panel { position: static; }
}

/* Application page */
.app-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.84), rgba(18,18,18,0.72)),
    url('/assets/render-2.png') center / cover no-repeat;
}
.inline-code {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(255,144,0,0.14);
  color: var(--primary);
  border: 1px solid rgba(255,144,0,0.30);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.app-overview-section {
  background: linear-gradient(180deg, #121212, #0e0e0e);
}
.app-split {
  grid-template-columns: 1fr 430px;
}
.app-code-card {
  width: min(100%, 440px);
  margin-top: 32px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,144,0,0.34);
  background:
    linear-gradient(135deg, rgba(255,144,0,0.18), rgba(255,255,255,0.03)),
    rgba(20,20,20,0.94);
  box-shadow: 0 30px 90px rgba(0,0,0,0.32);
}
.app-code-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin-bottom: 8px;
}
.app-code-card strong {
  display: block;
  color: var(--primary);
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}
.phone-card {
  position: relative;
  width: min(100%, 390px);
  margin-left: auto;
  border-radius: 42px;
  padding: 18px;
  background: linear-gradient(145deg, #2c2c2c, #080808);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 36px 110px rgba(0,0,0,0.52);
}
.phone-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 42px;
  background:
    linear-gradient(120deg, transparent 0 20%, rgba(255,144,0,0.75) 20.1%, transparent 20.5%),
    linear-gradient(100deg, transparent 0 70%, rgba(255,255,255,0.52) 70.1%, transparent 70.4%);
  pointer-events: none;
  opacity: 0.42;
}
.phone-notch {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 25px;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  border-radius: 999px;
  background: #050505;
}
.phone-screen {
  position: relative;
  z-index: 2;
  min-height: 600px;
  border-radius: 30px;
  padding: 74px 24px 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,144,0,0.20), transparent 28%),
    linear-gradient(180deg, #1c1c1c, #090909);
  overflow: hidden;
}
.phone-logo {
  width: 190px;
  margin: 0 auto 44px;
}
.phone-screen p {
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}
.phone-input {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.phone-button {
  margin-top: 18px;
  padding: 15px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #111;
  text-align: center;
  font-weight: 900;
}
.phone-qr {
  width: 150px;
  height: 150px;
  margin: 58px auto 0;
  border-radius: 18px;
  background:
    linear-gradient(90deg, #fff 8px, transparent 8px) 0 0 / 24px 24px,
    linear-gradient(#fff 8px, transparent 8px) 0 0 / 24px 24px,
    #151515;
  border: 12px solid #fff;
  opacity: 0.92;
}
.app-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.app-step-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018)),
    rgba(20,20,20,0.92);
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
  overflow: hidden;
}
.app-step-card::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 34px;
  width: 120px;
  height: 3px;
  background: var(--primary);
  transform: rotate(-18deg);
  box-shadow: 0 0 18px rgba(255,144,0,0.78);
  opacity: 0.72;
}
.step-number {
  display: block;
  color: var(--primary);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  margin-bottom: 26px;
}
.highlight-step {
  border-color: rgba(255,144,0,0.45);
  background:
    linear-gradient(135deg, rgba(255,144,0,0.18), rgba(255,255,255,0.03)),
    rgba(20,20,20,0.95);
}
.app-summary-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.app-summary-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.app-summary-list span {
  color: var(--muted);
}
.app-summary-list strong {
  color: var(--primary);
  font-weight: 900;
}

@media (max-width: 900px) {
  .app-split, .app-steps-grid { grid-template-columns: 1fr; }
  .phone-card { margin: 30px auto 0; }
  .phone-screen { min-height: 520px; }
}

/* Store badges / app download blocks */
.store-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  width: 180px;
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.store-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.store-badge img {
  width: 100%;
  height: auto;
}
.hero-store-badges {
  margin-top: 28px;
}
.footer-store-badges {
  margin-top: 18px;
}
.footer-store-badges .store-badge {
  width: 148px;
}

.app-download-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.86), rgba(18,18,18,0.70)),
    url('/assets/render-4.png') center / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.app-download-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(255,144,0,0.22), transparent 30%),
    linear-gradient(115deg, transparent 0 62%, rgba(255,144,0,0.30) 62.15%, transparent 62.6%);
  pointer-events: none;
}
.app-download-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 46px;
  align-items: center;
}
.app-download-content {
  max-width: 760px;
}
.app-download-content h2 {
  max-width: 760px;
}
.app-download-content p {
  max-width: 680px;
}
.app-download-badges {
  margin-top: 30px;
}
.app-download-actions {
  margin-top: 24px;
}
.compact-phone {
  width: min(100%, 360px);
}
.compact-phone .phone-screen {
  min-height: 520px;
}
.compact-phone .phone-logo {
  width: 170px;
  margin-bottom: 34px;
}
.compact-phone .phone-qr {
  margin-top: 42px;
}

@media (max-width: 900px) {
  .app-download-inner { grid-template-columns: 1fr; }
  .compact-phone { margin: 22px auto 0; }
  .footer-store-badges .store-badge { width: 142px; }
}

@media (max-width: 520px) {
  .store-badge { width: 160px; }
  .hero-store-badges, .app-download-badges { align-items: flex-start; flex-direction: column; }
}

/* Subscription partner access */
.subscriptions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 42px;
  align-items: center;
}
.subscriptions-layout .pricing-card {
  max-width: none;
}
.aggregator-panel {
  position: relative;
  min-height: 480px;
  display: grid;
  align-content: center;
  gap: 26px;
  padding: 20px 0;
}
.aggregator-panel::before {
  content: "";
  position: absolute;
  inset: 18px 6% 18px 6%;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255,144,0,0.9) 18.15%, transparent 18.5%),
    linear-gradient(105deg, transparent 0 72%, rgba(255,255,255,0.44) 72.1%, transparent 72.35%);
  opacity: 0.28;
  pointer-events: none;
}
.aggregator-copy {
  position: relative;
  z-index: 1;
  max-width: 470px;
}
.aggregator-copy h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.aggregator-copy p {
  max-width: 440px;
}
.compact-eyebrow {
  font-size: 11px;
  margin-bottom: 12px;
}
.partner-logo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.partner-logo-card {
  min-height: 136px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035)),
    rgba(24,24,24,0.94);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 80px rgba(0,0,0,0.34);
  transition: 0.2s ease;
  overflow: hidden;
}
.partner-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,144,0,0.52);
  box-shadow: 0 30px 90px rgba(255,144,0,0.10), 0 24px 80px rgba(0,0,0,0.36);
}
.partner-logo-card span {
  line-height: 1;
}
.esx-logo {
  color: #fff;
  font-weight: 1000;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.11em;
  text-transform: uppercase;
}
.esx-logo span::after {
  content: "";
  display: block;
  width: 58%;
  height: 5px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 18px rgba(255,144,0,0.75);
}
.seven-card-logo {
  color: #fff;
  flex-direction: row;
  gap: 6px;
  flex-wrap: wrap;
  align-content: center;
}
.seven-mark {
  font-weight: 1000;
  font-size: clamp(54px, 5vw, 78px);
  color: var(--primary);
  letter-spacing: -0.08em;
}
.seven-text {
  font-weight: 950;
  font-size: clamp(34px, 3.4vw, 50px);
  letter-spacing: -0.07em;
}
.seven-card-logo small {
  flex-basis: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-top: -8px;
}
.sanopass-logo {
  grid-column: 1 / -1;
  width: min(260px, 72%);
  justify-self: center;
}
.sanopass-logo span {
  font-weight: 950;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.06em;
  color: #fff;
}
.sanopass-logo small {
  margin-top: 8px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .subscriptions-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .aggregator-panel {
    min-height: auto;
    padding: 0;
  }
  .partner-logo-grid {
    grid-template-columns: 1fr;
  }
  .sanopass-logo {
    grid-column: auto;
    width: 100%;
  }
}
