/* OneiHost — brand system */
:root {
  --ink: #12152a;
  --ink-soft: #2a2f45;
  --muted: #5c647a;
  --line: #e4e8f2;
  --paper: #f7f9fc;
  --white: #ffffff;
  --cyan: #00a8d5;
  --sky: #4ebcee;
  --navy: #171734;
  --violet: #8b3dff;
  --violet-soft: #a965e4;
  --mint: #2db88a;
  --amber: #ff9f1a;
  --grad: linear-gradient(115deg, #8b3dff 0%, #4ebcee 52%, #2db88a 100%);
  --grad-btn: linear-gradient(100deg, #8b3dff 0%, #4ebcee 100%);
  --shadow-soft: 0 18px 50px rgba(23, 23, 52, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(78, 188, 238, 0.2);
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Top bar */
.topbar {
  background: var(--navy);
  color: #c9cde0;
  font-size: 0.875rem;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
}

.topbar a {
  color: #eef1ff;
  transition: color 0.2s var(--ease);
}

.topbar a:hover {
  color: var(--sky);
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(18, 21, 42, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

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

.brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.15rem;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--grad-btn);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(78, 188, 238, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 16px 34px rgba(139, 61, 255, 0.28);
}

.btn--ghost {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: #c5cceb;
  box-shadow: var(--shadow-soft);
}

.btn--outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--block {
  width: 100%;
}

/* Hero — full-bleed hosting banner */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0d1020;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.02);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 12, 28, 0.92) 0%, rgba(10, 12, 28, 0.78) 42%, rgba(10, 12, 28, 0.35) 72%, rgba(10, 12, 28, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 12, 28, 0.35) 0%, transparent 35%, rgba(10, 12, 28, 0.55) 100%);
  pointer-events: none;
}

.hero__inner {
  padding: clamp(5rem, 11vw, 7.5rem) 0 clamp(3.25rem, 7vw, 5rem);
}

.hero__copy {
  max-width: 36rem;
  animation: riseIn 0.9s var(--ease) both;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7fd4f0;
  margin-bottom: 0.85rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #eef2ff;
  margin-bottom: 0.9rem;
}

.hero__text {
  color: #c2cae3;
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section--alt {
  background: var(--white);
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.75rem 2.5rem;
  align-items: center;
}

.section__copy {
  max-width: 34rem;
}

.section__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.section__head--split:hover .section__media img {
  transform: scale(1.04);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.65rem;
}

.section__head h2,
.section__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.section__head p,
.section__copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Plan grids */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.section--alt .plan {
  background: var(--paper);
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: #cdd6f0;
}

.plan--featured {
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
}

.section--alt .plan--featured {
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    var(--grad) border-box;
}

.plan__badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(139, 61, 255, 0.1);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

.plan__level {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.plan__price strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.plan__price span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.plan__specs {
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.plan__specs li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed #e7ebf5;
}

.plan__specs li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.plan__specs span:first-child {
  color: var(--muted);
}

.plan__specs span:last-child {
  font-weight: 700;
  text-align: right;
}

/* Dedicated table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.price-table th,
.price-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.price-table th {
  background: var(--navy);
  color: #eef1ff;
  font-weight: 650;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table tbody tr {
  transition: background 0.2s var(--ease);
}

.price-table tbody tr:hover {
  background: #f3f7ff;
}

.price-table .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

.price-table .btn {
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
}

/* Guarantees */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.guarantee {
  padding: 1.75rem 1.4rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.guarantee__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(78, 188, 238, 0.12);
  color: var(--cyan);
}

.guarantee:nth-child(2) .guarantee__icon {
  background: rgba(139, 61, 255, 0.12);
  color: var(--violet);
}

.guarantee:nth-child(3) .guarantee__icon {
  background: rgba(45, 184, 138, 0.12);
  color: var(--mint);
}

.guarantee h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.guarantee p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Features band */
.features {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse at 90% 10%, rgba(78, 188, 238, 0.25), transparent 40%),
    linear-gradient(135deg, #171734, #1e2a55 60%, #14203f);
  border-radius: 0;
}

.features__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.features > .container > .features__inner > div > p {
  color: #b4bdd8;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
}

.feature-list strong {
  display: block;
  margin-bottom: 0.15rem;
}

.feature-list span {
  color: #a7b1d0;
  font-size: 0.9rem;
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
}

.contact-card,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contact-list {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.25rem;
}

.contact-list a,
.contact-list p {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-list strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 168, 213, 0.1);
  color: var(--cyan);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8eef8;
  min-height: 320px;
  height: 100%;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.contact-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.contact-panel p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.contact-panel .btn + .btn {
  margin-top: 0.65rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
  align-items: stretch;
}

.location-visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  background: #101528;
}

.location-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.location-visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(transparent, rgba(8, 10, 24, 0.88));
  color: #fff;
}

.location-visual strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.location-visual span {
  display: block;
  color: #c5cce3;
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #c5cce3;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.footer-brand p {
  max-width: 28rem;
  font-size: 0.95rem;
  color: #9aa3c2;
}

.site-footer h4 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
}

.site-footer a:hover {
  color: var(--sky);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.88rem;
  color: #8e97b5;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  text-decoration: none;
}

.whatsapp-float__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: #128c7e;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(18, 21, 42, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.35);
  white-space: nowrap;
  animation: helpBob 2.8s ease-in-out infinite;
}

.whatsapp-float__label::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-right: 1px solid rgba(37, 211, 102, 0.35);
  border-bottom: 1px solid rgba(37, 211, 102, 0.35);
  transform: rotate(45deg);
}

.whatsapp-float__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: helpPulse 1.8s ease-out infinite;
}

.whatsapp-float__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.whatsapp-float:hover .whatsapp-float__btn {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__btn svg {
  width: 30px;
  height: 30px;
}

@keyframes helpBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes helpPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__media img {
    object-position: 70% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(10, 12, 28, 0.72) 0%, rgba(10, 12, 28, 0.82) 55%, rgba(10, 12, 28, 0.9) 100%),
      linear-gradient(90deg, rgba(10, 12, 28, 0.55), transparent 80%);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav.is-open .nav__links,
  .nav.is-open .nav__actions {
    display: flex;
  }

  .nav.is-open {
    flex-wrap: wrap;
    padding-bottom: 1rem;
  }

  .nav.is-open .nav__links {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding-top: 0.5rem;
  }

  .nav.is-open .nav__actions {
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .section__head--split,
  .guarantee-grid,
  .features__inner,
  .contact-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section__media {
    order: -1;
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero__media img {
    object-position: 78% center;
  }

  .btn {
    width: 100%;
  }

  .hero__cta .btn {
    width: auto;
    flex: 1 1 auto;
  }

  .price-table .btn {
    width: auto;
  }

  .whatsapp-float__label {
    font-size: 0.76rem;
    padding: 0.45rem 0.7rem;
  }

  .section__media {
    max-width: none;
  }
}

/* Tablet landscape / small laptops */
@media (min-width: 641px) and (max-width: 1024px) {
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    width: min(100% - 2.5rem, var(--container));
  }
}

/* iOS safe areas (notch / home indicator) */
@supports (padding: max(0px)) {
  .whatsapp-float {
    right: max(1.15rem, env(safe-area-inset-right));
    bottom: max(1.15rem, env(safe-area-inset-bottom));
  }

  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
