:root {
  --bg: #ffffff;
  --surface: #f8f8fb;
  --surface-soft: #fafafc;
  --text: #0d0f1b;
  --muted: #7b7d88;
  --muted-2: #9a9ba3;
  --hero-black: #040306;
  --hero-top: #0b0611;
  --hero-bottom: #6f171d;
  --purple-900: #190506;
  --purple-800: #30090b;
  --purple-700: #581014;
  --purple-600: #7c181d;
  --magenta-500: #f0414d;
  --magenta-600: #d9202d;
  --lime-400: #d9202d;
  --green-link: #d9202d;
  --yellow-400: #f75b67;
  --border-strong: #7a4c52;
  --white: #ffffff;
  --shadow-soft: 0 18px 38px rgba(16, 11, 28, 0.12);
  --shadow-card: 0 22px 48px rgba(26, 13, 42, 0.16);
  --container: 1120px;
  --page-gutter: 72px;
  --section-space: clamp(56px, 6vw, 78px);
  --section-space-tight: clamp(40px, 4.8vw, 60px);
  --hero-space-top: clamp(40px, 5vw, 60px);
  --hero-space-bottom: clamp(40px, 4.8vw, 56px);
  --hero-height: clamp(500px, 66vh, 580px);
  --hero-height-inner: clamp(360px, 50vh, 430px);
  --section-gap: clamp(16px, 2vw, 24px);
  --card-padding: clamp(22px, 2.5vw, 28px);
  --card-padding-compact: clamp(20px, 2.2vw, 24px);
  --radius-card: 20px;
  --heading-display: clamp(36px, 4vw, 52px);
  --heading-section: clamp(30px, 3.2vw, 42px);
  --heading-large: clamp(28px, 3vw, 38px);
  --text-lead: clamp(15px, 1.2vw, 17px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

button {
  font: inherit;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(var(--container), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  transition: transform 150ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float:active {
  transform: scale(0.96);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}

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

.brand-logo img {
  display: block;
  width: auto;
  height: auto;
}

.brand-logo--nav img {
  width: 132px;
  filter: brightness(0) invert(1);
}

.brand-logo--card {
  display: block;
  width: 122px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.brand-logo--footer img {
  width: 156px;
  filter: brightness(0) invert(1);
}

.brand-logo__badge-image {
  display: block;
  width: auto;
  height: auto;
}

.brand-logo__badge-image--square {
  width: 56px;
  filter: brightness(0) invert(1);
}

.brand-logo__badge-image--round {
  width: 46px;
  image-rendering: -webkit-optimize-contrast;
}

.hero {
  background:
    radial-gradient(circle at 82% 92%, rgba(217, 32, 45, 0.18), rgba(217, 32, 45, 0) 22%),
    linear-gradient(90deg, rgba(4, 3, 6, 0.88) 0%, rgba(11, 6, 17, 0.76) 38%, rgba(111, 23, 29, 0.78) 100%),
    url("assets/atlas-pro-ibo-banner2.png") center center / cover no-repeat,
    linear-gradient(180deg, var(--hero-black) 0%, var(--hero-black) 18%, var(--hero-top) 34%, var(--hero-bottom) 100%);
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 104px;
  padding-top: 8px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__links a {
  color: rgba(255, 255, 255, 0.96);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 160ms ease;
}

.navbar__links a:hover {
  color: #ff8e96;
}

.navbar__links a.is-active {
  color: #ff4f5f;
}

.hero__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: var(--hero-height);
  padding: var(--hero-space-top) 0 var(--hero-space-bottom);
}

.hero__copy {
  max-width: 720px;
  padding-top: 4px;
  text-align: center;
}

.hero__copy h1 {
  margin: 0;
  color: #fff;
  font-size: var(--heading-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero__copy h1 span {
  color: var(--lime-400);
}

.hero__copy p {
  margin: 24px auto 0;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.93);
  font-size: var(--text-lead);
  line-height: 1.54;
  letter-spacing: -0.02em;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  margin-top: 18px;
  padding: 0 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 140ms ease, background-color 140ms ease, filter 140ms ease;
}

.hero__button svg {
  width: 18px;
  height: 18px;
  stroke: #ff8e96;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__button:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero__button:active {
  transform: translateY(1px);
  filter: brightness(0.98);
}

.hero__visual {
  position: relative;
  min-height: 488px;
}

.hero__glow {
  position: absolute;
  pointer-events: none;
}

.hero__glow--top {
  inset: 56px 84px 96px 58px;
  border-radius: 54px;
  background: radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 52%);
}

.hero__glow--dots {
  right: 0;
  bottom: 0;
  width: 300px;
  height: 212px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 1px, transparent 1.7px) 0 0 / 8px 8px;
  opacity: 0.84;
  mask-image: radial-gradient(circle at 26% 18%, #000 0%, #000 52%, transparent 76%);
}

.hero__arc {
  position: absolute;
  top: 32px;
  right: 34px;
  width: 212px;
  height: 212px;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 0;
  border: 26px solid #e12d39;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(24deg);
  opacity: 0.96;
}

.hero-screen {
  position: absolute;
  right: 22px;
  top: 92px;
  width: min(620px, 100%);
  overflow: hidden;
  border: 4px solid #18131b;
  border-radius: 2px;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.32);
}

.hero-screen img {
  width: 100%;
  height: auto;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  box-shadow: 0 22px 34px rgba(18, 8, 25, 0.24);
}

.hero-badge--square {
  left: 26px;
  bottom: 86px;
  width: 92px;
  height: 92px;
  border-radius: 16px;
  background: linear-gradient(180deg, #d9202d 0%, #a3121b 100%);
}

.hero-badge--round {
  bottom: 8px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.hero-badge--left {
  left: 116px;
  background: #f2eef1;
}

.hero-badge--right {
  left: 214px;
  background: linear-gradient(180deg, #ffffff 0%, #fff0f1 100%);
}

.devices,
.pricing,
.why,
.faq,
.articles {
  background: #fff;
}

.devices {
  padding: var(--section-space) 0;
}

.devices h2,
.pricing h2,
.why h2,
.faq h2 {
  margin: 0;
  color: #080b13;
  text-align: center;
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  color: #8d8f99;
  text-align: center;
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: 1.5;
}

.section-kicker {
  margin: 0 0 12px;
  color: #989aa2;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--section-gap);
  margin-top: 30px;
}

.device-card {
  min-height: 216px;
  padding: var(--card-padding-compact);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-card);
  background: #fff;
  text-align: center;
}

.device-card__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 10px;
  stroke: #d9202d;
  stroke-width: 2.35;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 18px rgba(217, 32, 45, 0.1));
}

.device-card h3 {
  margin: 6px 0 12px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.device-card p {
  margin: 0;
  color: #575a66;
  font-size: 16px;
  line-height: 1.35;
}

.pricing {
  padding: var(--section-space) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 65, 77, 0.12), rgba(240, 65, 77, 0) 22%),
    linear-gradient(180deg, #040404 0%, #080808 100%);
}

.pricing__inner {
  max-width: 1040px;
}

.pricing__accent {
  display: block;
  width: 44px;
  height: 4px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a73 0%, #d9202d 100%);
  box-shadow: 0 0 18px rgba(240, 65, 77, 0.35);
}

.pricing .section-kicker {
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing h2 {
  color: #fff;
}

.pricing h2 span {
  color: #fff;
}

.pricing .section-subtitle {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.68);
}

.pricing__switch {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin: 30px auto 0;
  padding: 6px;
  border-radius: 999px;
  background: #1a1b22;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing__switch-option {
  min-width: 114px;
  padding: 12px 22px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pricing__switch-option.is-active {
  color: #fff;
  background: linear-gradient(180deg, #ff5966 0%, #e1323e 100%);
  box-shadow: 0 10px 24px rgba(240, 65, 77, 0.28);
}

.pricing-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: min(930px, 100%);
  margin: 28px auto 0;
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(240, 65, 77, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  position: relative;
}

.pricing-alert__stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  border-radius: 14px 0 0 14px;
  background: #ff535f;
}

.pricing-alert__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  stroke: #ff707a;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-alert p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--section-gap);
  align-items: stretch;
  margin-top: 34px;
}

.plan-card {
  position: relative;
  padding: var(--card-padding) var(--card-padding-compact) 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-card);
  background: transparent;
  color: #fff;
  text-align: center;
}

.plan-card__head {
  min-height: auto;
  padding: 0;
  text-align: center;
}

.pricing .brand-logo--card {
  width: 76px;
  margin-bottom: 18px;
  opacity: 0.34;
}

.plan-card__head h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.plan-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-top: 22px;
  color: #fff;
  text-align: center;
}

.plan-card__currency {
  align-self: center;
  margin-right: 2px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.plan-card__amount {
  font-size: clamp(40px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.plan-card__period {
  padding-bottom: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 20px;
  font-weight: 500;
}

.plan-card__summary {
  margin: 18px auto 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.55;
}

.plan-card__list {
  width: fit-content;
  max-width: 100%;
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.plan-card__list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.45;
}

.plan-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff626f 0%, #d9202d 100%);
  box-shadow: 0 0 16px rgba(240, 65, 77, 0.26);
}

.plan-card__list li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 5px;
  height: 3px;
  border-left: 1.8px solid #fff;
  border-bottom: 1.8px solid #fff;
  transform: rotate(-45deg);
}

.plan-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-width: 168px;
  min-height: 44px;
  margin: 24px auto 0;
  padding: 0 22px;
  border: 1.5px solid rgba(240, 65, 77, 0.72);
  border-radius: 999px;
  background: transparent;
  color: #ff5561;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 150ms ease, filter 150ms ease, background-color 150ms ease, color 150ms ease;
}

.plan-card__button:hover {
  background: rgba(240, 65, 77, 0.08);
}

.plan-card__button-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-card__button:active {
  transform: translateY(1px);
  filter: brightness(0.96);
}

.plan-card__footer {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.plan-card--featured {
  transform: translateY(-14px);
  border-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #171717 0%, #121212 100%);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.42);
}

.plan-card--featured .plan-card__button {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #ff5966 0%, #dd2d39 100%);
  box-shadow: 0 14px 30px rgba(240, 65, 77, 0.22);
}

.pricing__divider {
  width: min(1000px, 100%);
  height: 1px;
  margin: 44px auto 0;
  background: linear-gradient(90deg, transparent 0%, rgba(240, 65, 77, 0.65) 16%, rgba(240, 65, 77, 0.65) 84%, transparent 100%);
}

.pricing-includes {
  margin-top: 40px;
}

.pricing-includes h3 {
  margin: 0 0 24px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.pricing-includes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: var(--card-padding-compact) var(--card-padding);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.015);
}

.pricing-includes__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
}

.pricing-includes__item svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.pricing-includes__item circle {
  fill: #ff4f5f;
}

.pricing-includes__item path {
  stroke: #fff;
  stroke-width: 2.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-includes__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.45;
}

.why {
  padding: var(--section-space) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--section-gap);
  margin-top: 36px;
}

.why-card {
  min-height: 340px;
  padding: var(--card-padding);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #090309 0%, #6c171d 100%);
  text-align: center;
}

.why-card__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  stroke: #d9202d;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 20px rgba(217, 32, 45, 0.18));
}

.why-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.why-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.6;
}

.promo {
  position: relative;
  min-height: clamp(520px, 62vw, 620px);
  overflow: hidden;
}

.promo__backdrop,
.promo__overlay {
  position: absolute;
  inset: 0;
}

.promo__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.promo__overlay {
  background: linear-gradient(90deg, rgba(25, 14, 10, 0.56) 0%, rgba(27, 16, 12, 0.42) 42%, rgba(20, 13, 12, 0.6) 100%);
}

.promo__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(520px, 62vw, 620px);
  padding: var(--section-space-tight) 0 var(--section-space);
}

.promo__copy {
  max-width: 760px;
  color: #fff;
}

.promo__copy h2 {
  margin: 0;
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.promo__list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.promo__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
}

.promo__list-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 8px 16px rgba(217, 32, 45, 0.24));
}

.promo__list-icon circle {
  fill: #d9202d;
}

.promo__list-icon path {
  stroke: #fff;
  stroke-width: 2.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promo-toast {
  position: absolute;
  left: 0;
  bottom: 22px;
  display: flex;
  align-items: stretch;
  width: 350px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #b51b25 0%, #6f171d 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.promo-toast img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  background: #fff;
}

.promo-toast__body {
  padding: 14px 16px 14px 14px;
  color: #fff;
}

.promo-toast__meta,
.promo-toast__body span {
  display: block;
  margin: 0;
  font-size: 12px;
}

.promo-toast__meta {
  opacity: 0.86;
}

.promo-toast__body strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 15px;
  line-height: 1.25;
}

.promo-toast__body span {
  opacity: 0.78;
}

.faq {
  padding: var(--section-space) 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #ececef;
  background: #fff;
  box-shadow: 0 4px 12px rgba(16, 11, 28, 0.06);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  background: #fff;
  color: #151823;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item.is-open .faq-item__trigger {
  min-height: 58px;
  color: #fff;
  background: linear-gradient(90deg, #f44759 0%, #d9202d 100%);
}

.faq-item__chevron {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: currentColor;
  font-size: 0;
  line-height: 0;
  transition: transform 160ms ease;
}

.faq-item__chevron::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__content {
  display: none;
  padding: 28px 24px 30px;
  background: #fff;
}

.faq-item.is-open .faq-item__content {
  display: block;
}

.faq-item__content p {
  margin: 0;
  color: #414553;
  font-size: 18px;
  line-height: 1.54;
}

.articles {
  padding: var(--section-space-tight) 0 var(--section-space);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--section-gap);
}

.article-card {
  overflow: hidden;
  border: 1px solid #e8e8ed;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 11, 28, 0.08);
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.article-card__body {
  min-height: 206px;
  padding: var(--card-padding-compact) var(--card-padding-compact) 24px;
}

.article-card__body h3 {
  margin: 0;
  color: #5a5d68;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 34px;
  color: var(--green-link);
  font-size: 13px;
  font-weight: 500;
  transition: color 150ms ease, transform 150ms ease;
}

.article-card__link:hover {
  color: #f0414d;
}

.article-card__link:active {
  transform: translateY(1px);
}

.article-card__link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-card__date {
  border-top: 1px solid #ededf1;
  padding: 14px 28px 16px;
  color: #a1a4ad;
  font-size: 13px;
}

.site-footer {
  background: linear-gradient(180deg, #08030a 0%, #2b0d10 38%, #7a1a20 100%);
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.06fr;
  gap: var(--section-gap);
  padding: var(--section-space-tight) 0 56px;
}

.site-footer h3 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.site-footer__brand-block p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.58;
}

.site-footer__brand-block p {
  margin: 24px 0 0;
  max-width: 260px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer__contact span {
  color: inherit;
}

.site-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact__icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  stroke: var(--magenta-500);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__bottom {
  padding: 0 0 22px;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: 14px;
}

.hero--inner {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 84% 84%, rgba(217, 32, 45, 0.18), rgba(217, 32, 45, 0) 20%),
    linear-gradient(90deg, rgba(4, 3, 6, 0.94) 0%, rgba(11, 6, 17, 0.84) 42%, rgba(111, 23, 29, 0.82) 100%),
    url("assets/atlas-pro-ibo-banner.png") center center / cover no-repeat,
    linear-gradient(180deg, var(--hero-black) 0%, var(--hero-top) 40%, var(--hero-bottom) 100%);
}

.hero--inner .hero__content {
  min-height: var(--hero-height-inner);
  padding: var(--section-space-tight) 0 var(--section-space);
  align-items: center;
}

.hero__copy--left {
  text-align: left;
}

.hero__copy--left p {
  margin-left: 0;
  margin-right: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5865;
  box-shadow: 0 0 14px rgba(240, 65, 77, 0.5);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero__copy--left .hero__actions {
  justify-content: flex-start;
}

.hero__button--solid {
  border-color: transparent;
  background: linear-gradient(180deg, #ff5966 0%, #dd2d39 100%);
  box-shadow: 0 16px 32px rgba(240, 65, 77, 0.24);
}

.hero__button--solid:hover {
  background: linear-gradient(180deg, #ff6f7a 0%, #e73a46 100%);
}

.hero__button--ghost {
  background: rgba(255, 255, 255, 0.04);
}

.page-section {
  padding: var(--section-space) 0;
  background: #fff;
}

.page-section--soft {
  background: var(--surface-soft);
}

.page-section--dark {
  background: linear-gradient(180deg, #090309 0%, #26090d 100%);
  color: #fff;
}

.page-section__intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.page-section__intro--left {
  margin-left: 0;
  text-align: left;
}

.page-section__intro h2 {
  margin: 0;
  color: #080b13;
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-section--dark .page-section__intro h2 {
  color: #fff;
}

.page-section__intro p {
  margin: 18px 0 0;
  color: #6b6f7c;
  font-size: var(--text-lead);
  line-height: 1.6;
}

.page-section--dark .page-section__intro p {
  color: rgba(255, 255, 255, 0.7);
}

.page-grid {
  display: grid;
  gap: var(--section-gap);
}

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

.page-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  height: 100%;
  padding: var(--card-padding);
  border: 1px solid #ececf2;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.info-card--dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #141217 0%, #0f0c11 100%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.info-card__number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff5966 0%, #d9202d 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(217, 32, 45, 0.24);
}

.info-card h3 {
  margin: 0 0 14px;
  color: #10131c;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.info-card--dark h3 {
  color: #fff;
}

.info-card p,
.info-card li {
  margin: 0;
  color: #5e6270;
  font-size: 16px;
  line-height: 1.6;
}

.info-card--dark p,
.info-card--dark li {
  color: rgba(255, 255, 255, 0.78);
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
}

.info-card li + li {
  margin-top: 10px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--section-gap);
  margin-top: 34px;
}

.metric-card {
  padding: var(--card-padding-compact) 20px;
  border: 1px solid #ebecef;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.metric-card strong {
  display: block;
  color: #11141d;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: #6f7380;
  font-size: 15px;
  line-height: 1.45;
}

.contact-panel {
  padding: var(--card-padding);
  border-radius: 26px;
  background: linear-gradient(135deg, #0b0611 0%, #3a0d12 45%, #7a1a20 100%);
  color: #fff;
  box-shadow: 0 30px 60px rgba(18, 8, 25, 0.28);
}

.contact-panel__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.contact-panel h2 {
  margin: 0;
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-lead);
  line-height: 1.58;
}

.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--section-gap);
}

.support-card {
  height: 100%;
  padding: var(--card-padding-compact);
  border: 1px solid #ececf2;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.support-card--highlight {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.support-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.support-card--highlight h3 {
  color: #fff;
}

.support-card p,
.support-card li {
  margin: 0;
  color: #626673;
  font-size: 16px;
  line-height: 1.6;
}

.support-card--highlight p,
.support-card--highlight li {
  color: rgba(255, 255, 255, 0.78);
}

.support-card ul {
  margin: 0;
  padding-left: 18px;
}

.support-card li + li {
  margin-top: 10px;
}

.article-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid #e8e8ed;
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 11, 28, 0.08);
}

.article-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.article-feature__body {
  padding: calc(var(--card-padding) + 4px);
}

.article-feature__eyebrow {
  display: block;
  color: #d9202d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-feature__body h2 {
  margin: 18px 0 16px;
  color: #10131c;
  font-size: var(--heading-large);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.article-feature__body p {
  margin: 0;
  color: #5f6370;
  font-size: var(--text-lead);
  line-height: 1.65;
}

.article-entry {
  padding: var(--card-padding);
  border: 1px solid #ececf2;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.article-entry h3 {
  margin: 0 0 16px;
  color: #10131c;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.article-entry p {
  margin: 0;
  color: #5f6370;
  font-size: 17px;
  line-height: 1.68;
}

.article-entry p + p {
  margin-top: 14px;
}

.legal-copy h3 {
  margin: 0 0 16px;
  color: #10131c;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.legal-copy h4 {
  margin: 22px 0 10px;
  color: #181b25;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.legal-copy p,
.legal-copy li {
  color: #5f6370;
  font-size: 16px;
  line-height: 1.7;
}

.legal-copy p {
  margin: 0;
}

.legal-copy p + p,
.legal-copy p + ul,
.legal-copy ul + p,
.legal-copy ul + h4,
.legal-copy p + h4 {
  margin-top: 14px;
}

.legal-copy ul {
  margin: 0;
  padding-left: 20px;
}

.legal-copy li + li {
  margin-top: 8px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--section-gap);
  padding: var(--card-padding);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #0b0611 0%, #5c1217 100%);
  color: #fff;
  box-shadow: 0 22px 46px rgba(18, 8, 25, 0.22);
}

.cta-band h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: var(--heading-large);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.anchor-target {
  scroll-margin-top: 120px;
}

@media (max-width: 1160px) {
  :root {
    --page-gutter: 56px;
  }

  .container {
    width: min(var(--container), calc(100vw - var(--page-gutter)));
  }

  .device-grid,
  .plan-grid,
  .why-grid,
  .article-grid,
  .site-footer__grid,
  .page-grid--2,
  .page-grid--3,
  .metric-strip,
  .support-grid,
  .contact-panel__grid,
  .article-feature {
    grid-template-columns: 1fr;
  }

  .plan-card {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .plan-card--featured {
    transform: none;
  }

  .pricing-includes__grid {
    grid-template-columns: 1fr;
    padding: 24px 24px 18px;
  }

  .navbar {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    min-height: unset;
    padding: 18px 0 8px;
  }

  .navbar__spacer {
    display: none;
  }

  .hero__content {
    min-height: clamp(500px, 64vh, 560px);
  }

  .device-grid,
  .plan-grid,
  .why-grid,
  .article-grid {
    gap: 18px;
  }

  .promo__content {
    min-height: clamp(500px, 62vh, 560px);
  }

  .site-footer__grid {
    gap: 28px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-feature img {
    min-height: 280px;
  }
}

.back-to-top {
  position: fixed;
  left: 28px;
  bottom: 26px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 0;
  background: #d9202d;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease, transform 150ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  filter: brightness(1.05);
}

.back-to-top svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 20px;
    --section-space: 44px;
    --section-space-tight: 36px;
    --hero-space-top: 20px;
    --hero-space-bottom: 40px;
    --hero-height: 430px;
    --hero-height-inner: 340px;
  }

  .back-to-top {
    left: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .navbar {
    justify-items: center;
  }

  .navbar__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .navbar__links a {
    font-size: 15px;
  }

.brand-logo--nav img {
  width: 104px;
}

  .hero__copy h1 {
    max-width: 12ch;
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    line-height: 1.12;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .devices h2,
  .pricing h2,
  .why h2,
  .faq h2,
  .promo__copy h2,
  .page-section__intro h2,
  .contact-panel h2,
  .article-feature__body h2,
  .cta-band h2 {
    max-width: 13ch;
    margin-right: auto;
    margin-left: auto;
    font-size: 22px;
    line-height: 1.16;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero__copy h1 br {
    display: none;
  }

  .hero__copy p,
  .promo__list li,
  .faq-item__content p,
  .page-section__intro p,
  .article-feature__body p,
  .contact-panel p,
  .cta-band p {
    font-size: 15px;
  }

  .hero__copy {
    max-width: 100%;
    padding-top: 0;
  }

  .hero__copy p,
  .section-subtitle {
    max-width: 26ch;
  }

  .hero__content {
    align-items: center;
  }

  .hero__actions {
    width: 100%;
    gap: 12px;
  }

  .hero__button {
    width: min(100%, 320px);
    min-height: 50px;
    margin-top: 0;
    justify-content: center;
    padding: 0 18px;
    text-align: center;
  }

  .hero__copy--left {
    text-align: center;
  }

  .hero__copy--left p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__copy--left .hero__actions,
  .page-section__intro--left,
  .cta-band__actions {
    justify-content: center;
    text-align: center;
  }

  .devices,
  .pricing,
  .why,
  .faq,
  .articles,
  .page-section {
    padding-block: var(--section-space);
  }

  .device-card,
  .why-card {
    min-height: unset;
  }

  .device-card {
    padding: 22px 18px;
  }

  .device-card__icon {
    width: 68px;
    height: 68px;
  }

  .device-card h3 {
    font-size: 20px;
  }

  .device-card p {
    font-size: 15px;
  }

  .pricing-alert {
    align-items: flex-start;
  }

  .pricing__switch {
    width: 100%;
    max-width: 320px;
  }

  .pricing__switch-option {
    min-width: 0;
    flex: 1 1 0;
    padding-right: 16px;
    padding-left: 16px;
  }

  .plan-card {
    padding: 30px 22px 26px;
  }

  .plan-card__amount {
    font-size: 46px;
  }

  .plan-card__period {
    padding-bottom: 5px;
    font-size: 17px;
  }

  .pricing-includes h3 {
    font-size: 20px;
  }

  .pricing-includes__item {
    justify-content: flex-start;
  }

  .promo {
    min-height: 500px;
  }

  .promo__content {
    min-height: 500px;
    padding: var(--section-space-tight) 0 100px;
  }

  .hero--inner .hero__content {
    min-height: var(--hero-height-inner);
    padding: var(--hero-space-top) 0 var(--section-space);
  }

  .page-section__intro--left {
    margin-right: auto;
    margin-left: auto;
  }

  .info-card,
  .support-card,
  .article-entry,
  .article-feature__body,
  .contact-panel,
  .cta-band {
    padding: 24px;
  }

  .metric-card strong {
    font-size: 30px;
  }

  .promo-toast {
    left: 12px;
    right: 12px;
    width: auto;
  }

  .article-card__body {
    min-height: unset;
  }

  .site-footer__grid {
    padding: 54px 0 40px;
  }
}
