/* ===========================
   TOKENS & RESET
=========================== */
:root {
  --pink: #8b2fc9; /* Everest brand purple-pink */
  --pink-light: #b45fe8;
  --pink-pale: #f3e8ff;
  --pink-mid: #d4aaff;
  --green: #00dc82;
  --green-dark: #009b68;
  --green-pale: #e8fff5;
  --dark: #0e0b1a;
  --mid: #3d3550;
  --muted: #6b6480;
  --border: #e8e0f5;
  --white: #ffffff;
  --off-white: #fafbff;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 14px rgba(139, 47, 201, 0.1);
  --shadow-md: 0 12px 32px rgba(139, 47, 201, 0.14);
  --shadow-lg: 0 24px 56px rgba(139, 47, 201, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Cairo", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}
.center {
  text-align: center;
}

/* ===========================
   SECTION LABELS
=========================== */
.section-label {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink);
  padding: 5px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header {
  margin-bottom: 52px;
}

/* ===========================
   TYPOGRAPHY SCALE
=========================== */
h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 18px;
}
h3 {
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 800;
}

.highlight {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-weight: 900;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(139, 47, 201, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(139, 47, 201, 0.38);
}
.btn.small {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.btn.ghost {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  box-shadow: none;
}
.btn.ghost:hover {
  background: var(--pink-pale);
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(139, 47, 201, 0.08);
  z-index: 100;
}

.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 900;
  color: var(--pink);
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}
.logo-mark.small {
  width: 32px;
  height: 32px;
  font-size: 16px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 15px;
}

.nav-links > a {
  position: relative;
  white-space: nowrap;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links > a:hover,
.nav-links > a.active {
  color: var(--pink);
}
.nav-links > a.active::after {
  content: "";
  position: absolute;
  bottom: -24px;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink-pale);
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-icon svg {
  width: 16px;
  height: 16px;
}
.social-icon:hover {
  background: var(--pink);
  color: #fff;
}

.lang {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 4px 12px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.lang:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.menu-btn,
.close-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 6px;
}
.menu-btn svg,
.close-btn svg {
  width: 28px;
  height: 28px;
}

/* ===========================
   HERO
=========================== */
.hero {
  padding-top: 100px;
  background: linear-gradient(
    160deg,
    #fff 0%,
    var(--pink-pale) 60%,
    #edf9ff 100%
  );
  overflow: hidden;
  max-width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-bottom: 60px;
  max-width: 100%;
}

.badge {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink);
  padding: 7px 20px;
  border-radius: 99px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 18px;
  border: 1px solid var(--pink-mid);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 8px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat {
  text-align: center;
}
.stat b {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--pink);
}
.stat span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.phone-mockup {
  background: white;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  width: 320px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.phone-header {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.phone-avatar {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}
.phone-name {
  font-weight: 800;
  font-size: 15px;
}
.phone-status {
  font-size: 11px;
  opacity: 0.85;
}
.phone-messages {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f5f5f5;
  min-height: 220px;
}
.msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.msg.incoming {
  background: white;
  align-self: flex-start;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.msg.outgoing {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  color: white;
  align-self: flex-end;
  border-bottom-left-radius: 4px;
}
.msg-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.msg-options button {
  background: white;
  border: 1.5px solid var(--pink);
  color: var(--pink);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: default;
  font-family: inherit;
}

.chat-bubble {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 9px 16px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.bubble-1 {
  top: 8%;
  right: 4%;
}
.bubble-2 {
  top: 42%;
  left: 4%;
}
.bubble-3 {
  bottom: 12%;
  right: 4%;
}

/* ===========================
   INTRO
=========================== */
.intro {
  background: var(--off-white);
  padding: 70px 0;
}
.intro h2,
.intro p {
  max-width: 680px;
  margin-inline: auto;
}
.intro p {
  font-size: 18px;
  color: var(--muted);
  margin-top: 12px;
}

.partner-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 44px;
  font-size: 22px;
  font-weight: 900;
  color: var(--mid);
  background: white;
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}
.partner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
}

/* ===========================
   FEATURES
=========================== */
.features {
  background: var(--white);
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-card .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
}
.feature-card .icon svg {
  width: 36px;
  height: 36px;
}

.feature-card.blue .icon {
  background: #e0f4ff;
  color: #0094cc;
}
.feature-card.green .icon {
  background: var(--green-pale);
  color: var(--green-dark);
}
.feature-card.pink .icon {
  background: var(--pink-pale);
  color: var(--pink);
}
.feature-card p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 8px;
}

/* Chatbot flow visual */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.light-box {
  background: linear-gradient(135deg, var(--pink-pale) 0%, #edf9ff 100%);
  border-radius: var(--radius-lg);
  padding: 52px;
  border: 1px solid var(--border);
}

.chatbot-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.flow-node {
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 15px;
  text-align: center;
}
.flow-node.root {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  color: white;
  box-shadow: var(--shadow-sm);
  width: 180px;
}
.flow-branches {
  display: flex;
  gap: 12px;
}
.flow-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.flow-line {
  width: 2px;
  height: 24px;
  background: var(--pink-mid);
}
.flow-node.branch {
  background: white;
  border: 2px solid var(--border);
  color: var(--mid);
  font-size: 14px;
  padding: 10px 16px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.flow-node.branch.active {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-pale);
}
.flow-badge {
  background: var(--green);
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 18px;
  border-radius: 99px;
  margin-top: 8px;
}

.check-list {
  margin-top: 16px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 17px;
  color: var(--mid);
}
.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  background: var(--pink);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ===========================
   CLIENTS
=========================== */
.clients {
  background: var(--pink-pale);
}
.clients h2,
.clients p {
  max-width: 600px;
  margin-inline: auto;
}
.clients p {
  color: var(--muted);
  font-size: 18px;
}

.client-logos {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.client-logos span {
  font-size: 20px;
  font-weight: 900;
  color: var(--pink);
  background: white;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--pink-mid);
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.testimonial {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: right;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 12px;
}
.testimonial p {
  font-size: 16px;
  color: var(--mid);
  font-style: italic;
}
.testimonial b {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--pink);
}

/* ===========================
   WORKFLOW
=========================== */
.workflow {
  background: var(--off-white);
}

/* Inbox visual */
.inbox-visual {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.inbox-header {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  color: white;
  padding: 16px 20px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inbox-badge {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  padding: 3px 12px;
  font-size: 13px;
}
.inbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.inbox-item.active {
  background: var(--pink-pale);
}
.inbox-item:last-of-type {
  border-bottom: none;
}
.inbox-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 16px;
}
.inbox-avatar.s {
  background: #0094cc;
}
.inbox-avatar.m {
  background: var(--green-dark);
}
.inbox-name {
  font-weight: 800;
  font-size: 14px;
}
.inbox-preview {
  font-size: 12px;
  color: var(--muted);
}
.inbox-tag {
  margin-right: auto;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
}
.inbox-tag.sales {
  background: var(--pink-pale);
  color: var(--pink);
}
.inbox-tag.support {
  background: #e0f4ff;
  color: #0094cc;
}
.inbox-tag.done {
  background: var(--green-pale);
  color: var(--green-dark);
}

.inbox-stats {
  display: flex;
  justify-content: space-around;
  padding: 16px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.istat {
  text-align: center;
}
.istat b {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--pink);
}
.istat span {
  font-size: 12px;
  color: var(--muted);
}

/* ===========================
   VIDEO
=========================== */
.video-section {
  background: white;
}
.video-section h2,
.video-section p {
  max-width: 650px;
  margin-inline: auto;
}
.video-section p {
  color: var(--muted);
  font-size: 18px;
}

.video-box {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(
    135deg,
    var(--pink) 0%,
    var(--pink-light) 60%,
    #0094cc 100%
  );
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: white;
  cursor: pointer;
}
.video-placeholder svg {
  width: 72px;
  height: 72px;
  opacity: 0.9;
}
.video-placeholder span {
  font-size: 18px;
  font-weight: 800;
}

/* ===========================
   APP
=========================== */
.app-section {
  background: var(--pink-pale);
}
.app-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.app-section p {
  font-size: 18px;
  color: var(--muted);
}

.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.store-btn {
  background: var(--dark);
  color: white;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}
.store-btn:hover {
  background: var(--pink);
}
.store-btn svg {
  width: 22px;
  height: 22px;
}
.store-btn small {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.8;
}
.store-btn b {
  font-size: 15px;
}

.app-visual {
  display: flex;
  justify-content: center;
}
.app-screen {
  background: linear-gradient(160deg, var(--pink) 0%, var(--pink-light) 100%);
  border-radius: 28px;
  padding: 28px;
  width: 260px;
  box-shadow: var(--shadow-lg);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app-top-bar {
  font-weight: 900;
  font-size: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.app-metric {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
}
.app-metric b {
  font-size: 26px;
  font-weight: 900;
}
.app-metric span {
  font-size: 12px;
  opacity: 0.8;
}
.app-metric.green {
  background: rgba(0, 220, 130, 0.2);
}
.app-metric.pink {
  background: rgba(255, 255, 255, 0.12);
}

/* ===========================
   PRICING
=========================== */
.pricing {
  background: var(--white);
}
.pricing h2,
.pricing > .container > p {
  max-width: 640px;
  margin-inline: auto;
}
.pricing > .container > p {
  color: var(--muted);
  font-size: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.price-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.price-card:nth-child(1) {
  background: #fff8f0;
  border-color: #ffd9a0;
}
.price-card:nth-child(2) {
  background: var(--pink-pale);
  border-color: var(--pink-mid);
}
.price-card:nth-child(3) {
  background: var(--green-pale);
  border-color: #a0f0cc;
}
.price-card:nth-child(4) {
  background: #f0efff;
  border-color: #c4c0f5;
}

.price-card.popular {
  border-width: 2.5px;
  border-color: var(--pink);
}
.popular-label {
  position: absolute;
  top: -13px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  color: white;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

.price-icon {
  font-size: 32px;
}
.price-card h3 {
  font-size: 20px;
}
.price-card > p {
  font-size: 15px;
  color: var(--muted);
}
.price-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--pink);
  margin: 4px 0;
}
.price-num small {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.price-features li {
  font-size: 14px;
  color: var(--mid);
  font-weight: 700;
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ===========================
   FAQ
=========================== */
.faq {
  background: var(--off-white);
}

.faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  background: white;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item button {
  width: 100%;
  background: white;
  border: 0;
  padding: 20px 24px;
  text-align: right;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  transition: background 0.2s;
}
.faq-item button svg {
  width: 20px;
  height: 20px;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open button {
  background: var(--pink-pale);
}
.faq-item.open button svg {
  transform: rotate(45deg);
}
.faq-item p {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.faq-item.open p {
  display: block;
}

/* ===========================
   LEAD FORM
=========================== */
.lead-form-section {
  background: linear-gradient(160deg, var(--pink-pale) 0%, #edf9ff 100%);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.form-wrapper h2 {
  margin-top: 16px;
}
.form-wrapper > div > p {
  font-size: 17px;
  color: var(--muted);
  margin-top: 8px;
}

.lead-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--mid);
}
.perk svg {
  width: 20px;
  height: 20px;
  color: var(--pink);
}

.lead-form {
  background: white;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  transition: border-color 0.2s;
}
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.lead-form textarea {
  min-height: 110px;
  resize: vertical;
}
.form-message {
  font-weight: 900;
  color: var(--green-dark);
  font-size: 15px;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.contact-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.city-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #8b2fc9;
  position: relative;
}
.city-overlay {
  position: absolute;
  bottom: 14px;
  right: 16px;
  background: rgba(139, 47, 201, 0.85);
  color: white;
  font-weight: 900;
  font-size: 22px;
  padding: 6px 18px;
  border-radius: 99px;
}
.contact-info {
  padding: 22px 22px 26px;
}
.contact-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.contact-info p,
.contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-info svg {
  width: 16px;
  height: 16px;
  color: var(--pink);
  flex-shrink: 0;
}
.contact-info a {
  color: var(--pink);
  font-weight: 800;
  margin-top: 4px;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* ===========================
   FLOATING BUTTONS
=========================== */
.whatsapp {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.38);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: transform 0.2s;
}
.whatsapp:hover {
  transform: translateY(-2px);
}

.to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--pink);
  color: white;
  border-radius: 12px;
  cursor: pointer;
  display: none;
  place-items: center;
  box-shadow: var(--shadow-sm);
  z-index: 50;
  transition: background 0.2s;
}
.to-top.show {
  display: grid;
}
.to-top svg {
  width: 24px;
  height: 24px;
}
.to-top:hover {
  background: var(--pink-light);
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--dark);
  color: #d4c8f0;
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  row-gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 14px;
  color: #a0918c;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--pink-light);
}
.footer-social {
  display: flex;
  gap: 10px;
  direction: ltr;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #d4c8f0;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}
.footer-social a:hover {
  background: var(--pink);
  color: white;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  /* Navbar */
  .menu-btn {
    display: flex;
  }
  .close-btn {
    display: flex;
    align-self: flex-end;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 28px 40px;
    gap: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
    box-shadow: -4px 0 30px rgba(139, 47, 201, 0.15);
    display: flex !important;
  }
  .nav-links.show {
    transform: translateX(0);
  }

  .nav-links > a.active::after {
    display: none;
  }
  .nav-links > a {
    font-size: 17px;
  }

  /* Grids → single col */
  .hero-grid,
  .split,
  .cards.three,
  .contact-grid,
  .testimonials,
  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-bottom: 40px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text p {
    max-width: 100%;
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 20px;
  }
  .bubble-1,
  .bubble-2,
  .bubble-3 {
    display: none;
  }

  .light-box {
    padding: 28px;
  }
  .light-box .split {
    gap: 32px;
  }

  .app-box {
    padding: 28px;
  }
  .app-visual {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  footer {
    padding-bottom: 90px;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }

  .price-card.popular {
    transform: none;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .store-buttons {
    flex-direction: column;
  }
  .hero-stats {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .client-logos {
    gap: 14px;
  }
  .client-logos span {
    font-size: 16px;
    padding: 8px 16px;
  }
  .phone-mockup {
    width: 100%;
    max-width: 300px;
  }
  .partner-card {
    padding: 16px 24px;
    font-size: 18px;
  }
}

/* Mobile whatsapp button fix */
@media (max-width: 600px) {
  .whatsapp {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }
  .to-top {
    bottom: 16px;
    right: 16px;
  }
}
/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 11, 26, 0.45);
  z-index: 150; /* ← change this from 199 to 150 */
  backdrop-filter: blur(2px);
}
