:root {
  --bg: #07111f;
  --bg-soft: #0b1728;
  --surface: #0e1b2e;
  --surface-2: #122238;
  --surface-3: #162941;

  --text: #f4f8ff;
  --text-soft: #aab8ca;
  --text-muted: #718198;

  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);

  --blue: #35a7ff;
  --blue-strong: #1688e8;
  --cyan: #39d8ff;

  --green: #45e0a2;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.22);

  --container: 1160px;
}


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


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 5%, rgba(35, 145, 255, 0.08), transparent 28rem),
    var(--bg);

  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 16px;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;

  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);

  background-size: 48px 48px;

  mask-image: linear-gradient(
    to bottom,
    black,
    transparent 70%
  );
}


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


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


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


button {
  font: inherit;
}


.container {
  width: min(
    calc(100% - 32px),
    var(--container)
  );

  margin-inline: auto;
}


.narrow-container {
  max-width: 820px;
}


.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;

  z-index: 9999;

  padding: 10px 14px;

  border-radius: 10px;

  background: var(--blue);
  color: #00101e;

  font-weight: 800;

  transform: translateY(-160%);
}


.skip-link:focus {
  transform: translateY(0);
}


.site-header {
  position: sticky;
  top: 0;

  z-index: 100;

  border-bottom: 1px solid var(--line);

  background: rgba(7, 17, 31, 0.94);
}


.header-inner {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}


.brand {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  min-width: 0;
}


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

  flex: 0 0 38px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(53, 167, 255, 0.3);

  border-radius: 11px;

  color: var(--blue);

  background:
    linear-gradient(
      145deg,
      rgba(53, 167, 255, 0.16),
      rgba(57, 216, 255, 0.04)
    );
}


.brand-mark svg {
  width: 27px;
  height: 27px;
}


.brand-copy {
  display: flex;
  flex-direction: column;

  line-height: 1.05;
}


.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.08em;
}


.brand-copy small {
  margin-top: 4px;

  color: var(--text-muted);

  font-size: 9px;
  letter-spacing: 0.04em;
}


.site-nav {
  display: flex;
  align-items: center;

  gap: 26px;

  color: var(--text-soft);

  font-size: 14px;
  font-weight: 650;
}


.site-nav a {
  transition:
    color .2s ease,
    background .2s ease;
}


.site-nav a:hover {
  color: var(--text);
}


.site-nav .nav-cta {
  padding: 10px 16px;

  border: 1px solid rgba(53, 167, 255, 0.28);
  border-radius: 10px;

  background: rgba(53, 167, 255, 0.08);

  color: #dff4ff;
}


.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 10px;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: var(--surface);

  cursor: pointer;
}


.menu-toggle span {
  display: block;

  width: 20px;
  height: 2px;

  margin: 4px auto;

  border-radius: 4px;

  background: var(--text);
}


/* HERO */

.hero {
  position: relative;

  padding:
    96px 0
    90px;

  overflow: hidden;
}


.hero::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -250px;
  top: -250px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(53, 167, 255, 0.12),
      transparent 68%
    );

  pointer-events: none;
}


.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(380px, .92fr);

  gap: 72px;

  align-items: center;
}


.eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 22px;

  color: #a8dfff;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .13em;
}


.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 0 5px rgba(69, 224, 162, 0.08);
}


.hero h1 {
  max-width: 760px;

  margin: 0;

  font-size: clamp(
    42px,
    6vw,
    72px
  );

  line-height: .99;

  letter-spacing: -0.055em;

  font-weight: 800;
}


.hero h1 span {
  display: block;

  background:
    linear-gradient(
      100deg,
      #ffffff,
      #67c8ff
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


.hero-description {
  max-width: 650px;

  margin:
    26px 0
    0;

  color: var(--text-soft);

  font-size: clamp(
    16px,
    2vw,
    18px
  );

  line-height: 1.75;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 32px;
}


.button {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding:
    13px 19px;

  border-radius: 12px;

  font-size: 14px;
  font-weight: 800;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}


.button svg {
  width: 18px;
  height: 18px;
}


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


.button-primary {
  border: 1px solid rgba(110, 208, 255, 0.45);

  background:
    linear-gradient(
      135deg,
      var(--blue-strong),
      #25b6ed
    );

  color: #ffffff;

  box-shadow:
    0 10px 28px rgba(22, 136, 232, 0.22);
}


.button-secondary {
  border: 1px solid var(--line-strong);

  background: rgba(255,255,255,.025);

  color: var(--text-soft);
}


.button-secondary:hover {
  color: var(--text);

  border-color:
    rgba(255,255,255,.24);

  background:
    rgba(255,255,255,.055);
}


.hero-trust {
  display: flex;
  flex-wrap: wrap;

  gap: 9px;

  margin-top: 24px;

  color: var(--text-muted);

  font-size: 12px;
  font-weight: 650;
}


/* HERO VISUAL */

.hero-visual {
  position: relative;
}


.visual-card {
  position: relative;

  padding: 24px;

  border:
    1px solid
    rgba(255,255,255,.1);

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(18, 34, 56, .94),
      rgba(8, 20, 35, .96)
    );

  box-shadow: var(--shadow);

  overflow: hidden;
}


.visual-card::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  top: -140px;
  right: -100px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(57,216,255,.16),
      transparent 70%
    );
}


.visual-top,
.visual-footer {
  position: relative;

  display: flex;
  justify-content: space-between;
  align-items: center;
}


.visual-top {
  margin-bottom: 28px;

  color: var(--text-muted);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .13em;
}


.live-pill {
  display: inline-flex;
  align-items: center;

  gap: 6px;

  padding: 5px 8px;

  border:
    1px solid
    rgba(69,224,162,.16);

  border-radius: 99px;

  color: var(--green);

  font-size: 9px;
}


.live-pill span {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--green);
}


.visual-title {
  display: flex;
  align-items: center;

  gap: 15px;

  margin-bottom: 22px;
}


.visual-title strong {
  font-size: 54px;

  line-height: .9;

  letter-spacing: -.06em;
}


.visual-title div {
  display: flex;
  flex-direction: column;
}


.visual-title span {
  color: var(--text-soft);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .08em;
}


.visual-title small {
  margin-top: 3px;

  color: var(--text-muted);

  font-size: 11px;
}


.mini-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 8px;
}


.mini-slot {
  min-height: 62px;

  padding: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border:
    1px solid
    rgba(255,255,255,.065);

  border-radius: 10px;

  background:
    rgba(255,255,255,.025);
}


.mini-slot small {
  color: var(--text-muted);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .08em;
}


.mini-slot strong {
  margin-top: 2px;

  color: #6f7f93;

  font-size: 9px;

  letter-spacing: .06em;
}


.mini-slot.active {
  border-color:
    rgba(53,167,255,.28);

  background:
    linear-gradient(
      135deg,
      rgba(53,167,255,.12),
      rgba(53,167,255,.035)
    );
}


.mini-slot.active strong {
  color: #bce8ff;
}


.visual-footer {
  margin-top: 20px;

  padding-top: 16px;

  border-top: 1px solid var(--line);

  color: var(--text-muted);

  font-size: 11px;
}


/* SECTION */

.section {
  padding: 100px 0;
}


.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 40px;

  margin-bottom: 42px;
}


.section-heading > div {
  flex: 1;
}


.section-heading h2,
.contact-box h2,
.partner-copy h2,
.principle-content h2 {
  margin: 8px 0 0;

  font-size: clamp(
    32px,
    4vw,
    50px
  );

  line-height: 1.05;

  letter-spacing: -.045em;
}


.section-heading p {
  max-width: 430px;

  margin: 0;

  color: var(--text-muted);

  line-height: 1.75;
}


.section-kicker {
  color: #72cbff;

  font-size: 10px;
  font-weight: 850;

  letter-spacing: .15em;
}


.centered {
  display: block;

  max-width: 700px;

  margin-inline: auto;

  text-align: center;
}


.centered p {
  max-width: 560px;

  margin:
    18px auto
    0;
}


/* SLOT SUMMARY */

.slot-summary {
  display: grid;

  grid-template-columns:
    auto minmax(200px, 1fr);

  gap: 34px;

  align-items: center;

  margin-bottom: 20px;

  padding:
    18px 20px;

  border:
    1px solid var(--line);

  border-radius: 15px;

  background:
    rgba(255,255,255,.025);
}


.slot-summary-main {
  display: flex;
  align-items: baseline;

  gap: 9px;
}


.slot-summary-main strong {
  font-size: 27px;

  line-height: 1;

  letter-spacing: -.04em;
}


.slot-summary-main span {
  color: var(--text-muted);

  font-size: 12px;
}


.slot-progress {
  width: 100%;
}


.progress-track {
  width: 100%;
  height: 5px;

  overflow: hidden;

  border-radius: 99px;

  background:
    rgba(255,255,255,.07);
}


.progress-track span {
  display: block;

  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--cyan)
    );
}


.progress-label {
  display: flex;
  justify-content: space-between;

  margin-top: 8px;

  color: var(--text-muted);

  font-size: 10px;
  font-weight: 700;
}


/* PROVIDER WALL */

.provider-wall {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;
}


.provider-slot {
  position: relative;

  min-height: 285px;

  border-radius: var(--radius-md);

  overflow: hidden;
}


.provider-active {
  display: flex;
  flex-direction: column;

  padding: 24px;

  border:
    1px solid
    rgba(53,167,255,.2);

  background:
    linear-gradient(
      145deg,
      rgba(18,37,62,.98),
      rgba(9,22,38,.98)
    );

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}


.provider-active:hover {
  transform: translateY(-3px);

  border-color:
    rgba(53,167,255,.4);

  box-shadow:
    0 18px 50px rgba(0,0,0,.2);
}


.slot-number {
  position: absolute;

  top: 16px;
  right: 18px;

  color: rgba(255,255,255,.22);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .1em;
}


.provider-content {
  display: grid;

  grid-template-columns:
    150px minmax(0, 1fr);

  gap: 26px;

  align-items: center;

  height: 100%;
}


.provider-logo-wrap {
  min-height: 110px;

  display: grid;
  place-items: center;

  padding: 16px;

  border:
    1px solid
    rgba(255,255,255,.07);

  border-radius: 15px;

  background:
    rgba(255,255,255,.96);
}


.provider-logo-wrap img {
  width: 130px;
  height: 64px;

  object-fit: contain;
}


.provider-info h3 {
  margin: 7px 0 7px;

  font-size: 30px;

  line-height: 1;

  letter-spacing: -.04em;
}


.provider-info p {
  max-width: 390px;

  margin: 0;

  color: var(--text-muted);

  font-size: 13px;

  line-height: 1.6;
}


.provider-badge {
  display: inline-flex;
  align-items: center;

  gap: 6px;

  color: var(--green);

  font-size: 9px;
  font-weight: 850;

  letter-spacing: .1em;
}


.provider-badge span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--green);
}


.provider-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 18px;
}


.small-button {
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding:
    8px 12px;

  border-radius: 9px;

  font-size: 11px;
  font-weight: 800;
}


.small-button.primary {
  background: var(--blue);

  color: #021426;
}


.small-button.secondary {
  border:
    1px solid
    rgba(255,255,255,.1);

  color: var(--text-soft);

  background:
    rgba(255,255,255,.03);
}


.slot-status {
  position: absolute;

  bottom: 18px;
  right: 18px;

  display: inline-flex;
  align-items: center;

  gap: 6px;

  color: var(--green);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .08em;
}


.active-indicator {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--green);
}


/* AVAILABLE */

.provider-available {
  min-height: 285px;

  display: grid;
  place-items: center;

  border:
    1px dashed
    rgba(255,255,255,.14);

  background:
    rgba(255,255,255,.012);

  transition:
    border-color .2s ease,
    background .2s ease,
    transform .2s ease;
}


.provider-available:hover {
  transform: translateY(-2px);

  border-color:
    rgba(53,167,255,.3);

  background:
    rgba(53,167,255,.025);
}


.available-content {
  display: flex;
  flex-direction: column;

  align-items: center;

  text-align: center;
}


.available-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  margin-bottom: 12px;

  border:
    1px solid
    rgba(255,255,255,.1);

  border-radius: 50%;

  color: var(--text-muted);

  font-size: 22px;
}


.available-label {
  color: var(--text-muted);

  font-size: 9px;
  font-weight: 850;

  letter-spacing: .13em;
}


.available-content strong {
  margin-top: 3px;

  color: rgba(255,255,255,.2);

  font-size: 31px;

  line-height: 1;

  letter-spacing: -.05em;
}


.available-content small {
  margin-top: 8px;

  color: #526174;

  font-size: 10px;
}


/* PROCESS */

.process-section {
  background:
    rgba(255,255,255,.018);

  border-top:
    1px solid
    rgba(255,255,255,.035);

  border-bottom:
    1px solid
    rgba(255,255,255,.035);
}


.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 12px;
}


.process-card {
  position: relative;

  min-height: 250px;

  padding: 24px;

  border:
    1px solid var(--line);

  border-radius: var(--radius-md);

  background:
    rgba(255,255,255,.02);
}


.process-number {
  position: absolute;

  top: 20px;
  right: 20px;

  color: rgba(255,255,255,.18);

  font-size: 10px;
  font-weight: 850;
}


.process-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  margin-bottom: 42px;

  border:
    1px solid
    rgba(53,167,255,.18);

  border-radius: 12px;

  color: var(--blue);

  background:
    rgba(53,167,255,.06);
}


.process-icon svg {
  width: 22px;
  height: 22px;
}


.process-card h3 {
  margin: 0 0 8px;

  font-size: 17px;

  letter-spacing: -.02em;
}


.process-card p {
  margin: 0;

  color: var(--text-muted);

  font-size: 12px;

  line-height: 1.7;
}


/* PRINCIPLE */

.principle-section {
  padding-top: 110px;
}


.principle-box {
  position: relative;

  display: grid;

  grid-template-columns:
    1.1fr .9fr;

  gap: 60px;

  align-items: center;

  padding:
    60px;

  overflow: hidden;

  border:
    1px solid
    rgba(53,167,255,.14);

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(19,40,66,.8),
      rgba(9,23,39,.72)
    );
}


.principle-box::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -250px;
  bottom: -300px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(53,167,255,.12),
      transparent 68%
    );
}


.principle-content {
  position: relative;
  z-index: 1;
}


.principle-content h2 span {
  display: block;

  color: #6bcaff;
}


.principle-content p {
  max-width: 580px;

  margin:
    22px 0 0;

  color: var(--text-soft);

  line-height: 1.8;
}


.principle-points {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 30px;
}


.principle-points div {
  min-width: 105px;

  display: flex;
  flex-direction: column;

  padding: 14px;

  border:
    1px solid
    rgba(255,255,255,.08);

  border-radius: 12px;

  background:
    rgba(255,255,255,.025);
}


.principle-points strong {
  font-size: 24px;

  line-height: 1;
}


.principle-points span {
  margin-top: 5px;

  color: var(--text-muted);

  font-size: 10px;
}


.principle-visual {
  position: relative;

  min-height: 330px;

  display: grid;
  place-items: center;
}


.orbit {
  position: absolute;

  border:
    1px solid
    rgba(53,167,255,.17);

  border-radius: 50%;
}


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


.orbit-two {
  width: 170px;
  height: 170px;

  border-color:
    rgba(57,216,255,.2);
}


.core {
  position: relative;

  width: 120px;
  height: 120px;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  border:
    1px solid
    rgba(53,167,255,.4);

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(53,167,255,.3),
      rgba(9,25,42,.98) 65%
    );

  box-shadow:
    0 0 70px rgba(53,167,255,.12);
}


.core span {
  font-size: 38px;

  line-height: .9;

  font-weight: 800;

  letter-spacing: -.06em;
}


.core small {
  margin-top: 6px;

  color: var(--text-muted);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .15em;
}


/* PARTNER */

.partner-section {
  padding-top: 20px;
}


.partner-card {
  display: grid;

  grid-template-columns:
    auto minmax(0, 1fr)
    auto;

  gap: 26px;

  align-items: center;

  padding: 34px;

  border:
    1px solid
    rgba(57,216,255,.15);

  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      rgba(57,216,255,.06),
      rgba(53,167,255,.025)
    );
}


.partner-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(53,167,255,.2);

  border-radius: 15px;

  color: var(--blue);
}


.partner-icon svg {
  width: 30px;
  height: 30px;
}


.partner-copy h2 {
  font-size: clamp(
    27px,
    4vw,
    42px
  );
}


.partner-copy p {
  max-width: 650px;

  margin:
    14px 0 22px;

  color: var(--text-muted);

  font-size: 13px;

  line-height: 1.75;
}


.partner-stat {
  display: flex;
  flex-direction: column;

  align-items: flex-end;

  min-width: 100px;
}


.partner-stat strong {
  color: var(--blue);

  font-size: 44px;

  line-height: 1;

  letter-spacing: -.06em;
}


.partner-stat span {
  color: var(--text-muted);

  font-size: 10px;
}


/* FAQ */

.faq-list {
  border-top:
    1px solid var(--line);
}


.faq-list details {
  border-bottom:
    1px solid var(--line);
}


.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding:
    20px 0;

  cursor: pointer;

  list-style: none;

  font-size: 15px;
  font-weight: 700;
}


.faq-list summary::-webkit-details-marker {
  display: none;
}


.faq-list summary span {
  color: var(--blue);

  font-size: 22px;

  transition:
    transform .2s ease;
}


.faq-list details[open] summary span {
  transform: rotate(45deg);
}


.faq-list details p {
  max-width: 720px;

  margin:
    -5px 0 22px;

  color: var(--text-muted);

  font-size: 13px;

  line-height: 1.8;
}


/* CONTACT */

.contact-section {
  padding:
    0 0 80px;
}


.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 40px;

  padding:
    44px;

  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      #102b47,
      #0a1c30
    );

  border:
    1px solid
    rgba(53,167,255,.17);
}


.contact-box p {
  margin:
    14px 0 0;

  color: var(--text-muted);
}


.contact-actions {
  display: flex;

  gap: 10px;

  flex-wrap: wrap;
}


/* FOOTER */

.site-footer {
  padding:
    54px 0
    28px;

  border-top:
    1px solid var(--line);

  background:
    #050d18;
}


.footer-main {
  display: flex;
  justify-content: space-between;

  gap: 60px;
}


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


.footer-brand p {
  margin:
    18px 0 0;

  color: var(--text-muted);

  font-size: 12px;

  line-height: 1.7;
}


.footer-links {
  display: flex;

  gap: 80px;
}


.footer-links div {
  display: flex;
  flex-direction: column;

  gap: 9px;

  min-width: 120px;
}


.footer-links strong {
  margin-bottom: 5px;

  color: var(--text);

  font-size: 11px;

  letter-spacing: .04em;
}


.footer-links a {
  color: var(--text-muted);

  font-size: 11px;
}


.footer-links a:hover {
  color: var(--text);
}


.footer-bottom {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  margin-top: 50px;
  padding-top: 20px;

  border-top:
    1px solid var(--line);

  color: #536175;

  font-size: 10px;
}


/* MOBILE WHATSAPP */

.mobile-whatsapp {
  display: none;
}


/* RESPONSIVE */

@media (max-width: 980px) {

  .hero-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }


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


  .hero-visual {
    max-width: 620px;
  }


  .process-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .principle-box {
    grid-template-columns: 1fr;
  }


  .principle-visual {
    min-height: 250px;
  }


  .partner-card {
    grid-template-columns:
      auto 1fr;
  }


  .partner-stat {
    display: none;
  }

}


@media (max-width: 760px) {

  body {
    padding-bottom: 68px;
  }


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


  .site-header {
    background:
      rgba(7,17,31,.98);
  }


  .header-inner {
    min-height: 68px;
  }


  .menu-toggle {
    display: block;
  }


  .site-nav {
    position: absolute;

    left: 12px;
    right: 12px;
    top: calc(100% + 8px);

    display: none;

    flex-direction: column;
    align-items: stretch;

    gap: 4px;

    padding: 8px;

    border:
      1px solid var(--line);

    border-radius: 14px;

    background:
      #0b1829;

    box-shadow:
      0 20px 50px rgba(0,0,0,.3);
  }


  .site-nav.is-open {
    display: flex;
  }


  .site-nav a {
    padding: 12px;

    border-radius: 9px;
  }


  .site-nav a:hover {
    background:
      rgba(255,255,255,.04);
  }


  .site-nav .nav-cta {
    text-align: center;
  }


  .hero {
    padding:
      68px 0
      60px;
  }


  .hero h1 {
    font-size:
      clamp(
        39px,
        12vw,
        58px
      );
  }


  .hero-description {
    font-size: 15px;

    line-height: 1.7;
  }


  .hero-actions {
    flex-direction: column;
  }


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


  .hero-trust {
    justify-content: center;
  }


  .visual-card {
    padding: 18px;
  }


  .section {
    padding:
      75px 0;
  }


  .section-heading {
    display: block;

    margin-bottom: 30px;
  }


  .section-heading h2 {
    font-size: 35px;
  }


  .section-heading p {
    margin-top: 17px;
  }


  .slot-summary {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  .provider-wall {
    grid-template-columns: 1fr;
  }


  .provider-slot,
  .provider-available {
    min-height: 300px;
  }


  .provider-content {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .provider-logo-wrap {
    width: 145px;
  }


  .provider-info h3 {
    font-size: 27px;
  }


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


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


  .process-icon {
    margin-bottom: 28px;
  }


  .principle-box {
    padding: 30px 22px;
  }


  .principle-content h2 {
    font-size: 35px;
  }


  .principle-visual {
    min-height: 220px;
  }


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


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


  .core {
    width: 95px;
    height: 95px;
  }


  .core span {
    font-size: 31px;
  }


  .partner-card {
    grid-template-columns: 1fr;

    padding: 25px 21px;
  }


  .partner-copy h2 {
    font-size: 32px;
  }


  .contact-box {
    flex-direction: column;

    align-items: flex-start;

    padding: 30px 22px;
  }


  .contact-actions {
    width: 100%;
  }


  .contact-actions .button {
    flex: 1;
  }


  .footer-main {
    flex-direction: column;

    gap: 40px;
  }


  .footer-links {
    gap: 50px;
  }


  .footer-bottom {
    flex-direction: column;

    gap: 7px;
  }


  .mobile-whatsapp {
    position: fixed;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    left: 12px;
    right: 12px;

    bottom:
      calc(12px + env(safe-area-inset-bottom));

    z-index: 90;

    min-height: 50px;

    border:
      1px solid
      rgba(110,208,255,.4);

    border-radius: 13px;

    background:
      linear-gradient(
        135deg,
        #1688e8,
        #25b6ed
      );

    color: #fff;

    box-shadow:
      0 12px 30px rgba(0,0,0,.3);

    font-size: 13px;
    font-weight: 850;
  }


  .mobile-whatsapp svg {
    width: 20px;
    height: 20px;
  }

}


@media (max-width: 430px) {

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


  .hero h1 {
    font-size: 40px;
  }


  .visual-title strong {
    font-size: 44px;
  }


  .provider-actions {
    flex-direction: column;
  }


  .small-button {
    width: 100%;
  }


  .principle-points {
    display: grid;

    grid-template-columns:
      repeat(3, 1fr);
  }


  .principle-points div {
    min-width: 0;
  }


  .principle-points strong {
    font-size: 20px;
  }


  .contact-actions {
    flex-direction: column;
  }


  .contact-actions .button {
    width: 100%;
  }

}


@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}