* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #07111f;
  --bg-soft: #0b1728;
  --text: #f7fbff;
  --muted: #aab7c7;
  --line: rgba(255, 255, 255, 0.11);
  --primary: #36d8ff;
  --primary-2: #6574ff;
  --card: rgba(255, 255, 255, 0.07);
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 76px;
  background: rgba(7, 17, 31, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-right: auto;
}

.logo > span:last-child span {
  color: var(--primary);
}

.logo-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 30px rgba(54, 216, 255, 0.22);
}

.logo-mark span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #07111f;
  position: relative;
}

.logo-mark span::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  top: 4px;
  left: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  position: relative;
  z-index: 2;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: #c5d0dd;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--white);
  color: #07111f;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--white);
  margin: 4px auto;
  border-radius: 10px;
}

.hero {
  min-height: 690px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 45%, rgba(54, 216, 255, 0.12), transparent 28%),
    radial-gradient(circle at 20% 70%, rgba(101, 116, 255, 0.10), transparent 30%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 65px;
  padding: 78px 0;
  position: relative;
  z-index: 2;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(54, 216, 255, 0.22);
  background: rgba(54, 216, 255, 0.06);
  color: #b9eff9;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 22px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4df3a8;
  box-shadow: 0 0 12px rgba(77, 243, 168, 0.8);
}

h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 800;
}

h1 span {
  background: linear-gradient(90deg, #ffffff 10%, var(--primary) 75%, #8d98ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--muted);
  font-size: 17px;
  max-width: 570px;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #06111d;
  background: linear-gradient(135deg, var(--primary), #8cf1ff);
  box-shadow: 0 10px 35px rgba(54, 216, 255, 0.2);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
  color: #aebdcc;
  font-size: 12px;
}

.hero-points span {
  color: var(--primary);
  margin-right: 5px;
  font-weight: 800;
}

.hero-visual {
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
}

.dashboard-card {
  width: min(500px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(12, 25, 43, 0.9);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(54, 216, 255, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 3;
  backdrop-filter: blur(18px);
}

.dashboard-top {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
  color: #dce8f3;
  font-size: 13px;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 5px;
  margin-right: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #728093;
}

.live-badge {
  margin-left: auto;
  color: #71f1b4;
  background: rgba(113, 241, 180, 0.08);
  border: 1px solid rgba(113, 241, 180, 0.15);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
}

.chat-area {
  min-height: 355px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bot-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bot-avatar {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #07111f;
  font-size: 10px;
  font-weight: 800;
}

.message {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 12px;
  max-width: 80%;
}

.bot-message {
  background: rgba(255, 255, 255, 0.07);
  color: #d6e1ed;
  border-top-left-radius: 4px;
}

.user-message {
  align-self: flex-end;
  background: rgba(54, 216, 255, 0.12);
  color: #d8f9ff;
  border: 1px solid rgba(54, 216, 255, 0.12);
  border-bottom-right-radius: 4px;
}

.typing {
  color: #7d8da0;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 45px;
}

.typing span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  animation: blink 1.2s infinite ease-in-out;
}

.typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes blink {
  0%, 70%, 100% { opacity: 0.3; transform: translateY(0); }
  35% { opacity: 1; transform: translateY(-2px); }
}

.chat-input {
  height: 58px;
  margin: 0 15px 15px;
  padding: 0 10px 0 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  color: #68788b;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.chat-input button {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 9px;
  background: var(--primary);
  color: #06111d;
  font-weight: 900;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(11, 23, 40, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 11px;
  color: #f0f6fb;
}

.floating-card small {
  color: #7f90a2;
  font-size: 9px;
  margin-top: 2px;
}

.mini-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(54, 216, 255, 0.11);
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
}

.leads-card {
  top: 70px;
  right: -10px;
}

.support-card {
  bottom: 55px;
  left: -20px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(54, 216, 255, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 530px;
  height: 530px;
}

.orbit-two {
  width: 650px;
  height: 650px;
  border-color: rgba(101, 116, 255, 0.07);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-one {
  width: 350px;
  height: 350px;
  background: rgba(54, 216, 255, 0.08);
  right: 10%;
  top: 15%;
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  background: rgba(101, 116, 255, 0.08);
  left: 10%;
  bottom: 0;
}

.trust-strip {
  background: #0a1626;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
}

.trust-grid div {
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--primary);
  font-size: 17px;
}

.trust-grid span {
  color: #8e9dad;
  font-size: 11px;
  margin-top: 2px;
}

.placeholder-section {
  padding: 120px 0;
  background: #07111f;
}

.placeholder-section.light {
  background: #f7fafc;
  color: #101827;
}

.section-heading {
  text-align: center;
}

.section-heading > span {
  color: #5a6878;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 10px;
  font-weight: 800;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-top: 12px;
}

.section-heading p {
  max-width: 620px;
  margin: 15px auto 0;
  color: #8795a5;
  font-size: 14px;
}

.site-footer {
  padding: 30px 0;
  background: #040a12;
  border-top: 1px solid var(--line);
  color: #728092;
  text-align: center;
  font-size: 11px;
}

@media (max-width: 960px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0a1728;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  }

  .main-nav.open a {
    padding: 11px 8px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 65px;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    min-height: 440px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
  }

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 55px 0 65px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 15px;
  }

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

  .hero-points {
    flex-direction: column;
    gap: 8px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .dashboard-card {
    border-radius: 16px;
  }

  .chat-area {
    min-height: 290px;
    padding: 18px 14px;
  }

  .floating-card {
    display: none;
  }

  .orbit-one {
    width: 380px;
    height: 380px;
  }

  .orbit-two {
    width: 460px;
    height: 460px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid div {
    border-right: 0;
  }

  .placeholder-section {
    padding: 85px 0;
  }
}

/* Pricing */
.pricing-section {
  padding: 115px 0 105px;
  background: #f7fafc;
  color: #0a1728;
}

.pricing-heading {
  max-width: 780px;
  margin: 0 auto 55px;
}

.pricing-heading > span {
  color: #3d72a0;
}

.pricing-heading h2 {
  color: #0a1728;
}

.pricing-heading p {
  color: #647386;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 22px 22px;
  border: 1px solid #dce4ec;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(15, 35, 55, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(15, 35, 55, 0.11);
  border-color: #c9d8e6;
}

.pricing-card.featured {
  border: 2px solid #36cfea;
  box-shadow: 0 18px 55px rgba(54, 216, 255, 0.15);
  padding: 27px 21px 21px;
}

.pricing-card.value-card {
  border-color: #aebaff;
}

.pricing-card.offer-card {
  color: #ffffff;
  background: linear-gradient(160deg, #0a1830, #0b2436);
  border-color: rgba(54, 216, 255, 0.34);
  box-shadow: 0 18px 55px rgba(5, 18, 32, 0.22);
}

.plan-top {
  min-height: 130px;
}

.plan-label {
  display: inline-block;
  color: #58728a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.offer-card .plan-label {
  color: #77e9fa;
}

.plan-top h3 {
  margin-top: 10px;
  color: #0a1728;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.offer-card .plan-top h3 {
  color: #ffffff;
}

.plan-top p {
  margin-top: 9px;
  color: #748294;
  font-size: 11px;
  line-height: 1.55;
}

.offer-card .plan-top p {
  color: #aabccc;
}

.price {
  margin: 4px 0 24px;
  color: #07111f;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price sup {
  font-size: 18px;
  vertical-align: top;
  position: relative;
  top: 4px;
  margin-right: 2px;
}

.price span {
  display: block;
  margin-top: 8px;
  color: #7c8b9b;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.offer-card .price {
  color: #ffffff;
}

.offer-card .price span {
  color: #9fb2c4;
}

.plan-features {
  list-style: none;
  margin: 0 0 24px;
  display: grid;
  gap: 11px;
}

.plan-features li {
  position: relative;
  padding-left: 19px;
  color: #4f6072;
  font-size: 11px;
  line-height: 1.35;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #18b9d8;
  font-weight: 800;
}

.offer-card .plan-features li {
  color: #c4d0dc;
}

.plan-btn {
  margin-top: auto;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 15px;
  border: 1px solid #d6e0e9;
  border-radius: 10px;
  background: #ffffff;
  color: #0a1728;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.plan-btn:hover {
  transform: translateY(-2px);
  background: #f2f7fa;
}

.plan-btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #36d8ff, #8cf1ff);
  color: #06111d;
}

.offer-card .plan-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.offer-card .plan-btn.primary {
  background: linear-gradient(135deg, #36d8ff, #8cf1ff);
  color: #06111d;
}

.popular-badge,
.value-badge,
.offer-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.popular-badge {
  background: #36d8ff;
  color: #06111d;
}

.value-badge {
  background: #6574ff;
  color: #ffffff;
}

.offer-badge {
  background: #0e2e40;
  color: #75edff;
  border: 1px solid rgba(117, 237, 255, 0.25);
}

.pricing-note {
  margin-top: 25px;
  color: #788697;
  text-align: center;
  font-size: 11px;
}

@media (max-width: 1120px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pricing-section {
    padding: 85px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .pricing-card,
  .pricing-card.featured {
    padding: 28px 24px 23px;
  }

  .plan-top {
    min-height: auto;
    margin-bottom: 22px;
  }
}

/* Features */
.features-section {
  padding: 115px 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(54, 216, 255, 0.07), transparent 24%),
    radial-gradient(circle at 85% 75%, rgba(101, 116, 255, 0.07), transparent 25%),
    #07111f;
}

.features-heading {
  max-width: 760px;
  margin: 0 auto 55px;
}

.features-heading > span {
  color: #65dff4;
}

.features-heading h2 {
  color: #f7fbff;
}

.features-heading p {
  color: #8e9dae;
}

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

.feature-card {
  min-height: 245px;
  padding: 30px 27px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(54, 216, 255, 0.28);
  background: rgba(255, 255, 255, 0.065);
}

.feature-card-wide {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 19px;
  align-content: start;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 13px;
  background: rgba(54, 216, 255, 0.10);
  border: 1px solid rgba(54, 216, 255, 0.18);
  color: #5be5fb;
  font-size: 15px;
  font-weight: 800;
}

.feature-card h3 {
  color: #f3f8fc;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-top: 2px;
}

.feature-card p {
  margin-top: 12px;
  color: #9aa8b8;
  font-size: 12px;
  line-height: 1.7;
}

.feature-card > p {
  margin-top: 12px;
}

.feature-tag {
  display: inline-flex;
  margin-top: 22px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(54, 216, 255, 0.07);
  color: #70ddec;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 85px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .feature-card {
    min-height: auto;
  }
}

/* How It Works */
.how-section{padding:115px 0;background:#f7fafc;color:#0a1728}
.how-heading{max-width:720px;margin:0 auto 62px}
.how-heading>span{color:#3d72a0}
.how-heading h2{color:#0a1728}
.how-heading p{color:#647386}
.steps-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.step-card{position:relative;min-height:300px;padding:31px 28px;border:1px solid #dce4ec;border-radius:18px;background:#fff;box-shadow:0 12px 38px rgba(15,35,55,.055);overflow:hidden}
.step-card::after{content:"";position:absolute;width:150px;height:150px;right:-65px;bottom:-70px;border-radius:50%;background:rgba(54,216,255,.07)}
.step-number{width:52px;height:52px;display:grid;place-items:center;border-radius:14px;background:#07111f;color:#65e4fa;font-size:14px;font-weight:800;letter-spacing:.04em}
.step-line{width:46px;height:2px;margin:28px 0 23px;background:#36d8ff}
.step-card h3{color:#0a1728;font-size:20px;line-height:1.25;letter-spacing:-.03em}
.step-card p{max-width:330px;margin-top:12px;color:#687789;font-size:12px;line-height:1.75}
.how-bottom{max-width:720px;margin:45px auto 0;padding:18px 22px;display:flex;align-items:center;gap:15px;border:1px solid #dce4ec;border-radius:14px;background:#fff}
.how-bottom-icon{width:43px;height:43px;display:grid;place-items:center;flex:0 0 43px;border-radius:12px;background:#07111f;color:#65e4fa;font-size:11px;font-weight:800}
.how-bottom strong,.how-bottom span{display:block}
.how-bottom strong{color:#0a1728;font-size:12px}
.how-bottom span{margin-top:4px;color:#718092;font-size:11px}
@media(max-width:760px){.how-section{padding:85px 0}.steps-grid{grid-template-columns:1fr}.step-card{min-height:auto}.how-bottom{align-items:flex-start}}

/* FAQ */
.faq-section {
  padding: 115px 0;
  background: #07111f;
}

.faq-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 75px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro > span {
  color: #65e4fa;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
  font-weight: 800;
}

.faq-intro h2 {
  margin-top: 14px;
  color: #f7fbff;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.faq-intro p {
  max-width: 380px;
  margin-top: 17px;
  color: #8f9dad;
  font-size: 13px;
  line-height: 1.7;
}

.faq-contact-link {
  display: inline-flex;
  margin-top: 28px;
  color: #65e4fa;
  font-size: 12px;
  font-weight: 700;
}

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

.faq-item {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 66px;
  padding: 18px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: #eaf2f8;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}

.faq-plus {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: #65e4fa;
  font-size: 18px;
  font-weight: 400;
  transition: transform .2s ease, background .2s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  padding: 0 21px;
  color: #8f9dad;
  font-size: 12px;
  line-height: 1.75;
}

.faq-item.active {
  border-color: rgba(54,216,255,.22);
  background: rgba(54,216,255,.045);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 20px;
}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
  background: rgba(54,216,255,.08);
}

@media (max-width: 850px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-intro {
    position: static;
    text-align: center;
  }

  .faq-intro p {
    margin-left: auto;
    margin-right: auto;
  }

  .faq-contact-link {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 85px 0;
  }

  .faq-question {
    min-height: 62px;
    padding: 16px;
    font-size: 12px;
  }

  .faq-answer p {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Contact */
.contact-section {
  padding: 115px 0;
  background: #f7fafc;
}

.contact-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  padding: 55px;
  border: 1px solid #dce4ec;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(15,35,55,.07);
}

.contact-copy > span {
  color: #3d72a0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.contact-copy h2 {
  max-width: 470px;
  margin-top: 15px;
  color: #0a1728;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.contact-copy > p {
  max-width: 470px;
  margin-top: 18px;
  color: #69798a;
  font-size: 13px;
  line-height: 1.75;
}

.contact-details {
  margin-top: 35px;
  display: grid;
  gap: 18px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 11px;
  background: #07111f;
  color: #65e4fa;
  font-size: 12px;
  font-weight: 800;
}

.contact-detail strong,
.contact-detail a,
.contact-detail span {
  display: block;
}

.contact-detail strong {
  color: #0a1728;
  font-size: 12px;
}

.contact-detail a,
.contact-detail span {
  margin-top: 4px;
  color: #708093;
  font-size: 11px;
}

.contact-detail a:hover {
  color: #159bb8;
}

.contact-form {
  display: grid;
  gap: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #26384b;
  font-size: 11px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7e0e9;
  border-radius: 10px;
  background: #f9fbfd;
  color: #0a1728;
  padding: 13px 14px;
  font: inherit;
  font-size: 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input {
  height: 45px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #36d8ff;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(54,216,255,.10);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa7b5;
}

.contact-submit {
  min-height: 47px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #36d8ff, #8cf1ff);
  color: #06111d;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.contact-submit:hover {
  filter: brightness(.97);
}

.form-note {
  margin-top: -6px;
  color: #8997a6;
  font-size: 10px;
  text-align: center;
}

@media (max-width: 850px) {
  .contact-box {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 38px 28px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 85px 0;
  }

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

  .contact-box {
    padding: 30px 20px;
    border-radius: 18px;
  }
}

/* Footer */
.site-footer {
  padding: 72px 0 0;
  background: #030b15;
  color: #a4b1c0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr .8fr;
  gap: 55px;
  padding-bottom: 55px;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f5f9fc;
  font-size: 17px;
  font-weight: 800;
}

.footer-logo > span:last-child > span {
  color: #4edcf7;
}

.footer-logo-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #36d8ff, #5d7cff);
  color: #06111d;
  font-size: 9px;
  font-weight: 900;
}

.footer-brand p {
  margin-top: 18px;
  max-width: 360px;
  color: #718094;
  font-size: 11px;
  line-height: 1.8;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column h3 {
  margin-bottom: 5px;
  color: #f2f7fb;
  font-size: 12px;
}

.footer-column a {
  color: #7f8da0;
  font-size: 11px;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: #5fe2fa;
}

.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #617083;
  font-size: 10px;
}

@media (max-width: 850px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: 85px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background: #f7fafc;
  color: #102033;
}

.legal-header {
  background: #030b15;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.legal-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-back {
  color: #9aaabd;
  font-size: 11px;
}

.legal-back:hover {
  color: #5fe2fa;
}

.legal-main {
  padding: 85px 0 105px;
}

.legal-container {
  max-width: 900px;
  padding: 0 24px;
}

.legal-kicker {
  color: #208eaa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.legal-container h1 {
  margin-top: 13px;
  color: #081628;
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1;
  letter-spacing: -.045em;
}

.legal-updated {
  margin-top: 14px;
  color: #748397;
  font-size: 11px;
}

.legal-container > p:not(.legal-updated) {
  margin-top: 24px;
  color: #536579;
  font-size: 13px;
  line-height: 1.85;
}

.legal-container h2 {
  margin-top: 42px;
  color: #0a1728;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.legal-container h2 + p,
.legal-container h2 + ul {
  margin-top: 13px;
}

.legal-container ul {
  padding-left: 22px;
  color: #536579;
  font-size: 13px;
  line-height: 1.9;
}

.legal-container a {
  color: #168da9;
  font-weight: 600;
}

.legal-note {
  margin-top: 48px;
  padding: 18px 20px;
  border: 1px solid #d7e2eb;
  border-radius: 12px;
  background: #eef5f9;
  color: #607286;
  font-size: 11px;
  line-height: 1.7;
}

.legal-note strong {
  color: #18334c;
}

.legal-footer {
  padding-top: 0;
}

.legal-footer .footer-bottom a {
  color: #7f8da0;
}

.legal-footer .footer-bottom a:hover {
  color: #5fe2fa;
}

@media (max-width: 600px) {
  .legal-main {
    padding: 60px 0 75px;
  }

  .legal-nav {
    min-height: 68px;
  }

  .legal-container h2 {
    margin-top: 34px;
    font-size: 19px;
  }
}
