:root {
  --bg: #020817;
  --bg-soft: #081124;
  --card: rgba(17, 24, 39, 0.72);
  --card-solid: #111827;
  --primary: #2563eb;
  --primary-soft: #3b82f6;
  --success: #22c55e;
  --text: #ffffff;
  --muted: #94a3b8;
  --danger: #7f1d1d;
  --border: rgba(148, 163, 184, 0.16);
  --glow: 0 18px 60px rgba(37, 99, 235, 0.2);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.14), transparent 32%),
    linear-gradient(180deg, #020817 0%, #030712 100%);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 30%),
    linear-gradient(315deg, rgba(37, 99, 235, 0.04), transparent 35%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
a,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.alert-bar {
  background: linear-gradient(90deg, rgba(127, 29, 29, 0.95), rgba(69, 10, 10, 0.92));
  border-bottom: 1px solid rgba(248, 113, 113, 0.22);
  color: #fee2e2;
  font-size: 0.94rem;
}

.alert-bar .container {
  padding: 10px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(2, 8, 23, 0.78);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.4));
  box-shadow: var(--glow);
  font-size: 1.1rem;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.3px;
}

.brand-copy strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.25s ease;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.34);
  color: #ffffff;
}

.btn-outline {
  border-color: rgba(59, 130, 246, 0.36);
  background: rgba(15, 23, 42, 0.75);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 84px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-badge,
.section-badge,
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: rgba(15, 23, 42, 0.66);
  color: #bfdbfe;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 16px;
  line-height: 1.3;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.hero p,
.page-hero p,
.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions,
.guide-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points,
.inline-list,
.feature-list,
.steps-list,
.keyword-list,
.mini-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.hero-points {
  display: grid;
  gap: 10px;
  color: #dbeafe;
  font-weight: 600;
}

.glass-card,
.content-card,
.article-card,
.faq-item,
.stat-card,
.service-card,
.why-card,
.guide-card,
.package-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--glow);
  backdrop-filter: blur(16px);
}

.hero-panel {
  padding: 26px;
}

.highlight-panel {
  display: grid;
  gap: 18px;
}

.highlight-row {
  display: grid;
  gap: 14px;
}

.highlight-box {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(8, 17, 36, 0.88);
  border: 1px solid rgba(59, 130, 246, 0.18);
}

.highlight-box strong {
  display: block;
  margin-bottom: 6px;
}

.highlight-box span {
  color: var(--muted);
  font-size: 0.95rem;
}

.stat-strip {
  margin-top: 26px;
}

.stats-grid,
.why-grid,
.services-grid,
.guide-grid,
.articles-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.service-card,
.why-card,
.guide-card,
.content-card,
.article-card {
  padding: 24px;
}

.stat-card strong,
.metric-value,
.package-value {
  color: var(--success);
  font-weight: 800;
}

.stat-card p,
.service-card p,
.why-card p,
.guide-card p,
.content-card p,
.article-card p,
.package-note,
.package-helper,
.footer-copy p {
  margin: 8px 0 0;
  color: var(--muted);
}

section {
  padding: 42px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-head h2,
.content-card h2,
.faq-intro h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.why-grid,
.services-grid,
  .guide-grid,
  .articles-grid,
  .article-index {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

  .seo-split {
    grid-template-columns: 1fr;
  }


.section-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.16);
  color: #bfdbfe;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.why-card h3,
.service-card h3,
.guide-card h3,
.article-card h3,
.package-card h3,
.content-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.packages-shell {
  display: grid;
  gap: 28px;
}

.packages-group {
  display: grid;
  gap: 18px;
}

.group-title {
  margin: 0;
  font-size: 1.4rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.package-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.package-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.24), transparent 70%);
  pointer-events: none;
}

.package-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.package-card header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.package-tier {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  color: #bfdbfe;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.package-metrics {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(8, 17, 36, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.metric-label {
  color: var(--muted);
  font-size: 0.94rem;
}

.package-value {
  font-size: 1.4rem;
  color: var(--text);
}

.package-meta {
  display: grid;
  gap: 18px;
}

.package-label {
  margin: 0 0 10px;
  font-weight: 800;
}

.installment-options,
.availability-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-button,
.availability-option {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.88);
  color: var(--text);
  border-radius: 16px;
  min-height: 46px;
  padding: 0 14px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.option-button:hover,
.availability-option:hover {
  border-color: rgba(59, 130, 246, 0.48);
  transform: translateY(-1px);
}

.option-button.is-active,
.availability-option.is-active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(59, 130, 246, 0.14));
  border-color: rgba(59, 130, 246, 0.62);
}

.option-button {
  position: relative;
  font-weight: 700;
}

.vip-tag {
  display: inline-block;
  margin-inline-start: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
  font-size: 0.72rem;
  font-weight: 800;
}

.availability-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.availability-option input {
  accent-color: var(--primary-soft);
}

.package-summary {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.summary-row {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 17, 36, 0.88);
  border: 1px solid rgba(59, 130, 246, 0.14);
}

.summary-row strong {
  display: block;
  margin-bottom: 4px;
}

.summary-row span {
  color: var(--muted);
}

.summary-row .summary-amount {
  color: #dbeafe;
  font-weight: 800;
}

.summary-row .summary-amount.success {
  color: var(--success);
}

.package-helper {
  font-size: 0.88rem;
}

.package-note {
  font-size: 0.86rem;
}

body.body-sheet-open {
  overflow: hidden;
}

.package-order-trigger {
  margin-top: 18px;
  position: relative;
  z-index: 2;
  min-height: 56px;
  font-size: 1rem;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.34);
}

.order-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.order-sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 8, 23, 0.7);
  backdrop-filter: blur(10px);
}

.order-sheet__panel {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  width: min(460px, 100%);
  margin: 0 auto;
  max-height: min(90vh, 760px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 8, 23, 0.99));
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -30px 80px rgba(2, 8, 23, 0.45);
  overflow: hidden;
}

.order-sheet__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px 8px;
}

.order-sheet__header h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.order-sheet__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.order-sheet__close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
}

.order-sheet__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 8px;
}

.order-step-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(8, 17, 36, 0.76);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.order-step-pill.is-active {
  color: var(--text);
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(37, 99, 235, 0.24);
}

.order-step-pill.is-complete {
  color: #bbf7d0;
  border-color: rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.14);
}

.order-sheet__body {
  padding: 0 14px 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.order-sheet__section {
  display: grid;
  gap: 8px;
}

.order-sheet__section--final {
  gap: 6px;
}

.order-sheet__section h3 {
  margin: 0;
  font-size: 1rem;
}

.order-sheet__package-glance {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.order-sheet__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-sheet__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.order-sheet__actions--primary {
  margin-top: 4px;
  margin-bottom: 2px;
}

.order-sheet__actions .btn {
  flex: 1 1 auto;
}

.order-sheet__actions--stack {
  display: grid;
  grid-template-columns: 1fr;
}

.btn-compact {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.order-sheet__field {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.order-sheet__field input {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(8, 17, 36, 0.94);
  color: var(--text);
  padding: 0 16px;
  outline: none;
}

.order-sheet__field input:focus {
  border-color: rgba(59, 130, 246, 0.56);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.order-sheet__error {
  margin: 0;
  color: #fecaca;
  font-size: 0.92rem;
}

.order-sheet__summary-grid {
  margin-top: 0;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-sheet__headline {
  color: #dbeafe;
  font-weight: 700;
  font-size: 0.88rem;
}

.order-sheet__celebration {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  min-height: 34px;
  margin-bottom: 2px;
  overflow: hidden;
}

.order-sheet__celebration span {
  display: inline-block;
  font-size: 1.25rem;
  animation: celebrateDrop 2.8s ease-in-out infinite;
}

.order-sheet__celebration--compact {
  min-height: 22px;
  gap: 10px;
}

.order-sheet__celebration--compact span {
  font-size: 1rem;
}

.order-sheet__celebration span:nth-child(2) {
  animation-delay: 0.2s;
}

.order-sheet__celebration span:nth-child(3) {
  animation-delay: 0.4s;
}

.order-sheet__celebration span:nth-child(4) {
  animation-delay: 0.6s;
}

.order-sheet__celebration span:nth-child(5) {
  animation-delay: 0.8s;
}

.order-sheet__quick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 6px;
}

.order-sheet__quick-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.order-sheet__whatsapp-btn {
  min-height: 48px;
  width: 100%;
  font-size: 0.94rem;
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.order-preview-card {
  margin-top: 12px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 24%),
    rgba(8, 17, 36, 0.96);
}

.order-preview-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.order-preview-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.order-preview-card__grid div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.order-preview-card__grid strong {
  display: block;
  margin-bottom: 4px;
}

.order-preview-card__grid span {
  color: var(--muted);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 92px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: right;
  font-weight: 800;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.page-hero {
  padding: 72px 0 24px;
}

.page-hero .container {
  display: grid;
  gap: 22px;
}

.content-grid {
  display: grid;
  gap: 18px;
}

.content-card ul,
.content-card ol {
  margin: 18px 0 0;
  padding-inline-start: 20px;
  color: var(--muted);
}

.content-card li {
  margin-bottom: 10px;
}

.note-banner,
.trust-banner {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(8, 17, 36, 0.9);
  color: #dbeafe;
}

.articles-grid .article-card {
  height: 100%;
}

.articles-grid .article-card p {
  margin-bottom: 18px;
}

.article-index,
.article-stack,
.seo-split {
  display: grid;
  gap: 18px;
}

.article-index {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-index-card {
  display: block;
  height: 100%;
}

.article-anchor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bfdbfe;
  font-weight: 700;
  margin-top: 10px;
}

.article-anchor::before {
  content: "←";
}

.article-detail h2 {
  margin: 0 0 10px;
}

.article-lead {
  font-size: 1.02rem;
  color: #dbeafe;
}

.article-detail h3 {
  margin-top: 20px;
}

.article-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mini-faq {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.mini-faq li {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.58);
  color: var(--muted);
}

.mini-faq strong {
  color: var(--text);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.keyword-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: rgba(15, 23, 42, 0.7);
  color: #dbeafe;
  font-size: 0.94rem;
}

.site-footer {
  padding: 32px 0 90px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  background: rgba(2, 8, 23, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 22px;
}

.footer-links,
.footer-keywords {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-keywords li {
  color: var(--muted);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  margin-top: 22px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.fixed-whatsapp {
  position: fixed;
  inset-inline-start: 16px;
  bottom: 18px;
  z-index: 40;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
}

.rain-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.rain-drop {
  position: absolute;
  top: -12%;
  width: 1px;
  height: 110px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0), rgba(96, 165, 250, 0.85), rgba(59, 130, 246, 0));
  opacity: 0.38;
  transform: rotate(12deg);
  animation: rainFall linear infinite;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.8);
  box-shadow: 0 0 18px rgba(96, 165, 250, 0.7);
  animation: pulseGlow 3s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rainFall {
  from {
    transform: translate3d(0, 0, 0) rotate(12deg);
  }

  to {
    transform: translate3d(-80px, 110vh, 0) rotate(12deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.2);
  }
}

@keyframes celebrateDrop {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale(0.85) rotate(-12deg);
  }

  20% {
    opacity: 1;
  }

  50% {
    transform: translateY(4px) scale(1.06) rotate(8deg);
  }

  100% {
    opacity: 0.9;
    transform: translateY(-2px) scale(0.95) rotate(-4deg);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .faq-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .services-grid,
  .guide-grid,
  .articles-grid,
  .packages-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header .container {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    background: rgba(8, 17, 36, 0.94);
    border: 1px solid var(--border);
  }

  .site-nav.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .hero {
    padding-top: 56px;
  }

  section {
    padding: 34px 0;
  }

  .why-grid,
  .services-grid,
  .guide-grid,
  .articles-grid,
  .packages-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .package-card,
  .stat-card,
  .service-card,
  .why-card,
  .guide-card,
  .content-card,
  .article-card {
    padding: 20px;
  }

  .article-index,
  .seo-split {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .guide-actions,
  .page-actions {
    flex-direction: column;
  }

  .btn,
  .fixed-whatsapp {
    width: 100%;
  }

  .footer-meta {
    flex-direction: column;
    align-items: start;
  }

  .metric-row {
    flex-direction: column;
    align-items: start;
  }

  .fixed-whatsapp {
    inset-inline: 12px;
    bottom: 12px;
  }

  .order-sheet__panel {
    width: 100%;
    inset: 0;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
    border: 0;
  }

  .order-sheet__header,
  .order-sheet__steps,
  .order-sheet__body {
    padding-inline: 12px;
  }

  .order-sheet__actions,
  .order-sheet__actions--stack,
  .order-preview-card__grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .order-sheet__actions .btn {
    width: 100%;
  }

  .order-preview-card {
    padding: 14px;
  }

  .order-preview-card__top {
    flex-direction: column;
    align-items: start;
  }

  .order-sheet__header {
    padding-top: 10px;
    padding-bottom: 6px;
  }

  .order-sheet__body {
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .order-sheet__steps {
    padding-bottom: 6px;
  }

  .order-step-pill {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .option-button,
  .availability-option {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .summary-row {
    padding: 8px 10px;
    border-radius: 14px;
  }

  .summary-row strong,
  .summary-row span,
  .package-note {
    font-size: 0.78rem;
  }

  .order-sheet__quick-meta {
    font-size: 0.74rem;
  }

  .order-sheet__celebration span {
    font-size: 1.05rem;
  }

  .order-sheet__whatsapp-btn {
    font-size: 0.92rem;
    min-height: 48px;
  }

  .order-sheet__headline {
    font-size: 0.8rem;
  }

  .order-sheet__summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
