/* Visual language aligned with topiptv.shop — standalone page assets only. */

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --indigo-100: #e0e7ff;
  --indigo-300: #a5b4fc;
  --indigo-500: #6366f1;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.06);
  --shadow-md: 0 10px 30px rgb(37 99 235 / 0.1);
  --shadow-lg: 0 24px 50px rgb(30 64 175 / 0.14);
  --radius-xl: 24px;
  --header-h: 80px;
  --max: 80rem;
  --focus: 0 0 0 3px rgb(59 130 246 / 0.45);
}

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

html { scroll-behavior: smooth; }

section[id],
footer[id] { scroll-margin-top: calc(var(--header-h) + 0.75rem); }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-800); }
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 8px; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--blue-700); color: #fff; padding: 0.75rem 1rem;
  border-radius: 0.75rem; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
@media (min-width: 640px) { .container { width: min(100% - 3rem, var(--max)); } }
@media (min-width: 1024px) { .container { width: min(100% - 4rem, var(--max)); } }

.accent { color: var(--blue-600); }

/* Header */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blue-100);
  box-shadow: var(--shadow-sm);
  animation: slide-up 0.6s ease-out;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgb(30 64 175 / 0.08); }

.header-shimmer {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; opacity: 0.2;
}
.header-shimmer span {
  position: absolute; top: 0; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--blue-400), transparent);
  animation: shimmer-line 3s linear infinite;
}
.header-shimmer span:nth-child(1) { left: 10%; }
.header-shimmer span:nth-child(2) { left: 50%; animation-delay: 1s; }
.header-shimmer span:nth-child(3) {
  right: 20%; left: auto;
  background: linear-gradient(to bottom, transparent, var(--indigo-500), transparent);
  animation-delay: 2s;
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); position: relative;
}

.brand { display: inline-flex; align-items: center; position: relative; }
.brand img { height: 40px; width: auto; transition: transform 0.3s ease; }
.brand:hover img { transform: scale(1.05); }

.spark {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--blue-400); animation: twinkle 2s ease-in-out infinite;
}
.spark-1 { top: -6px; left: -4px; }
.spark-2 { top: 4px; right: -8px; width: 6px; height: 6px; background: var(--blue-500); animation-delay: 0.6s; }
.spark-3 { bottom: 0; left: 12px; animation-delay: 1s; }
.spark-4 { bottom: 10px; right: -2px; background: var(--blue-500); animation-delay: 0.4s; }

.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
.nav-desktop a {
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--gray-600);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-desktop a:hover { background: var(--blue-50); color: var(--blue-800); }
.nav-desktop a.is-active { background: var(--blue-100); color: var(--blue-800); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; border: 0; cursor: pointer; text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover { transform: scale(1.05); }

.btn-whatsapp {
  display: none;
  background: linear-gradient(to right, var(--green-500), var(--green-600));
  color: #fff; padding: 0.5rem 1.5rem; border-radius: 999px; font-size: 0.95rem;
}
.btn-whatsapp:hover {
  background: linear-gradient(to right, var(--green-600), var(--green-700));
  color: #fff;
}

.btn-primary {
  background: linear-gradient(to right, var(--blue-500), var(--blue-600));
  color: #fff; padding: 0.9rem 1.6rem; border-radius: 999px;
  box-shadow: 0 10px 20px rgb(37 99 235 / 0.25);
}
.btn-primary:hover { color: #fff; background: linear-gradient(to right, var(--blue-600), var(--blue-700)); }

.btn-navy {
  background: linear-gradient(to right, var(--blue-700), var(--blue-800));
  color: #fff; padding: 0.9rem 1.6rem; border-radius: 999px;
  box-shadow: 0 10px 20px rgb(30 64 175 / 0.22);
}
.btn-navy:hover { color: #fff; background: linear-gradient(to right, var(--blue-800), #1e3a8a); }

.btn-ghost {
  background: rgb(255 255 255 / 0.14); color: #fff;
  border: 1px solid rgb(255 255 255 / 0.35);
  padding: 0.9rem 1.6rem; border-radius: 999px;
}
.btn-ghost:hover { color: #fff; background: rgb(255 255 255 / 0.24); }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 0; background: transparent;
  color: var(--gray-700); border-radius: 0.75rem;
}
.menu-toggle svg { width: 26px; height: 26px; }

.nav-mobile {
  display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--blue-100);
  padding: 0.75rem 1rem 1.25rem; box-shadow: var(--shadow-md);
}
.nav-mobile.is-open { display: grid; gap: 0.35rem; }
.nav-mobile a {
  padding: 0.75rem 1rem; border-radius: 0.75rem; color: var(--gray-700); font-weight: 500;
}
.nav-mobile a:hover, .nav-mobile a.is-active { background: var(--blue-50); color: var(--blue-800); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .btn-whatsapp { display: inline-flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Hero */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 3.2rem) 0 4.5rem;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 12% 18%, rgb(96 165 250 / 0.2), transparent 28%),
    radial-gradient(circle at 88% 8%, rgb(99 102 241 / 0.12), transparent 24%),
    linear-gradient(180deg, var(--blue-50) 0%, #fff 74%);
}
.hero-blob {
  position: absolute; width: 20rem; height: 20rem; border-radius: 50%;
  background: rgb(219 234 254 / 0.45); filter: blur(48px);
  top: 18%; right: 18%; pointer-events: none; animation: blob 8s ease-in-out infinite;
}
.hero-grid {
  max-width: 52rem;
  margin-inline: auto;
}
.hero .reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  background: #fff; border: 1px solid var(--blue-100);
  color: var(--blue-700); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border-radius: 999px; margin-bottom: 1.1rem;
  max-width: 100%; text-align: center; white-space: normal;
}

.hero h1 {
  margin: 0 0 1rem; color: var(--gray-900);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.18; letter-spacing: -0.03em; font-weight: 800;
  text-align: center;
  max-width: 52rem;
}
.hero h1 .hero-highlight {
  color: var(--blue-700);
}
.hero .lead {
  font-size: 1.15rem; color: var(--gray-600);
  margin: 0 auto 1.6rem; max-width: 48rem;
  text-align: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.4rem; }
.hero .hero-actions { justify-content: center; }
.hero-box-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-sizing: border-box;
  padding: calc(0.9rem - 2px) calc(1.6rem - 2px);
  border-radius: 999px;
  border: 2px solid var(--blue-500);
  background: #fff;
  color: var(--blue-700);
  font-weight: 600;
  line-height: inherit;
  text-decoration: none;
  box-shadow: 0 10px 20px rgb(37 99 235 / 0.12);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.hero-box-button:hover {
  transform: scale(1.05);
  color: #fff;
  background: linear-gradient(to right, var(--blue-600), var(--blue-700));
  border-color: var(--blue-600);
}

.trust-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.hero .trust-row { justify-content: center; }
.trust-chip {
  background: #fff; border: 1px solid var(--blue-100); color: var(--gray-600);
  font-size: 0.82rem; font-weight: 600; padding: 0.4rem 0.75rem; border-radius: 999px;
}

/* Sections */

.section { padding: 4.25rem 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--blue-50), #fff 70%); }
.section-white { background: #fff; }
.section-gray { background: var(--gray-50); }

.section-head { text-align: center; max-width: 46rem; margin: 0 auto 2.75rem; }
.section-head h2 {
  margin: 0 0 0.85rem; color: var(--gray-900);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  letter-spacing: -0.02em; line-height: 1.2; font-weight: 800;
}
.section-head p { margin: 0; color: var(--gray-600); font-size: 1.08rem; }

.about-card {
  max-width: 62.5rem;
  margin: 0 auto;
  text-align: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--blue-100);
  border-radius: 24px;
  padding: 2rem 1.35rem;
  box-shadow:
    0 24px 50px rgb(30 64 175 / 0.1),
    0 0 0 1px rgb(219 234 254 / 0.7);
}
@media (min-width: 768px) {
  .about-card {
    padding: 3.25rem 3.5rem;
  }
}
.about-label {
  display: inline-block;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.about-card h2 {
  margin: 0 0 0.7rem;
  color: var(--gray-900);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-weight: 800;
}
.about-subtitle {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: var(--blue-700);
  font-size: 1.05rem;
  font-weight: 600;
}
.about-body {
  text-align: left;
  max-width: 46rem;
  margin: 0 auto 1.75rem;
}
.about-body p {
  margin: 0 0 1.1rem;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-body p:last-child { margin-bottom: 0; }
.about-mission {
  margin: 0 auto 1.6rem;
  max-width: 40rem;
  padding: 1rem 1.15rem;
  background: rgb(239 246 255 / 0.9);
  border: 1px solid var(--blue-100);
  border-radius: 1rem;
  color: var(--gray-900);
  font-weight: 600;
  line-height: 1.65;
}
.about-card .btn { margin-top: 0.15rem; }

/* Editorial SEO guide */

.guide-card {
  max-width: 60rem;
  margin: 0 auto;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--blue-100);
  border-radius: 24px;
  padding: 1.75rem 1.2rem 2rem;
  box-shadow:
    0 24px 50px rgb(30 64 175 / 0.1),
    0 0 0 1px rgb(219 234 254 / 0.7);
}
@media (min-width: 768px) {
  .guide-card { padding: 3.4rem 4rem 3.6rem; }
}

.guide-head {
  text-align: center;
  margin: 0 auto 0.15rem;
  max-width: 44rem;
}
.guide-label {
  display: inline-block;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.guide-card h2 {
  margin: 0 0 1rem;
  color: var(--gray-900);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.28;
  font-weight: 800;
}
.guide-lead {
  margin: 0;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
}

.guide-block {
  margin-top: 1.65rem;
  padding-top: 1.65rem;
  border-top: 1px solid var(--blue-100);
  text-align: left;
}
.guide-block h3 {
  position: relative;
  margin: 0 0 0.85rem;
  padding-left: 0.85rem;
  color: var(--gray-900);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.guide-block h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  bottom: 0.22em;
  width: 3px;
  border-radius: 99px;
  background: var(--blue-500);
}
.guide-block > p {
  margin: 0 0 0.9rem;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
}
.guide-block > p:last-child { margin-bottom: 0; }
.guide-card strong { color: var(--gray-900); font-weight: 700; }

.guide-criteria {
  list-style: none;
  margin: 1.05rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 700px) {
  .guide-criteria { grid-template-columns: 1fr 1fr; }
}
.guide-criteria li {
  background: rgb(239 246 255 / 0.75);
  border: 1px solid var(--blue-100);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  color: var(--gray-700);
  font-size: 0.98rem;
  line-height: 1.45;
}
.guide-criteria li strong { color: var(--gray-900); }
@media (min-width: 700px) {
  .guide-criteria li:last-child { grid-column: 1 / -1; }
}

.guide-devices {
  list-style: none;
  margin: 1.05rem 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .guide-devices { grid-template-columns: 1fr 1fr; }
}
.guide-devices li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  padding: 1.05rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.guide-device-name,
.guide-device-copy {
  display: block;
  width: 100%;
  margin: 0;
}
.guide-device-name {
  color: var(--gray-900);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}
.guide-device-copy {
  color: var(--gray-600);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
}

.guide-flow {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.guide-flow li {
  margin: 0;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: 14px;
}
.guide-flow-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.45rem;
  margin: 0 0 0.28rem;
  color: var(--gray-900);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}
.guide-flow-n {
  color: var(--blue-700);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.guide-flow-sep { color: var(--blue-300); font-weight: 700; }
.guide-flow-label { color: var(--gray-900); }
.guide-flow-text {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
}

.guide-conclusion {
  margin-top: 1.75rem;
  padding: 1.35rem 1.15rem 1.45rem;
  text-align: center;
  background: rgb(239 246 255 / 0.9);
  border: 1px solid var(--blue-100);
  border-radius: 1.15rem;
}
.guide-conclusion h3 {
  margin: 0 0 0.7rem;
  color: var(--gray-900);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.guide-conclusion p {
  margin: 0 auto 1.15rem;
  max-width: 40rem;
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.7;
}
.guide-conclusion .btn { margin: 0; }
@media (min-width: 768px) {
  .guide-conclusion { padding: 1.7rem 2rem 1.8rem; }
}

/* Features + stats */

.features-stats {
  background:
    radial-gradient(circle at 12% 18%, rgb(37 99 235 / 0.22), transparent 32%),
    radial-gradient(circle at 88% 8%, rgb(99 102 241 / 0.16), transparent 28%),
    linear-gradient(180deg, #0b1224 0%, #111827 100%);
  color: #e2e8f0;
  overflow: hidden;
}
.features-stats-top {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
  align-items: start;
}
@media (min-width: 960px) {
  .features-stats-top {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.25rem;
    margin-bottom: 2.75rem;
    align-items: center;
  }
}

.features-stats .section-label {
  display: inline-block;
  color: var(--blue-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.features-stats .section-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 800;
}
.features-stats .section-title--left { text-align: left; }

.features-stats .check-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.features-stats .check-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.65;
}
.features-stats .check-list li span {
  display: block;
  min-width: 0;
}
.features-stats .check-icon {
  flex: 0 0 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.18rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.stat-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 8.5rem;
  padding: 1.25rem 1.1rem;
  border-radius: 1.15rem;
  border: 1px solid transparent;
  text-align: left;
  box-shadow: 0 16px 32px rgb(0 0 0 / 0.18);
}
.features-stats .stat-number {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.features-stats .stat-label {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.92;
}
.stat-box--red {
  background: linear-gradient(160deg, #f43f5e 0%, #e11d48 100%);
  color: #fff;
}
.stat-box--white {
  background: #fff;
  color: var(--gray-900);
  border-color: rgb(255 255 255 / 0.12);
}
.stat-box--white .stat-number { color: var(--blue-800); }
.stat-box--white .stat-label { color: var(--gray-600); opacity: 1; }
.stat-box--blue {
  background: linear-gradient(160deg, var(--blue-500) 0%, var(--blue-700) 100%);
  color: #fff;
}
.stat-box--blue .stat-number {
  font-size: clamp(1.7rem, 3.8vw, 2.45rem);
  letter-spacing: -0.03em;
}
.stat-box--phrase .stat-number {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.process-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 800px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
.process-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgb(255 255 255 / 0.04);
  border: 1px solid rgb(147 197 253 / 0.16);
  border-radius: 1.25rem;
  padding: 1.5rem 1.35rem 1.55rem;
  box-shadow: 0 18px 36px rgb(0 0 0 / 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgb(96 165 250 / 0.4);
  background: rgb(255 255 255 / 0.07);
}
.process-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 0 0.95rem;
}
.process-icon svg {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.process-step {
  display: block;
  width: 100%;
  color: var(--blue-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 0.45rem;
}
.process-card h3 {
  display: block;
  width: 100%;
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.process-card p {
  display: block;
  width: 100%;
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Feature cards */

.card-grid { display: grid; gap: 1.35rem; }
@media (min-width: 700px) {
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: #fff; border: 2px solid var(--blue-100);
  border-radius: 1.25rem; padding: 2rem; box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative; overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--blue-300);
  box-shadow: 0 24px 40px rgb(59 130 246 / 0.16);
}
.feature-card img.icon {
  width: 64px; height: 64px; margin-bottom: 1.15rem;
  border-radius: 1rem; transition: transform 0.3s ease;
}
.feature-card:hover img.icon { transform: rotate(8deg) scale(1.08); }
.feature-card h3 { margin: 0 0 0.55rem; color: var(--gray-900); font-size: 1.2rem; }
.feature-card p { margin: 0; color: var(--gray-600); }

/* Promo + pricing */

.promo {
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
  color: #fff; border-radius: 1rem; padding: 1rem 1.25rem; text-align: center;
  box-shadow: var(--shadow-md); margin-bottom: 2rem; position: relative; overflow: hidden;
}
.promo-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgb(255 255 255 / 0.2); border-radius: 999px;
  padding: 0.25rem 0.7rem; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.45rem;
}
.promo p { margin: 0 0 0.7rem; font-weight: 600; }
.promo-code {
  display: inline-block; background: #fff; color: var(--blue-600);
  font-weight: 800; font-size: 1.2rem; padding: 0.4rem 1rem; border-radius: 0.7rem;
}

.plans {
  display: grid; gap: 1.5rem; max-width: 72rem; margin: 0 auto;
}
@media (min-width: 768px) { .plans { grid-template-columns: repeat(2, 1fr); } }

.plan {
  position: relative; background: #fff; border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 1.5rem; box-shadow: 0 10px 30px rgb(15 23 42 / 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan.is-popular { border: 2px solid var(--blue-500); box-shadow: var(--shadow-lg); }

.plan-badge {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
  color: #fff; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 8px 16px rgb(37 99 235 / 0.28);
}
.plan-side {
  position: absolute; top: 1.1rem; right: 0.85rem;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  color: #fff; font-size: 0.72rem; font-weight: 800;
  padding: 0.3rem 0.65rem; border-radius: 0.5rem;
}
.plan.is-popular, .plan.has-badge { padding-top: 2.1rem; }
.plan h3 {
  margin: 0 0 0.45rem; color: var(--gray-900);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 800; letter-spacing: 0.02em; line-height: 1.25;
}
.plan .once { margin: 0 0 0.85rem; color: var(--gray-500); font-size: 0.85rem; }
.plan-gift {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgb(37 99 235 / 0.1);
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
}
.plan-range {
  margin: 0 0 0.85rem;
  color: var(--gray-500);
  font-size: 0.88rem;
  font-weight: 600;
}
.plan .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  margin: 0 0 1.15rem;
  color: var(--gray-900);
  font-weight: 800;
  line-height: 1;
}
.plan .price-old {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-500);
  text-decoration: line-through;
}
.plan .price-old[hidden] { display: none; }
.plan .price-current {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
}
.plan .price-period {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
}
.screen-legend {
  margin: 0 0 0.55rem;
  color: var(--gray-900);
  font-size: 0.9rem;
  font-weight: 800;
}
.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
}
.screen-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  min-height: 3.55rem;
  padding: 0.7rem 0.45rem;
  border: 1.5px solid var(--blue-100);
  border-radius: 0.9rem;
  background: #f8fbff;
  cursor: pointer;
  font: inherit;
  color: var(--gray-700);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.screen-option:hover {
  border-color: var(--blue-400);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgb(37 99 235 / 0.1);
}
.screen-option.is-active {
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgb(59 130 246 / 0.18);
}
.screen-option-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
}
.screen-option-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue-700);
}
.screen-option.is-active .screen-option-label,
.screen-option.is-active .screen-option-price {
  color: var(--blue-800);
}

.plan ul { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.plan li {
  display: flex; gap: 0.55rem; align-items: flex-start;
  font-size: 0.88rem; color: var(--gray-700); margin-bottom: 0.55rem;
}
.plan li svg { width: 18px; height: 18px; color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }

.btn-plan {
  display: block; width: 100%; text-align: center;
  background: var(--blue-600); color: #fff; font-weight: 800;
  padding: 0.8rem 1rem; border-radius: 0.8rem; border: 0; cursor: pointer;
  font-size: 0.95rem; transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.btn-plan:hover { background: var(--blue-500); color: #fff; transform: none; box-shadow: 0 8px 18px rgb(37 99 235 / 0.25); }
.plan.is-popular .btn-plan { background: var(--blue-500); }
.plan.is-popular .btn-plan:hover { background: var(--blue-600); }

.pay-note {
  margin: 0.8rem 0 0; text-align: center; font-size: 0.78rem; color: var(--gray-500); font-weight: 600;
}

/* Devices */

.device-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .device-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .device-grid { grid-template-columns: repeat(4, 1fr); } }

.device-card {
  background: #fff; border: 1px solid var(--blue-100); border-radius: 1.1rem;
  padding: 1.35rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.device-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.device-card img { width: 56px; height: 56px; margin: 0 auto 0.85rem; }
.device-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; color: var(--gray-900); }
.device-card p { margin: 0; font-size: 0.88rem; color: var(--gray-600); }

.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.split-media img { width: 100%; border-radius: 1.5rem; box-shadow: var(--shadow-md); }

/* How it works */

.steps { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); } }

.step {
  background: #fff; border-radius: 0.9rem; padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm); display: flex; gap: 1rem; align-items: flex-start;
  transition: box-shadow 0.3s ease;
}
.step:hover { box-shadow: var(--shadow-md); }
.step-icon {
  width: 64px; height: 64px; border-radius: 0.8rem; flex-shrink: 0;
  display: grid; place-items: center;
}
.step-icon img { width: 32px; height: 32px; }
.step-icon.blue { background: #dbeafe; }
.step-icon.green { background: #dcfce7; }
.step-icon.purple { background: #ede9fe; }
.step-icon.sky { background: var(--blue-50); }
.step h3 { margin: 0 0 0.4rem; color: var(--gray-900); font-size: 1.1rem; }
.step p { margin: 0; color: var(--gray-600); font-size: 0.95rem; }

.help-card {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 0.9rem; padding: 1.6rem;
}
.help-card h3 { margin: 0 0 0.6rem; color: var(--gray-900); }
.help-card p { margin: 0 0 1rem; color: var(--gray-700); }
.after-purchase {
  text-align: center;
  max-width: 42rem;
  margin: 2.75rem auto 0;
}
.after-purchase .btn-whatsapp {
  display: inline-flex;
}

/* Product card */

.product-card {
  display: grid;
  gap: 1.75rem;
  align-items: start;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .product-card {
    padding: 1.75rem;
  }
}
.product-media img {
  width: 100%;
  height: auto;
  border-radius: 1.15rem;
  display: block;
  object-fit: cover;
}
.product-badge {
  display: inline-flex;
  margin: 0 0 0.85rem;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgb(37 99 235 / 0.22);
}
.product-copy h2 {
  margin: 0 0 0.45rem;
  color: var(--gray-900);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.product-kicker {
  margin: 0 0 1.1rem;
  color: var(--blue-700);
  font-weight: 700;
}
.product-copy > p:not(.product-kicker):not(.product-badge) {
  margin: 0 0 1.35rem;
  color: var(--gray-600);
}
.spec-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  padding: 0;
}
.spec-list li {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-800);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

/* Support */

.support-grid { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .support-grid { grid-template-columns: 1.1fr 0.9fr; } }

.support-list { list-style: none; margin: 0; padding: 0; }
.support-list li {
  display: flex; gap: 0.75rem; padding: 0.85rem 0;
  border-bottom: 1px solid var(--blue-100); color: var(--gray-600);
}
.support-list li:last-child { border-bottom: 0; }
.support-list strong { color: var(--gray-900); display: block; margin-bottom: 0.15rem; }

/* FAQ */

.faq-section {
  background:
    radial-gradient(circle at 88% 12%, rgb(219 234 254 / 0.7), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #fff 72%);
}
.faq-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 960px) {
  .faq-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: stretch;
  }
}
.faq-section .section-label {
  display: inline-block;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.faq-section .section-title {
  margin: 0 0 1.5rem;
  color: var(--gray-900);
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 800;
}
.faq-section .section-title--left { text-align: left; }
.faq-section .faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: none;
  margin: 0;
}
.faq-section .faq-item {
  border: 1px solid var(--blue-100);
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-section .faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1.1rem 1.15rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--gray-900);
}
.faq-section .faq-item summary::-webkit-details-marker { display: none; }
.faq-section .faq-item summary::marker { content: ""; }
.faq-section .faq-item summary::after {
  content: "+";
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
.faq-section .faq-item[open] {
  border-color: var(--blue-200);
  box-shadow: 0 10px 24px rgb(37 99 235 / 0.08);
}
.faq-section .faq-item[open] summary::after {
  content: "−";
  background: var(--blue-600);
  color: #fff;
}
.faq-section .faq-answer {
  padding: 0 1.15rem 1.2rem;
}
.faq-section .faq-answer p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.7;
}
@media (max-width: 639px) {
  .faq-section .faq-item summary {
    padding: 1.05rem 1rem;
    font-size: 0.98rem;
    min-height: 3.25rem;
  }
}
.faq-visual { min-width: 0; }
.faq-info-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 2.4rem 1.8rem;
  border-radius: 1.5rem;
  border: 1px solid rgb(147 197 253 / 0.18);
  background:
    radial-gradient(circle at 16% 10%, rgb(37 99 235 / 0.38), transparent 36%),
    linear-gradient(180deg, #0b1224 0%, #111827 100%);
  box-shadow: 0 24px 50px rgb(15 23 42 / 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.faq-info-glow {
  position: absolute;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  right: -3rem;
  bottom: -3rem;
  background: rgb(59 130 246 / 0.22);
  filter: blur(28px);
  pointer-events: none;
}
@media (min-width: 960px) {
  .faq-info-card { position: sticky; top: calc(var(--header-h) + 1rem); }
}
.faq-info-label {
  position: relative;
  display: inline-block;
  color: var(--blue-400);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.faq-info-card h3 {
  position: relative;
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.faq-info-card p {
  position: relative;
  margin: 0 0 1.5rem;
  max-width: 22rem;
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.7;
}
.faq-info-card .btn {
  position: relative;
  align-self: center;
}

.questions-section {
  padding: 2.25rem 0 2.5rem;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.questions-card {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgb(147 197 253 / 0.2);
  background:
    radial-gradient(circle at 12% 8%, rgb(37 99 235 / 0.28), transparent 32%),
    radial-gradient(circle at 90% 0%, rgb(99 102 241 / 0.18), transparent 28%),
    linear-gradient(180deg, #0b1224 0%, #111827 100%);
  box-shadow: 0 18px 36px rgb(15 23 42 / 0.2);
  box-sizing: border-box;
}
.questions-header {
  text-align: center;
  margin-bottom: 18px;
}
.questions-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgb(59 130 246 / 0.16);
  border: 1px solid rgb(147 197 253 / 0.22);
}
.questions-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
}
.questions-section .section-label {
  display: inline-block;
  color: var(--blue-400);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.questions-header h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.questions-header p {
  margin: 0 auto;
  max-width: 500px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
}
.questions-form {
  display: grid;
  gap: 0;
  margin-top: 18px;
}
.questions-form .form-group {
  display: grid;
  gap: 0.28rem;
  margin-bottom: 11px;
}
.questions-form .form-group label {
  color: #e2e8f0;
  font-size: 0.8rem;
  font-weight: 700;
}
.questions-form input,
.questions-form textarea {
  width: 100%;
  box-sizing: border-box;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgb(147 197 253 / 0.22);
  border-radius: 10px;
  background: rgb(15 23 42 / 0.55);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: none;
}
.questions-form textarea {
  height: auto;
  min-height: 90px;
  resize: vertical;
}
.questions-form input::placeholder,
.questions-form textarea::placeholder {
  color: #94a3b8;
}
.questions-form input:hover,
.questions-form textarea:hover {
  border-color: rgb(147 197 253 / 0.45);
}
.questions-form input:focus,
.questions-form textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgb(59 130 246 / 0.28);
}
.questions-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  min-height: 44px;
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(to right, var(--blue-500), var(--blue-600));
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 16px rgb(37 99 235 / 0.25);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.questions-submit svg {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  overflow: visible;
}
.questions-submit span { line-height: 1; }
.questions-submit:hover {
  transform: scale(1.02);
  background: linear-gradient(to right, var(--blue-600), var(--blue-700));
}
.questions-status {
  margin: 10px 0 0;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: rgb(219 234 254 / 0.12);
  border: 1px solid rgb(147 197 253 / 0.22);
  color: #dbeafe;
  font-size: 0.82rem;
  line-height: 1.5;
}
.questions-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid rgb(148 163 184 / 0.18);
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
}
.status-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgb(34 197 94 / 0.16);
}
.footer-separator {
  color: #64748b;
  padding: 0 2px;
}
@media (max-width: 640px) {
  .questions-section { padding: 1.75rem 0; }
  .questions-card {
    max-width: calc(100% - 24px);
    padding: 20px 16px;
    border-radius: 16px;
  }
  .questions-header { margin-bottom: 16px; }
  .questions-header h2 { font-size: 22px; }
  .questions-header p { font-size: 13px; }
}

/* CTA */

.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2563eb, #1e40af 55%, #1e3a8a);
  color: #fff; border-radius: 2rem; padding: 2.5rem 1.5rem; box-shadow: var(--shadow-lg);
  text-align: center;
}
@media (min-width: 768px) { .cta-band { padding: 3.25rem; } }
.cta-band h2 { margin: 0 0 0.75rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-band p { margin: 0 auto 1.5rem; color: #dbeafe; max-width: 38rem; }
.cta-dots span {
  position: absolute; border-radius: 50%; background: #fff; opacity: 0.35;
  animation: twinkle 2s ease-in-out infinite;
}
.cta-dots span:nth-child(1) { top: 20%; right: 10%; width: 8px; height: 8px; }
.cta-dots span:nth-child(2) { top: 60%; left: 8%; width: 6px; height: 6px; animation-delay: 0.6s; }
.cta-dots span:nth-child(3) { bottom: 16%; right: 18%; width: 8px; height: 8px; animation-delay: 1s; }

/* Footer */

.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--blue-100);
  padding: 2.15rem 0 2rem;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  display: block;
  height: 42px;
  width: auto;
}
.site-footer p {
  margin: 1rem 0 0;
  max-width: 760px;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gray-900);
  font-size: 0.92rem;
  font-weight: 600;
}
.footer-contact-item:hover {
  color: var(--blue-600);
}
.footer-contact-item svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  overflow: visible;
}
.footer-contact-item--whatsapp {
  display: inline-flex;
  align-items: center;
}
.footer-whatsapp-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.footer-copyright {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-500);
  opacity: 1;
}
@media (max-width: 640px) {
  .site-footer { padding: 1.75rem 0 1.6rem; }
  .footer-logo img { height: 36px; }
  .site-footer p {
    margin-top: 0.85rem;
    font-size: 0.84rem;
    line-height: 1.65;
  }
}
@media (max-width: 600px) {
  .footer-contact {
    flex-direction: column;
    gap: 12px;
  }
  .footer-copyright {
    margin-top: 16px;
    font-size: 12px;
  }
}

/* Modal */

.modal {
  position: fixed; inset: 0; z-index: 80;
  display: none; align-items: center; justify-content: center;
  padding: 1rem; background: rgb(0 0 0 / 0.5); backdrop-filter: blur(6px);
}
.modal[hidden] { display: none !important; }
.modal.is-open { display: flex; }
.modal-card {
  background: #fff; border-radius: 1.25rem; max-width: 40rem; width: 100%;
  max-height: 90vh; overflow: auto; box-shadow: var(--shadow-lg);
}
.modal-head {
  position: sticky; top: 0; z-index: 1;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
  color: #fff; padding: 1.4rem 1.5rem; border-radius: 1.25rem 1.25rem 0 0;
  display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start;
}
.modal-head h2 { margin: 0 0 0.35rem; font-size: 1.4rem; }
.modal-head p { margin: 0; color: #dbeafe; font-size: 0.9rem; }
.modal-close {
  background: transparent; border: 0; color: #fff; width: 40px; height: 40px;
  border-radius: 0.6rem; cursor: pointer; font-size: 1.4rem; line-height: 1;
}
.modal-close:hover { background: rgb(255 255 255 / 0.18); }
.modal-body { padding: 1.4rem 1.5rem 1.6rem; }
.form-grid { display: grid; gap: 0.9rem; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
label { display: grid; gap: 0.35rem; font-size: 0.85rem; font-weight: 700; color: var(--gray-800, #1e293b); }
input, select {
  width: 100%; border: 1px solid var(--blue-100); border-radius: 0.7rem;
  padding: 0.7rem 0.8rem; font: inherit; color: var(--gray-900); background: #fff;
}
.pay-options { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.pay-options label {
  flex: 1; min-width: 8rem; border: 1px solid var(--blue-100); border-radius: 0.8rem;
  padding: 0.7rem 0.8rem; display: flex; align-items: center; gap: 0.5rem; font-weight: 600;
}
.pay-options input { width: auto; }
.modal-plan {
  background: var(--blue-50); border-radius: 0.8rem; padding: 0.85rem 1rem;
  margin-bottom: 1rem; font-weight: 700; color: var(--blue-800);
}

.reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible { animation: slide-up 0.7s ease-out forwards; }

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes shimmer-line {
  0% { transform: translateY(-100%); opacity: 0; }
  40%, 60% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes blob {
  0%, 100% { transform: translate(0) scale(1); }
  50% { transform: translate(12px, -10px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal, .reveal { opacity: 1; transform: none; }
}
