/* ========== Aimailo — Friendly playful Arabic landing ========== */

:root {
  --bg: #FFFDF8;
  --surface: #FFFFFF;
  --ink: #0B1B2B;
  --ink-soft: #4A5A6E;
  --ink-mute: #8694A6;
  --line: #EAE6DC;
  --line-strong: #D9D3C4;

  --primary: #0EA5E9;          /* Sky */
  --primary-deep: #0284C7;
  --primary-soft: #E0F4FE;

  --accent-pink: #FF6B9D;
  --accent-pink-soft: #FFE4EE;
  --accent-yellow: #FFC93C;
  --accent-yellow-soft: #FFF4D1;
  --accent-mint: #34D399;
  --accent-mint-soft: #DCFCE7;
  --accent-violet: #A78BFA;
  --accent-violet-soft: #EDE9FE;

  --whatsapp: #25D366;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 6px rgba(11, 27, 43, 0.06);
  --shadow: 0 12px 30px -10px rgba(11, 27, 43, 0.12);
  --shadow-lg: 0 24px 60px -20px rgba(11, 27, 43, 0.18);
  --shadow-color: 0 14px 30px -12px rgba(14, 165, 233, 0.45);

  --font-display: 'Cairo', system-ui, sans-serif;
  --font-body: 'Tajawal', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

[data-theme="dark"] {
  --bg: #0A1320;
  --surface: #131F30;
  --ink: #F4F6FA;
  --ink-soft: #B8C5D6;
  --ink-mute: #7A8AA0;
  --line: #1F2D42;
  --line-strong: #2A3A52;
  --primary-soft: rgba(14, 165, 233, 0.15);
  --accent-pink-soft: rgba(255, 107, 157, 0.18);
  --accent-yellow-soft: rgba(255, 201, 60, 0.18);
  --accent-mint-soft: rgba(52, 211, 153, 0.18);
  --accent-violet-soft: rgba(167, 139, 250, 0.2);
  --shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========== Layout ========== */

.page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== Background blobs ========== */

.blob-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.blob-1 { width: 480px; height: 480px; top: -120px; right: -120px; background: var(--primary); }
.blob-2 { width: 380px; height: 380px; top: 240px; left: -120px; background: var(--accent-pink); opacity: 0.4; }
.blob-3 { width: 420px; height: 420px; bottom: -100px; right: 30%; background: var(--accent-yellow); opacity: 0.35; }

[data-theme="dark"] .blob { opacity: 0.3; }
[data-theme="dark"] .blob-2 { opacity: 0.25; }
[data-theme="dark"] .blob-3 { opacity: 0.22; }

main { position: relative; z-index: 1; }

/* ========== Nav ========== */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-violet) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  box-shadow: var(--shadow-color);
  transform: rotate(-6deg);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ========== Hero ========== */

.hero {
  padding: 60px 0 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: 40px 0 60px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--accent-yellow-soft);
  color: #8B6508;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 22px;
}
[data-theme="dark"] .hero-badge { color: var(--accent-yellow); }

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  margin-bottom: 22px;
}
.hero h1 .highlight {
  background: linear-gradient(120deg, var(--primary) 30%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.hero h1 .squiggle {
  position: relative;
  display: inline-block;
}
.hero h1 .squiggle::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'><path d='M2 6 Q 15 1, 30 6 T 60 6 T 90 6 T 118 6' stroke='%23FFC93C' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") repeat-x;
  background-size: 120px 10px;
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -10px rgba(37, 211, 102, 0.6); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px dashed var(--line-strong);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 600;
}

/* ========== Hero visual stack ========== */

.hero-visual {
  position: relative;
  height: 520px;
}
@media (max-width: 960px) {
  .hero-visual { height: 460px; }
}

.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px;
}

.fc-mail {
  top: 20px;
  right: 0;
  width: 64%;
  animation: bob 5s ease-in-out infinite;
}
.fc-poster {
  top: 200px;
  left: 0;
  width: 58%;
  animation: bob 5s ease-in-out infinite -2s;
}
.fc-bot {
  bottom: 0;
  right: 18%;
  width: 60%;
  animation: bob 5s ease-in-out infinite -3.5s;
}

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

.fc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.fc-icon.sky { background: var(--primary-soft); color: var(--primary-deep); }
.fc-icon.pink { background: var(--accent-pink-soft); color: var(--accent-pink); }
.fc-icon.mint { background: var(--accent-mint-soft); color: #047857; }
[data-theme="dark"] .fc-icon.mint { color: var(--accent-mint); }

.fc-title { font-weight: 800; font-family: var(--font-display); font-size: 15px; }
.fc-sub { font-size: 12px; color: var(--ink-mute); font-weight: 500; }

.fc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.fc-row:last-child { border: none; }
.fc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-mint); flex-shrink: 0; }

/* ========== Section scaffolding ========== */

section.block {
  padding: 90px 0;
  position: relative;
}
@media (max-width: 760px) {
  section.block { padding: 60px 0; }
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}
[data-theme="dark"] .eyebrow { color: var(--primary); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 700px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ========== Services tabs ========== */

.tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  box-shadow: var(--shadow-sm);
}
.tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: all 0.25s;
}
.tab:hover { color: var(--ink); }
.tab.active { color: #fff; box-shadow: 0 8px 20px -8px var(--tab-color, var(--primary)); }
.tab.active.sky { background: var(--primary); }
.tab.active.pink { background: var(--accent-pink); }
.tab.active.violet { background: var(--accent-violet); }
.tab-emoji {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  font-size: 16px;
  background: var(--primary-soft);
  border-radius: 8px;
  transition: background 0.2s;
}
.tab.active .tab-emoji { background: rgba(255,255,255,0.25); }

/* Service display */
.service-stage {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
@media (max-width: 960px) {
  .service-stage { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
}

.service-info h3 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 16px;
}
.service-info .lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.feat-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.feat-check.sky { background: var(--primary); }
.feat-check.pink { background: var(--accent-pink); }
.feat-check.violet { background: var(--accent-violet); }

.service-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  transition: transform 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary.sky { background: var(--primary); box-shadow: 0 12px 24px -8px rgba(14, 165, 233, 0.5); }
.btn-primary.pink { background: var(--accent-pink); box-shadow: 0 12px 24px -8px rgba(255, 107, 157, 0.5); }
.btn-primary.violet { background: var(--accent-violet); box-shadow: 0 12px 24px -8px rgba(167, 139, 250, 0.5); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); }

/* ========== Mockups ========== */

.mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
  justify-self: center;
}

/* Telegram chat mockup */
.tg-frame {
  background: #17212B;
  border-radius: 28px;
  padding: 18px 14px 20px;
  box-shadow: 0 30px 60px -20px rgba(11, 27, 43, 0.4);
  position: relative;
  border: 8px solid #0E1621;
}
.tg-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 5px;
  background: #29384A;
  border-radius: 999px;
}
.tg-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 4px 14px;
  border-bottom: 1px solid #29384A;
  margin-bottom: 14px;
}
.tg-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0EA5E9, #A78BFA);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 14px;
}
.tg-name { color: #fff; font-weight: 700; font-size: 14px; font-family: var(--font-display); }
.tg-status { color: #5D7080; font-size: 11px; font-weight: 600; }
.tg-msgs { display: flex; flex-direction: column; gap: 8px; min-height: 280px; }
.tg-msg {
  max-width: 78%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  animation: msgIn 0.4s ease-out backwards;
}
.tg-msg.bot {
  align-self: flex-start;
  background: #182533;
  color: #E8EEF5;
  border-bottom-left-radius: 4px;
}
.tg-msg.me {
  align-self: flex-end;
  background: #2B5278;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.tg-msg .em { color: #6AB7FF; font-weight: 600; }
.tg-msg-time { font-size: 10px; opacity: 0.6; margin-top: 4px; display: block; }

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

.tg-input {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #182533;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  color: #5D7080;
}

/* Poster mockup */
.poster-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.poster-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.poster-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}
.poster-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--accent-mint-soft); color: #047857;
  font-size: 11px; font-weight: 700;
}
[data-theme="dark"] .poster-status { color: var(--accent-mint); }
.poster-status .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-mint);
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.poster-text {
  background: var(--bg);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
  min-height: 60px;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.poster-grp {
  display: flex; align-items: center; gap: 8px;
  padding: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.poster-grp.sent { border-color: var(--accent-mint); background: var(--accent-mint-soft); }
.poster-grp.sending {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.poster-grp.sending::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.2), transparent);
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
.poster-grp .grp-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: grid; place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}

.poster-bar {
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.poster-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-pink), var(--primary));
  border-radius: 999px;
  width: 0;
  animation: fill 4s ease-in-out infinite;
}
@keyframes fill {
  0% { width: 0; }
  60% { width: 78%; }
  100% { width: 78%; }
}
.poster-bar-label {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--ink-mute);
  margin-top: 6px; font-weight: 600;
}

/* ChatBot mockup */
.fb-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.fb-post {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}
.fb-post-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.fb-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1877F2, #A78BFA);
}
.fb-page-name { font-weight: 800; font-size: 14px; font-family: var(--font-display); }
.fb-meta { font-size: 11px; color: var(--ink-mute); font-weight: 600; }
.fb-post-body { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

.fb-comments { padding: 16px; }
.fb-comment {
  display: flex; gap: 10px;
  margin-bottom: 14px;
  animation: msgIn 0.4s ease-out backwards;
}
.fb-comment .ava {
  width: 30px; height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent-yellow);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800; color: var(--ink);
}
.fb-comment.bot .ava {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  color: #fff;
}
.fb-bubble {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
}
.fb-bubble strong { font-family: var(--font-display); display: block; font-size: 12px; margin-bottom: 2px; }
.fb-comment.bot .fb-bubble {
  background: var(--accent-violet-soft);
  border-color: transparent;
}
.fb-typing {
  display: inline-flex; gap: 3px; padding: 4px 0;
}
.fb-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-violet);
  animation: typing 1.4s infinite;
}
.fb-typing span:nth-child(2) { animation-delay: 0.2s; }
.fb-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ========== Floating sticker decorations ========== */

.sticker {
  position: absolute;
  font-size: 28px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
  z-index: 2;
}
.sticker-1 { top: 30px; right: 30px; animation: spin 8s linear infinite; }
.sticker-2 { bottom: 40px; left: 30px; animation: bob 4s ease-in-out infinite; }
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* ========== How it works ========== */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .how-grid { grid-template-columns: 1fr; }
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform 0.3s;
}
.step:hover { transform: translateY(-4px); }
.step-num {
  position: absolute;
  top: -16px;
  right: 24px;
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  transform: rotate(-6deg);
}
.step:nth-child(1) .step-num { background: var(--primary); }
.step:nth-child(2) .step-num { background: var(--accent-pink); }
.step:nth-child(3) .step-num { background: var(--accent-violet); }

.step h4 {
  font-size: 19px;
  margin: 12px 0 8px;
}
.step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ========== CTA strip ========== */

.cta-strip {
  background: linear-gradient(135deg, var(--ink) 0%, #1a3a5c 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 60px 0;
}
@media (max-width: 760px) {
  .cta-strip { grid-template-columns: 1fr; padding: 40px 28px; }
}
.cta-strip::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--accent-yellow);
  opacity: 0.15;
  top: -100px; left: -80px;
  filter: blur(40px);
}
.cta-strip::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--accent-pink);
  opacity: 0.18;
  bottom: -100px; right: -60px;
  filter: blur(40px);
}
.cta-strip h3 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 14px;
  position: relative;
}
.cta-strip p {
  color: #B8C5D6;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
}
.cta-strip .cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  position: relative;
  justify-self: end;
}
@media (max-width: 760px) {
  .cta-strip .cta-actions { justify-self: start; }
}

/* ========== Footer ========== */

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--ink-mute);
  font-size: 13px;
  font-weight: 500;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--ink); }

/* ========== Float WA button ========== */

.float-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: grid; place-items: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: ring 2s infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
