/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Tajawal', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1A1A1A;
  background: #FEFEFE;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* space for sticky mobile CTA */
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }

/* ============ VARIABLES ============ */
:root {
  --purple: #6B1A5C;
  --purple-light: #8B2178;
  --purple-deep: #4A1240;
  --amber: #F5A623;
  --amber-dark: #E89512;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --ink: #1A1A1A;
  --ink-2: #4A4A4A;
  --ink-3: #6B6B6B;
  --bg-soft: #F8F5F7;
  --bg-warm: #FDF7EE;
  --border: #E8E4E6;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(107,26,92,.06);
  --shadow-md: 0 8px 24px rgba(107,26,92,.10);
  --shadow-lg: 0 20px 48px rgba(107,26,92,.14);
  --radius: 14px;
  --radius-lg: 22px;
}

/* ============ CONTAINER ============ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; font-size: 15px; color: var(--purple); letter-spacing: .3px; }
.brand-tag { font-size: 11px; color: var(--ink-3); font-weight: 500; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--whatsapp-dark);
  padding: 8px 12px;
  border-radius: 999px;
  background: #E7F8ED;
  border: 1px solid #C7EED4;
}
.header-phone svg { width: 16px; height: 16px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 40px 0 32px;
  background:
    radial-gradient(ellipse 80% 60% at 90% 0%, rgba(245,166,35,.18) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 10% 100%, rgba(107,26,92,.14) 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FDFAFC 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,166,35,.25) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(107,26,92,.08);
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(107,26,92,.15);
}
.eyebrow .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  margin-left: 6px;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .5; }
}
.hero h1 {
  font-size: clamp(28px, 6.2vw, 48px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--purple);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px; right: 0; left: 0;
  height: 10px;
  background: rgba(245,166,35,.35);
  z-index: -1;
  border-radius: 4px;
}
.hero-sub {
  font-size: clamp(16px, 3.6vw, 20px);
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto 28px;
  font-weight: 500;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(37,211,102,.35), inset 0 -3px 0 rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
  min-width: 280px;
  min-height: 56px;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37,211,102,.42); }
.btn-whatsapp:active { transform: translateY(1px); }
.btn-whatsapp svg { width: 24px; height: 24px; fill: #fff; }

.btn-note {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}
.btn-note strong { color: var(--purple); }

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 640px;
  margin: 32px auto 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.trust-item {
  text-align: center;
  padding: 4px 6px;
}
.trust-num {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-num .plus { color: var(--amber); }
.trust-label {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
  line-height: 1.3;
}

/* Hero mockup */
.hero-mockup {
  margin-top: 36px;
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}
.mockup-card {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mockup-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, rgba(245,166,35,.4) 0%, transparent 70%);
  filter: blur(20px);
}
.mockup-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  opacity: .9;
}
.mockup-brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.mockup-title {
  position: relative;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  line-height: 1.2;
  margin-top: auto;
  margin-bottom: 8px;
}
.mockup-sub {
  position: relative;
  font-size: 14px;
  opacity: .8;
}
.mockup-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--amber);
  color: var(--purple-deep);
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: .5px;
}
.mockup-tag {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 10px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 8px;
  opacity: .6;
}

/* ============ SECTION BASE ============ */
section { padding: 56px 0; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.4px;
  text-wrap: balance;
}
.section-title .highlight { color: var(--purple); }
.section-sub {
  font-size: clamp(15px, 3.5vw, 18px);
  color: var(--ink-2);
  text-wrap: pretty;
}

/* ============ PAIN SECTION ============ */
.pain {
  background: var(--bg-soft);
  position: relative;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.pain-item {
  background: #fff;
  padding: 20px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--border);
  border-right: 4px solid var(--purple);
  box-shadow: var(--shadow-sm);
}
.pain-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #FCE8E8;
  color: #C93737;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}
.pain-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}

/* ============ SOLUTION SECTION ============ */
.solution {
  background: #fff;
  text-align: center;
}
.solution-lead {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: clamp(16px, 3.5vw, 20px);
  color: var(--ink-2);
  line-height: 1.75;
}
.solution-lead strong { color: var(--purple); font-weight: 800; }

/* ============ SERVICES GRID ============ */
.services {
  background: var(--bg-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
}
.service-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

/* ============ PROCESS SECTION ============ */
.process {
  background: #fff;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  counter-reset: step;
}
.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid #F3E4CB;
  position: relative;
}
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amber);
  color: var(--purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(245,166,35,.35);
}
.step-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.step-body p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ============ WHY US SECTION ============ */
.why-us {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,.2) 0%, transparent 60%);
  filter: blur(40px);
}
.why-us .section-title { color: #fff; }
.why-us .section-sub { color: rgba(255,255,255,.85); }
.why-us .section-eyebrow { color: var(--amber); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 24px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.why-card-num {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}
.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

/* TikTok badge special */
.tiktok-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  margin-top: 20px;
}
.tiktok-badge .tt-icon {
  width: 20px; height: 20px;
  background: #000;
  color: #fff;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.testimonial {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  color: var(--amber);
  opacity: .3;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 16px;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}
.author-info h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
}
.author-info span {
  font-size: 12px;
  color: var(--ink-3);
}
.stars {
  color: var(--amber);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.placeholder-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 16px;
  padding: 8px 12px;
  background: var(--bg-warm);
  border-radius: 8px;
  display: inline-block;
  font-family: 'SF Mono', Menlo, monospace;
}

/* ============ OFFER SECTION ============ */
.offer {
  background: linear-gradient(135deg, #FDF7EE 0%, #FCEEDA 100%);
  position: relative;
  overflow: hidden;
}
.offer-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--amber);
  position: relative;
}
.offer-ribbon {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--purple);
  color: #fff;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
}
.offer-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  color: var(--ink);
  margin: 12px 0 12px;
  line-height: 1.3;
}
.offer-title .highlight { color: var(--purple); }
.offer-price {
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 900;
  color: var(--amber-dark);
  line-height: 1;
  margin: 16px 0 8px;
}
.offer-price small {
  font-size: 16px;
  color: var(--ink-3);
  font-weight: 600;
  display: block;
  margin-top: 6px;
}
.offer-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: right;
  max-width: 400px;
  margin-inline: auto;
}
.offer-features li {
  padding: 10px 0;
  padding-right: 32px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--border);
}
.offer-features li:last-child { border-bottom: none; }
.offer-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.urgency-note {
  background: #FFF4E4;
  border: 1px dashed var(--amber-dark);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--amber-dark);
  font-weight: 700;
  margin: 20px 0;
}
.urgency-note svg { width: 18px; height: 18px; vertical-align: -3px; margin-left: 4px; }

/* ============ FAQ ============ */
.faq {
  background: #fff;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--purple); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--purple);
  color: #fff;
}
.faq-answer {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background:
    radial-gradient(ellipse at top right, rgba(245,166,35,.3) 0%, transparent 50%),
    linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
  color: #fff;
  text-align: center;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-size: clamp(26px, 6vw, 42px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
  text-wrap: balance;
}
.final-cta h2 span { color: var(--amber); }
.final-cta p {
  font-size: clamp(16px, 3.5vw, 20px);
  color: rgba(255,255,255,.9);
  max-width: 560px;
  margin: 0 auto 32px;
  text-wrap: pretty;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #0F0910;
  color: rgba(255,255,255,.7);
  padding: 40px 0 24px;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 44px; height: 44px; }
.footer-brand-text { text-align: right; }
.footer-brand-name { font-size: 16px; font-weight: 800; color: #fff; }
.footer-brand-tag { font-size: 12px; opacity: .7; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-contact a {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.social-link:hover { background: var(--purple); }
.social-link svg { width: 20px; height: 20px; fill: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  margin-top: 8px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  opacity: .5;
}
.footer-links a { margin: 0 8px; opacity: .8; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }

/* ============ FLOATING WHATSAPP BUTTON ============ */
.wa-float {
  position: fixed;
  bottom: 88px;
  left: 16px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37,211,102,.5);
  animation: float-pulse 2.4s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 20px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}
.sticky-cta .btn-whatsapp {
  width: 100%;
  min-width: 0;
  font-size: 16px;
  padding: 14px 20px;
  min-height: 52px;
}

/* ============ DESKTOP (>= 768px) ============ */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .sticky-cta { display: none; }
  .wa-float { bottom: 24px; left: 24px; width: 64px; height: 64px; }
  .wa-float svg { width: 34px; height: 34px; }

  section { padding: 80px 0; }
  .hero { padding: 60px 0 48px; }

  .hero-content {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
    text-align: right;
  }
  .hero-cta { align-items: flex-start; }
  .hero-mockup { margin: 0; max-width: 100%; }
  .trust-bar { grid-column: 1 / -1; }

  .pain-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 52px; }
}

/* ============ THANK YOU PAGE ============ */
.ty-body {
  font-family: 'Tajawal', system-ui, sans-serif;
  background: linear-gradient(135deg, #4A1240 0%, #6B1A5C 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
  text-align: center;
}
.ty-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 48px 32px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.check-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1s ease;
}
.check-circle svg { width: 46px; height: 46px; fill: #fff; }
@keyframes bounce {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.ty-card h1 {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
}
.ty-card h1 span { color: #F5A623; }
.ty-card p {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 24px;
}
.next-steps {
  background: rgba(0,0,0,.15);
  border-radius: 14px;
  padding: 20px;
  margin: 24px 0;
  text-align: right;
}
.next-steps h3 {
  font-size: 15px;
  color: #F5A623;
  margin-bottom: 12px;
  font-weight: 800;
}
.next-steps ol {
  padding-right: 20px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.9;
}
.ty-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37,211,102,.4);
  transition: transform .15s ease;
}
.ty-btn:hover { transform: translateY(-2px); }
.ty-btn svg { width: 22px; height: 22px; fill: #fff; }
.contact-line {
  margin-top: 24px;
  font-size: 14px;
  opacity: .7;
}
.contact-line a { color: #F5A623; font-weight: 700; text-decoration: none; }

/* Print-blocking motion for users who prefer reduced */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
