/* Junerox AI — Brand styles */
:root {
  --deep-teal: #003F52;
  --midnight-cyan: #01495E;
  --bright-aqua: #00C2E8;
  --soft-cyan: #74CAE5;
  --ice-blue: #BFE9F4;
  --white-smoke: #F3F5F7;
  --electric-cyan: #19D7FF;
  --ocean-blue: #008FB3;
  --dark-slate: #0B1E25;
  --graphite: #1E2D33;

  --gradient-brand: linear-gradient(135deg, #00C2E8 0%, #74CAE5 45%, #BFE9F4 100%);
  --gradient-dark: linear-gradient(180deg, #003F52 0%, #01495E 100%);
  --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(25, 215, 255, 0.15) 0%, transparent 60%);

  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-soft: 0 24px 64px rgba(11, 30, 37, 0.35);
  --shadow-glow: 0 0 60px rgba(0, 194, 232, 0.2);
  --header-h: 76px;
  --max-w: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--white-smoke);
  background: var(--deep-teal);
  background-image: var(--gradient-dark);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--soft-cyan); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--electric-cyan); }
ul { list-style: none; }

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.orb--1 {
  width: 520px;
  height: 520px;
  background: var(--ocean-blue);
  top: -120px;
  right: -80px;
}

.orb--2 {
  width: 400px;
  height: 400px;
  background: var(--bright-aqua);
  bottom: 20%;
  left: -100px;
  opacity: 0.2;
}

.orb--3 {
  width: 300px;
  height: 300px;
  background: var(--electric-cyan);
  top: 45%;
  right: 15%;
  opacity: 0.12;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white-smoke);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
h4 { font-size: 1rem; font-weight: 700; }

p { color: rgba(243, 245, 247, 0.78); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bright-aqua);
  margin-bottom: 1rem;
}

.eyebrow--light { color: var(--soft-cyan); }

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--gradient-brand);
  color: var(--deep-teal);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  color: var(--dark-slate);
  box-shadow: 0 0 40px rgba(25, 215, 255, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--ice-blue);
  border: 1px solid rgba(191, 233, 244, 0.35);
}

.btn--ghost:hover {
  border-color: var(--soft-cyan);
  color: var(--white-smoke);
  background: rgba(116, 202, 229, 0.08);
}

.btn--ice {
  background: var(--ice-blue);
  color: var(--deep-teal);
}

.btn--ice:hover { background: var(--white-smoke); }

.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(0, 63, 82, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(116, 202, 229, 0.12);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white-smoke);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo:hover { color: var(--white-smoke); }
.logo__ai { color: var(--bright-aqua); font-weight: 700; }

.logo__img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo__img--footer {
  width: 32px;
  height: 32px;
}

.nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(243, 245, 247, 0.7);
}

.nav a:hover { color: var(--ice-blue); }

.header__cta { margin-left: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ice-blue);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}

/* Main layout */
main {
  position: relative;
  z-index: 1;
}

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
}

.section__header { max-width: 680px; margin-bottom: 3rem; }
.section__header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__intro { font-size: 1.1rem; margin-top: 0.75rem; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero__lead {
  font-size: 1.15rem;
  margin: 1.5rem 0 2rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(116, 202, 229, 0.2);
}

.stat__value {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ice-blue);
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.8rem;
  color: rgba(243, 245, 247, 0.55);
}

/* Hero visual — abstract spheres */
.hero__visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sphere-cluster {
  position: relative;
  width: 100%;
  height: 100%;
}

.sphere {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-glow), inset -20px -20px 40px rgba(0, 63, 82, 0.2);
}

.sphere--lg {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 6s ease-in-out infinite;
}

.sphere--md {
  width: 100px;
  height: 100px;
  top: 18%;
  right: 12%;
  background: linear-gradient(145deg, var(--ocean-blue), var(--soft-cyan));
  animation: float 5s ease-in-out infinite 0.5s;
}

.sphere--sm {
  width: 56px;
  height: 56px;
  bottom: 22%;
  left: 8%;
  background: var(--electric-cyan);
  opacity: 0.85;
  animation: float 4s ease-in-out infinite 1s;
}

.ring {
  position: absolute;
  border: 1px solid rgba(116, 202, 229, 0.25);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring--1 {
  width: 320px;
  height: 320px;
  animation: spin 30s linear infinite;
}

.ring--2 {
  width: 400px;
  height: 400px;
  border-style: dashed;
  opacity: 0.5;
  animation: spin 45s linear infinite reverse;
}

.data-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--electric-cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--electric-cyan);
}

.data-node--1 { top: 30%; left: 25%; animation: pulse 2s ease infinite; }
.data-node--2 { top: 60%; right: 20%; animation: pulse 2s ease infinite 0.6s; }
.data-node--3 { bottom: 35%; left: 40%; animation: pulse 2s ease infinite 1.2s; }

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-14px); }
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Split sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split--reverse .split__visual { order: -1; }
.split--equal { align-items: start; }

.glass-panel {
  background: rgba(1, 73, 94, 0.5);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(116, 202, 229, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.flow-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 63, 82, 0.4);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
}

.flow-step--active {
  background: var(--gradient-brand);
  color: var(--deep-teal);
}

.flow-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

.flow-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--soft-cyan), transparent);
  margin-left: 1.6rem;
}

/* Bento block */
.section--contrast {
  max-width: none;
  background: var(--dark-slate);
  margin: 0;
  padding-left: max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
}

.section--contrast::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-brand);
  opacity: 0.4;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  max-width: var(--max-w);
}

.bento__item {
  background: rgba(30, 45, 51, 0.6);
  border: 1px solid rgba(116, 202, 229, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.bento__item:hover {
  border-color: rgba(0, 194, 232, 0.35);
  transform: translateY(-4px);
}

.bento__item--wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0, 143, 179, 0.25) 0%, rgba(30, 45, 51, 0.8) 100%);
}

.bento__item--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gradient-brand);
  border: none;
}

.bento__item--cta h3,
.bento__item--cta p { color: var(--deep-teal); }

.bento__item--cta .btn { margin-top: 1rem; align-self: flex-start; }

.bento__num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--bright-aqua);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.75rem;
}

/* Cards 3x3 */
.section--capabilities {
  background-image: var(--gradient-glow);
}

.cards {
  display: grid;
  gap: 1.25rem;
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: rgba(1, 73, 94, 0.45);
  border: 1px solid rgba(116, 202, 229, 0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 194, 232, 0.15);
  border-radius: var(--radius-sm);
  color: var(--bright-aqua);
  margin-bottom: 1.25rem;
}

.card__icon svg { width: 22px; height: 22px; }

.card--accent {
  background: var(--midnight-cyan);
  border-color: var(--bright-aqua);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card__tagline {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bright-aqua);
  margin-bottom: 0.5rem;
}

.card--accent h3 { font-size: 1.35rem; margin-bottom: 1.25rem; }

/* Teams 2x2 */
.section--teams {
  padding-top: 5rem;
}

.cards--2 {
  grid-template-columns: repeat(2, 1fr);
}

.team-card {
  background: var(--ice-blue);
  color: var(--deep-teal);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform 0.25s var(--ease);
}

.team-card:hover { transform: scale(1.02); }

.team-card--highlight {
  background: var(--gradient-brand);
  grid-column: span 1;
}

.team-card__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  display: block;
  margin-bottom: 0.5rem;
}

.team-card h3 {
  color: var(--deep-teal);
  font-size: 1.1rem;
}

.team-card p {
  color: var(--graphite);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.check-list {
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: rgba(243, 245, 247, 0.75);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--bright-aqua);
  transform: rotate(45deg);
}

/* Security split panel */
.section--security {
  max-width: none;
  padding: 0 1.5rem clamp(4rem, 10vw, 7rem);
}

.security-panel {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--midnight-cyan);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(116, 202, 229, 0.2);
  box-shadow: var(--shadow-soft);
}

.security-panel__left {
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--gradient-dark);
}

.security-panel__left .btn { margin-top: 2rem; }

.security-panel__right {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(11, 30, 37, 0.5);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  height: 100%;
}

.security-item {
  padding: 1.5rem;
  background: rgba(0, 63, 82, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(116, 202, 229, 0.1);
}

.security-item__icon {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-brand);
  margin-bottom: 1rem;
}

.security-item h4 { margin-bottom: 0.35rem; font-size: 0.95rem; }
.security-item p { font-size: 0.85rem; color: rgba(243, 245, 247, 0.6); }

.contact__quote {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.philosophy__traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.philosophy__traits--inline {
  margin-top: 1.75rem;
}

.philosophy__traits span {
  padding: 0.4rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--deep-teal);
  background: var(--ice-blue);
  border-radius: 100px;
}

/* Contact */
.section--contact {
  max-width: none;
  background: var(--dark-slate);
  margin: 0;
  padding: clamp(4rem, 10vw, 6rem) 1.5rem;
  border-top: 1px solid rgba(116, 202, 229, 0.15);
}

.contact-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.contact__details { margin-top: 2rem; }

.contact__detail {
  margin-bottom: 1.25rem;
}

.contact__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--graphite);
  color: rgba(116, 202, 229, 0.7);
  margin-bottom: 0.25rem;
}

.contact-form {
  background: rgba(0, 63, 82, 0.6);
  border: 1px solid rgba(116, 202, 229, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row--full { grid-column: 1 / -1; }

.form-row label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--soft-cyan);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  background: rgba(11, 30, 37, 0.6);
  border: 1px solid rgba(116, 202, 229, 0.2);
  border-radius: var(--radius-sm);
  color: var(--white-smoke);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(243, 245, 247, 0.35);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--bright-aqua);
  box-shadow: 0 0 0 3px rgba(0, 194, 232, 0.15);
}

.form-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2374CAE5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row select option {
  background: var(--deep-teal);
  color: var(--white-smoke);
}

.form-row textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { grid-column: 1 / -1; }

.form-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: rgba(243, 245, 247, 0.45);
  text-align: center;
}

.form-note a { color: var(--soft-cyan); }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--dark-slate);
  border-top: 1px solid rgba(116, 202, 229, 0.1);
  padding: 4rem 1.5rem 2rem;
}

.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.5rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(243, 245, 247, 0.5);
  margin: 1rem 0 1.5rem;
  max-width: 220px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--soft-cyan);
}

.footer__social:hover { color: var(--electric-cyan); }

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ice-blue);
  margin-bottom: 1.25rem;
}

.footer__col ul li { margin-bottom: 0.65rem; }

.footer__col a {
  font-size: 0.9rem;
  color: rgba(243, 245, 247, 0.55);
  font-weight: 500;
}

.footer__col a:hover { color: var(--ice-blue); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(116, 202, 229, 0.08);
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(243, 245, 247, 0.4);
}

.logo--footer { font-size: 1rem; }

/* Form success state */
.contact-form.is-submitted .btn {
  pointer-events: none;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid,
  .split,
  .contact-wrap,
  .security-panel {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__visual { order: 0; }
  .hero__visual { height: 360px; order: -1; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__item--wide { grid-column: span 2; }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav, .header__cta { display: none; }
  .menu-toggle { display: flex; }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(0, 63, 82, 0.98);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(116, 202, 229, 0.15);
  }

  .hero__stats { flex-direction: column; gap: 1rem; }
  .bento { grid-template-columns: 1fr; }
  .bento__item--wide { grid-column: span 1; }
  .cards--3,
  .cards--2,
  .security-grid {
    grid-template-columns: 1fr;
  }
  .contact-form { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* ——— Inner pages ——— */
body.page-inner main {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
}

.page-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem 2rem;
}

.page-hero--compact { padding-bottom: 1rem; }

.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 720px;
  margin-bottom: 1rem;
}

.page-hero__lead {
  font-size: 1.1rem;
  max-width: 600px;
  color: rgba(243, 245, 247, 0.75);
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-meta-tag {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  background: rgba(0, 194, 232, 0.12);
  border: 1px solid rgba(116, 202, 229, 0.25);
  border-radius: 100px;
  color: var(--soft-cyan);
}

.page-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.page-section--dark {
  max-width: none;
  background: var(--dark-slate);
  margin: 2rem 0;
  padding: clamp(3rem, 6vw, 4.5rem) max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.page-section--glow {
  background-image: var(--gradient-glow);
}

.page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.page-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding: 1.5rem;
  background: rgba(1, 73, 94, 0.45);
  border: 1px solid rgba(116, 202, 229, 0.15);
  border-radius: var(--radius-md);
}

.page-sidebar h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bright-aqua);
  margin-bottom: 1rem;
}

.page-sidebar a {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(243, 245, 247, 0.6);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(116, 202, 229, 0.08);
}

.page-sidebar a:hover { color: var(--ice-blue); }

.legal-content { max-width: 720px; }

.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(116, 202, 229, 0.12);
}

.legal-block:last-child { border-bottom: none; }

.legal-block h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--ice-blue);
}

.legal-block h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--soft-cyan);
}

.legal-block p,
.legal-block li {
  font-size: 0.95rem;
  color: rgba(243, 245, 247, 0.72);
  margin-bottom: 0.65rem;
}

.legal-block ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.page-cards {
  display: grid;
  gap: 1.25rem;
}

.page-cards--2 { grid-template-columns: repeat(2, 1fr); }
.page-cards--3 { grid-template-columns: repeat(3, 1fr); }
.page-cards--4 { grid-template-columns: repeat(4, 1fr); }

.page-card {
  background: rgba(1, 73, 94, 0.45);
  border: 1px solid rgba(116, 202, 229, 0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.page-card--light {
  background: var(--ice-blue);
  color: var(--deep-teal);
}

.page-card--light h3 { color: var(--deep-teal); }
.page-card--light p { color: var(--graphite); }

.page-card--gradient {
  background: var(--gradient-brand);
  border: none;
}

.page-card--gradient h3,
.page-card--gradient p { color: var(--deep-teal); }

.page-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 194, 232, 0.2);
  margin-bottom: 1rem;
}

.page-card--light .page-card__icon,
.page-card--gradient .page-card__icon {
  background: rgba(0, 63, 82, 0.15);
}

.page-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

.page-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(0, 194, 232, 0.08);
  border: 1px solid rgba(116, 202, 229, 0.2);
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.page-strip span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--soft-cyan);
  padding-right: 1.5rem;
  border-right: 1px solid rgba(116, 202, 229, 0.2);
}

.page-strip span:last-child { border-right: none; }

/* Pricing */
.pricing-toggle {
  display: inline-flex;
  background: rgba(11, 30, 37, 0.6);
  border-radius: 100px;
  padding: 4px;
  margin: 2rem 0;
  border: 1px solid rgba(116, 202, 229, 0.2);
}

.pricing-toggle button {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: rgba(243, 245, 247, 0.6);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.pricing-toggle button.is-active {
  background: var(--gradient-brand);
  color: var(--deep-teal);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: rgba(1, 73, 94, 0.5);
  border: 1px solid rgba(116, 202, 229, 0.18);
  border-radius: var(--radius-lg);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.pricing-card--featured {
  background: var(--gradient-dark);
  border-color: var(--bright-aqua);
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  background: var(--gradient-brand);
  color: var(--deep-teal);
  border-radius: 100px;
}

.pricing-card__tier {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bright-aqua);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ice-blue);
  margin: 0.5rem 0;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(243, 245, 247, 0.5);
}

.pricing-card__desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 0;
}

.pricing-card__features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.pricing-card__features li {
  font-size: 0.88rem;
  color: rgba(243, 245, 247, 0.7);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--bright-aqua);
  border-radius: 50%;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(116, 202, 229, 0.12);
}

.compare-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft-cyan);
  font-weight: 700;
}

.compare-table tr:hover td {
  background: rgba(0, 194, 232, 0.05);
}

.compare-table .check {
  color: var(--bright-aqua);
  font-weight: 800;
}

/* Support */
.support-search {
  display: flex;
  gap: 0.75rem;
  max-width: 560px;
  margin-top: 1.5rem;
}

.support-search input {
  flex: 1;
  font-family: var(--font);
  padding: 0.9rem 1.25rem;
  background: rgba(11, 30, 37, 0.5);
  border: 1px solid rgba(116, 202, 229, 0.25);
  border-radius: 100px;
  color: var(--white-smoke);
  font-size: 0.95rem;
}

.support-search input:focus {
  outline: none;
  border-color: var(--bright-aqua);
}

.support-channel {
  text-align: center;
  padding: 2rem 1.5rem;
}

.support-channel__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  margin-bottom: 0.75rem;
}

.faq-list { max-width: 800px; }

.faq-item {
  border: 1px solid rgba(116, 202, 229, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: rgba(1, 73, 94, 0.35);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ice-blue);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--bright-aqua);
  transition: transform 0.2s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: rgba(243, 245, 247, 0.68);
}

.page-form-section {
  max-width: none;
  background: var(--dark-slate);
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(116, 202, 229, 0.12);
}

.page-form-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.page-form-wrap .contact-form {
  margin: 0;
}

.nav a.is-active {
  color: var(--ice-blue);
}

@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .pricing-grid,
  .page-cards--3,
  .page-cards--4 { grid-template-columns: repeat(2, 1fr); }
  .page-form-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pricing-grid,
  .page-cards--2,
  .page-cards--3,
  .page-cards--4 { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th,
  .compare-table td { padding: 0.75rem; }
}
