/* ============================================
   CAMÉLIA — RTL Landing Page Styles v2
   Mobile-first · Arabic RTL · Vanilla CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ---- Custom heading font ---- */
@font-face {
  font-family: 'UkijSulus';
  src: url('../fonts/ukij-sulus-tom.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Design tokens ---- */
:root {
  --color-bg:         #F9F5EE;
  --color-surface:    #FFFFFF;
  --color-gold:       #C9A84C;
  --color-gold-light: #E8D5A3;
  --color-gold-dark:  #A8872A;
  --color-dark:       #1A1A1A;
  --color-text:       #2D2D2D;
  --color-muted:      #7A7060;
  --color-accent:     #F0E8D0;
  --color-cta:        #C9A84C;
  --color-cta-hover:  #B8922E;

  /* Selection green */
  --color-green:      #1A8754;
  --color-green-bg:   #EDFAF4;
  --color-green-border:#1A8754;

  --color-topbar:    #111111;

  --radius-card:  16px;
  --radius-btn:   12px;
  --radius-badge:  8px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.13);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.30);

  --font-body:    'Cairo', sans-serif;
  --font-heading: 'UkijSulus', 'Cairo', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; direction: rtl; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
:target { scroll-margin-top: 56px; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-topbar);
  color: #fff;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.9;
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E8453C;
  animation: pulse-red 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,69,60,0.55); }
  50%      { box-shadow: 0 0 0 7px rgba(232,69,60,0); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 46px;
  background: var(--color-bg);
}

.hero-inner {
  display: flex;
  flex-direction: column;
}

/* ---- Image column ---- */
.hero-image-col {
  width: 100%;
  min-height: 360px;
  background: linear-gradient(150deg, #EDE0C8 0%, #F5EDDA 55%, #E3D4B0 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Subtle Moroccan arch decoration */
.hero-image-col::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 280px;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  background: rgba(201,168,76,0.07);
  pointer-events: none;
}

.hero-image-placeholder {
  width: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--color-muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

/* TODO: replace this div with <img src="assets/images/hero.jpg" alt="..." /> */
.hero-img-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
}

.hero-img-icon svg { width: 36px; height: 36px; }

.hero-image-label {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-muted);
}

.hero-trust-badges {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.trust-badge-img {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(201,168,76,0.45);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 800;
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
}

.trust-badge-img svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ---- Text column ---- */
.hero-text-col {
  padding: 30px 22px 42px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
  background: rgba(201,168,76,0.06);
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400; /* UkijSulus looks best at regular weight */
  line-height: 1.45;
  color: var(--color-dark);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.hero-h1 .gold { color: var(--color-gold); }

.hero-subtext {
  font-size: 14.5px;
  color: var(--color-muted);
  margin-bottom: 22px;
  line-height: 1.85;
}

/* Desktop: 2x2 grid · Mobile: 2x2 grid */
.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 22px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; }

.social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--color-muted);
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--color-surface);
  border-radius: 10px;
  border: 1px solid #EDE5D8;
}

.stars { color: #F5A623; letter-spacing: 1px; font-size: 14px; }

.pricing-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.price-old {
  text-decoration: line-through;
  color: var(--color-muted);
  font-size: 16px;
}

.price-new {
  font-size: 46px;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
  letter-spacing: -1px;
}

.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-muted);
  align-self: flex-end;
  padding-bottom: 4px;
}

.savings-badge {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #fff;
  border-radius: var(--radius-badge);
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  align-self: center;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #D4AF52, var(--color-gold), #B8922E);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #1A1A1A;
  border: none;
  border-radius: var(--radius-btn);
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: background-position 0.4s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.3px;
  text-decoration: none;
}

.btn-cta:hover, .btn-cta:focus {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
  outline: none;
}

.btn-cta:active { transform: translateY(0); }

.btn-cta.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   OFFERS SECTION
   ============================================ */
.offers-section {
  padding: 52px 20px;
  background: var(--color-bg);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

/* ---- Offer card ---- */
.offer-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 2px solid #EDE5D8;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.offer-card:hover {
  border-color: #D0C5A8;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* --- Selected state: GREEN --- */
.offer-card.selected {
  border-color: var(--color-green-border);
  box-shadow: 0 0 0 3px rgba(26,135,84,0.14), var(--shadow-md);
  transform: translateY(-2px);
}

.offer-card.featured {
  background: linear-gradient(160deg, #FFFDF7 0%, #FFF9EE 100%);
}

.offer-card.featured.selected {
  background: linear-gradient(160deg, #F2FDF7 0%, #E8FAF1 100%);
}

/* Featured badge (top banner) */
.card-featured-badge {
  background: linear-gradient(90deg, #56C94C, #B1D452);  color: #1A1A1A;
  padding: 8px 20px;
  font-size: 12.5px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.3px;
}

/* Card inner padding wrapper */
.card-inner {
  padding: 18px 18px 20px;
}

/* Radio indicator */
.card-radio-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-dark);
  flex: 1;
}

.card-radio {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #D0C5A8;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.offer-card.selected .card-radio {
  border-color: var(--color-green);
  background: var(--color-green);
}

.card-radio-check {
  display: none;
}

.offer-card.selected .card-radio-check {
  display: block;
  width: 10px; height: 10px;
  color: #fff;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.card-price-new {
  font-size: 30px;
  font-weight: 900;
  color: var(--color-dark);
  letter-spacing: -0.5px;
}

.card-price-old {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--color-muted);
}

/* Image placeholder */
.card-image-placeholder {
  width: 100%;
  height: 130px;
  background: linear-gradient(135deg, #EDE0C8 0%, #F5EDDA 100%);
  border-radius: 10px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 500;
  /* TODO: replace with <img src="assets/images/pack-N.jpg" alt="..." /> */
}

.card-image-placeholder svg { width: 28px; height: 28px; opacity: 0.45; }

.card-products {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-products li {
  font-size: 13px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 7px;
}

.card-products li svg {
  width: 13px; height: 13px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.card-gift {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-green);
  font-weight: 700;
  background: var(--color-green-bg);
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.card-gift svg { width: 14px; height: 14px; flex-shrink: 0; }

.card-desc {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 12px;
  line-height: 1.65;
}

.card-savings {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FFF3E0;
  color: #C04B00;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 800;
}

/* Selected card bottom bar — push card-inner down so content isn't covered */
.offer-card.selected .card-inner {
  padding-bottom: 46px;
}

.offer-card.selected::after {
  content: '✓ تم الاختيار';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--color-green);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 6px;
  letter-spacing: 0.3px;
  font-family: var(--font-body);
}

/* ============================================
   ORDER FORM SECTION
   ============================================ */
.order-section {
  padding: 52px 20px;
  background: linear-gradient(180deg, var(--color-bg) 0%, #F0E8D5 100%);
}

.order-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 32px 24px;
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid #EDE5D8;
}

.order-section .section-title {
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 1.6;
}

.order-section .section-subtitle {
  margin-bottom: 24px;
}

.form-group { margin-bottom: 14px; }

.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-muted);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}

.form-input-wrap {
  position: relative;
}

.form-input-wrap .input-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: #C0B8A8;
  pointer-events: none;
}

.form-input {
  width: 100%;
  background: #FDFAF5;
  border: 1.5px solid #E0D8CC;
  border-radius: 10px;
  padding: 13px 40px 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  direction: rtl;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}

/* ---- Pack select (disabled, synced with offer cards) ---- */
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  cursor: not-allowed;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C0B8A8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 13px center;
  padding-left: 36px;
  color: var(--color-text);
  font-weight: 700;
  background-color: #F5F0E8;
  border-color: #D8CEB8;
}

select.form-input:disabled { opacity: 1; }

/* Tooltip wrapper */
.pack-select-wrap {
  position: relative;
}

.pack-select-wrap::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  right: 50%;
  transform: translateX(50%);
  background: #1A1A1A;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(50%) translateY(4px);
  z-index: 10;
  font-family: var(--font-body);
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.pack-select-wrap::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  right: 50%;
  transform: translateX(50%);
  border: 6px solid transparent;
  border-top-color: #1A1A1A;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.pack-select-wrap:hover::after {
  opacity: 1;
  transform: translateX(50%) translateY(0);
}

.pack-select-wrap:hover::before { opacity: 1; }

.form-input::placeholder { color: #C0B8A8; font-size: 14px; }

.form-input:focus {
  border-color: var(--color-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.delivery-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--color-muted);
  margin-bottom: 20px;
  padding: 9px 14px;
  background: #FFF8EC;
  border-radius: 8px;
  border-right: 3px solid var(--color-gold);
}

.delivery-note svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--color-gold); }

.form-trust {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  background: #F7FAF8;
  border-radius: 10px;
  border: 1px solid #D8EEE3;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.7;
}

.form-trust svg { width: 18px; height: 18px; color: var(--color-green); flex-shrink: 0; margin-top: 2px; }

/* ============================================
   TRUST BADGES SECTION
   ============================================ */
.trust-section {
  padding: 44px 20px;
  background: var(--color-surface);
  border-top: 1px solid #EDE5D8;
  border-bottom: 1px solid #EDE5D8;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  max-width: 560px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  border-radius: var(--radius-card);
  background: var(--color-bg);
  border: 1px solid #EDE5D8;
  transition: box-shadow 0.2s, transform 0.2s;
}

.trust-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.trust-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
}

.trust-icon-wrap svg { width: 24px; height: 24px; color: var(--color-gold); }

.trust-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 52px 20px;
  background: var(--color-bg);
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #EDE5D8;
}

.testimonial-top-bar {
  height: 4px;
  background: linear-gradient(90deg, #25D366, #128C7E);
}

.testimonial-body { padding: 18px 18px 20px; }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-dark);
}

.testimonial-stars {
  color: #F5A623;
  font-size: 12px;
  margin-top: 1px;
  letter-spacing: 1px;
}

.testimonial-bubble {
  background: #F0FBF3;
  border-radius: 4px 12px 12px 12px;
  padding: 13px 15px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  position: relative;
  border: 1px solid #D5EDDC;
}

.testimonial-bubble::before {
  content: '';
  position: absolute;
  top: 0; right: -7px;
  border: 7px solid transparent;
  border-right: none;
  border-top-color: #D5EDDC;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 52px 20px;
  background: var(--color-surface);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1.5px solid #EDE5D8;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--color-gold); }

.faq-arrow {
  width: 18px; height: 18px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.85;
  padding-top: 2px;
  border-top: 1px solid #EDE5D8;
  padding-top: 12px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
  padding: 64px 24px;
  background: linear-gradient(170deg, #111111 0%, #1A1A1A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-heading {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 14px;
  position: relative;
}

.final-cta-sub {
  font-size: 15px;
  color: #B0A898;
  margin-bottom: 36px;
  line-height: 1.9;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.final-cta-section .btn-cta {
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0F0F0F;
  color: #666;
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.footer-copy {
  color: #555;
  font-size: 12.5px;
  margin-bottom: 14px;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 14px auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.footer-links a {
  color: #555;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--color-gold); }

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-page {
  min-height: 100vh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  text-align: center;
}

.thankyou-icon-wrap {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EDFAF4, #C8F0DE);
  border: 3px solid var(--color-green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  animation: pop-in 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

.thankyou-icon-wrap svg {
  width: 48px; height: 48px;
  color: var(--color-green);
}

@keyframes pop-in {
  0%   { transform: scale(0.4); opacity: 0; }
  70%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

.thankyou-heading {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.thankyou-sub {
  font-size: 15.5px;
  color: var(--color-muted);
  line-height: 1.9;
  max-width: 400px;
  margin: 0 auto 36px;
}

.thankyou-page .btn-cta {
  max-width: 340px;
  margin: 0 auto;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* ============================================
   DESKTOP — 768px +
   ============================================ */
@media (min-width: 768px) {

  .topbar { padding: 0 40px; font-size: 14px; }

  /* Hero: image RIGHT (visually), text LEFT  in RTL = image-col first = right */
  .hero-inner {
    flex-direction: row-reverse;
    min-height: calc(100vh - 46px);
    align-items: stretch;
  }

  .hero-image-col {
    width: 48%;
    min-height: 560px;
  }

  .hero-image-placeholder { min-height: 560px; }

  .hero-text-col {
    width: 52%;
    padding: 52px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-h1 { font-size: 38px; }

  /* Bullets: tighter column gap on desktop */
  .hero-bullets { gap: 10px 8px; }

  /* Offers */
  .offers-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .offer-card { flex: 1; }

  .offer-card.featured {
    transform: scale(1.035) translateY(-4px);
    z-index: 2;
  }

  .offer-card.featured:hover,
  .offer-card.featured.selected {
    transform: scale(1.05) translateY(-6px);
  }

  /* Testimonials */
  .testimonials-grid { flex-direction: row; }
  .testimonial-card { flex: 1; }

  /* Trust */
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 760px;
  }

  .section-title { font-size: 26px; }

  .final-cta-heading { font-size: 42px; }
}

@media (min-width: 1024px) {
  .hero-text-col { padding: 64px 72px; }
  .hero-h1 { font-size: 44px; }

  .offers-section,
  .order-section,
  .testimonials-section,
  .faq-section,
  .trust-section { padding-left: 48px; padding-right: 48px; }
}

/* ============================================
   SECTION: pain-block
   ============================================ */
.pain-block {
  background: #FDFAF5;
  padding: 56px 24px;
  border-top: 1px solid #EDE5D8;
}

/* Two-column wrapper */
.pain-inner {
  max-width: 960px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ---- Image column ---- */
.pain-image-col {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(145deg, #EDE0C8, #F5EDDA); /* shown while image loads */
}

.pain-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-card);
}

/* Fallback state when image is missing */
.pain-image-fallback {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-image-fallback .pain-image { display: none; }

/* ---- Content column ---- */
.pain-content-col {
  flex: 1;
}

.pain-headline {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-dark);
  text-align: right;
  margin-bottom: 24px;
  line-height: 1.5;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 24px;
  margin-bottom: 20px;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text);
  padding: 9px 0;
  border-bottom: 1px solid #F0E8D8;
}

/* Remove bottom border on the last two items (last row) */
.pain-item:nth-last-child(-n+2) { border-bottom: none; }

.pain-bullet {
  color: var(--color-gold);
  font-size: 8px;
  flex-shrink: 0;
}

/* Subtitle — reads as a conclusion after the points */
.pain-sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-muted);
  text-align: right;
  padding-top: 14px;
  border-top: 1px solid #EDE5D8;
  line-height: 1.7;
}

.pain-pullquote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-gold);
  text-align: center;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 640px;
  padding: 28px 0;
  border-top: 1px solid #EDE5D8;
  border-bottom: 1px solid #EDE5D8;
  quotes: none;
}

@media (min-width: 768px) {
  /* Side-by-side: image LEFT, content RIGHT (RTL row = first child goes right) */
  .pain-inner {
    flex-direction: row;       /* RTL: first child → RIGHT, second → LEFT */
    align-items: center;
    gap: 52px;
    margin-bottom: 52px;
  }

  /* Put image-col second in visual order so it appears on the LEFT in RTL */
  .pain-image-col {
    order: 2;                  /* LEFT visually in RTL row */
    width: 40%;
    flex-shrink: 0;
  }

  .pain-content-col {
    order: 1;                  /* RIGHT visually in RTL row */
  }

  .pain-image {
    height: 480px;
    border-radius: 20px;
  }

  .pain-headline { font-size: 30px; }

  .pain-pullquote { font-size: 22px; }
}

@media (min-width: 1024px) {
  .pain-image { height: 540px; }
  .pain-headline { font-size: 34px; }
  .pain-pullquote { font-size: 24px; }
}

/* ============================================
   SECTION: causes
   ============================================ */
.causes-section {
  background: #F5EFE4;
  padding: 56px 24px;
}

.causes-inner {
  max-width: 880px;
  margin: 0 auto;
}

.causes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.cause-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(201,168,76,0.12);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: default;
}

.cause-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-3px);
}

.cause-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #EDE4D5;
}

.cause-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.cause-card:hover .cause-img-wrap img {
  transform: scale(1.04);
}

.cause-label {
  width: 100%;
  padding: 12px 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  background: var(--color-surface);
  border-top: 1px solid rgba(201,168,76,0.12);
  line-height: 1.4;
}

@media (min-width: 480px) {
  .causes-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .causes-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .cause-label { font-size: 13.5px; padding: 14px 12px; }
}

/* ============================================
   SECTION: solution-bridge
   ============================================ */
.solution-bridge {
  background: #1A1A1A;
  padding: 64px 24px;
  text-align: center;
}

.bridge-inner {
  max-width: 600px;
  margin: 0 auto;
}

.bridge-pill {
  display: inline-block;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: 20px;
  padding: 4px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.bridge-headline {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.bridge-body {
  font-size: 15px;
  color: #A89F8F;
  line-height: 1.9;
  margin-bottom: 44px;
}

.bridge-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 44px;
}

.bridge-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.bridge-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -0.5px;
}

.bridge-stat-lbl {
  font-size: 13px;
  color: #7A7060;
  font-weight: 500;
}

.bridge-stat-divider {
  width: 1px;
  height: 1px; /* hidden on mobile */
  background: transparent;
}

.bridge-divider {
  width: 60px;
  height: 1px;
  background: rgba(201,168,76,0.35);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bridge-headline { font-size: 42px; }
  .bridge-stats { flex-direction: row; justify-content: center; gap: 0; }
  .bridge-stat { flex: 1; }
  .bridge-stat-divider {
    width: 1px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    align-self: center;
  }
  .bridge-stat-num { font-size: 40px; }
}

/* ============================================
   SECTION: how-it-works
   ============================================ */
.how-section {
  background: #FDFAF5;
  padding: 56px 24px;
  border-top: 1px solid #EDE5D8;
}

.how-inner {
  max-width: 960px;
  margin: 0 auto;
}

.how-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.how-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid #EDE5D8;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s, transform 0.25s;
}

.how-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

/* ---- image area ---- */
.how-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #EDE4D5;
  overflow: visible;
}

.how-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 20px;
  transition: transform 0.35s ease;
}

.how-card:hover .how-card-img img {
  transform: scale(1.04);
}

/* ---- step badge (overlaid at bottom-center of image) ---- */
.how-step-badge {
  position: absolute;
  bottom: -18px;
  inset-inline-end: 24px;
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(201,168,76,0.45);
  z-index: 1;
}

/* ---- card body ---- */
.how-card-body {
  padding: 30px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.how-product-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.how-step-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.how-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.9;
  margin-bottom: 16px;
  flex: 1;
}

.how-usage {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-bg);
  border-radius: 8px;
  padding: 8px 13px;
  width: fit-content;
  border: 1px solid rgba(201,168,76,0.18);
}

.how-usage svg { color: var(--color-gold); flex-shrink: 0; }

@media (min-width: 640px) {
  .how-card {
    flex-direction: row;
    align-items: stretch;
  }

  .how-card-img {
    width: 200px;
    flex-shrink: 0;
    aspect-ratio: auto;
  }

  .how-step-badge {
    bottom: auto;
    top: 50%;
    inset-inline-end: -20px;
    transform: translateY(-50%);
  }

  .how-card-body {
    padding: 26px 28px 22px 22px;
  }
}

@media (min-width: 768px) {
  .how-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .how-card {
    flex: 1;
    flex-direction: column;
  }

  .how-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .how-step-badge {
    top: auto;
    transform: none;
    bottom: -18px;
    inset-inline-end: 22px;
  }

  .how-card-body {
    padding: 30px 22px 22px;
  }
}

/* ============================================
   SECTION: results-timeline
   ============================================ */
.timeline-section {
  background: #F5EFE4;
  padding: 56px 24px;
}

.timeline-inner {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-track {
  position: relative;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-line {
  position: absolute;
  background: linear-gradient(180deg, var(--color-gold) 0%, rgba(201,168,76,0.2) 100%);
  width: 2px;
  top: 16px;
  bottom: 16px;
  right: 15px;
  border-radius: 2px;
  z-index: 0;
}

.timeline-item {
  position: relative;
  padding-right: 48px;
  z-index: 1;
}

.tl-dot {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-weight: 900;
  z-index: 1;
}

.tl-dot--1 { width: 22px; height: 22px; top: 3px; right: 4px; }
.tl-dot--2 { width: 26px; height: 26px; top: 1px; right: 2px; }
.tl-dot--3 { width: 30px; height: 30px; top: -1px; right: 0; }
.tl-dot--star {
  width: 30px; height: 30px;
  top: -1px; right: 0;
  background: var(--color-gold);
  color: #fff;
  font-size: 14px;
  border: none;
}

.tl-week {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.tl-label {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.tl-desc {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .timeline-track {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .timeline-line {
    /* horizontal line */
    width: auto;
    height: 2px;
    top: 14px;
    bottom: auto;
    right: 14px;
    left: 14px;
    background: linear-gradient(90deg, var(--color-gold), rgba(201,168,76,0.25));
  }

  .timeline-item {
    flex: 1;
    padding-right: 0;
    padding-top: 44px;
    text-align: center;
  }

  .tl-dot {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
  }

  .tl-dot--1 { right: 50%; top: 3px; }
  .tl-dot--2 { right: 50%; top: 1px; }
  .tl-dot--3 { right: 50%; top: -1px; }
  .tl-dot--star { right: 50%; top: -1px; }

  .tl-week { text-align: center; }
  .tl-label { text-align: center; }
}

/* ============================================
   SECTION: audio-testimonials
   ============================================ */
.audio-section {
  background: var(--color-surface);
  padding: 56px 24px;
  border-top: 1px solid #EDE5D8;
}

.audio-inner {
  max-width: 960px;
  margin: 0 auto;
}

.audio-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.audio-card {
  background: #FDF8F0;
  border-radius: var(--radius-card);
  padding: 22px 20px;
  border: 1.5px solid #EDE0C8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.audio-card.playing {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.14), 0 4px 20px rgba(0,0,0,0.08);
}

.audio-customer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.audio-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-light, #E8D5A3), var(--color-gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201,168,76,0.25);
}

.audio-name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--color-dark);
}

.audio-city {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 1px;
}

.audio-stars {
  color: #F5A623;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 2px;
}

.audio-quote {
  font-size: 13.5px;
  color: var(--color-text);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #EDE0C8;
}

/* Hidden native audio element */
.hidden-audio { display: none; }

/* Custom player */
.audio-player {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ap-play-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-gold);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 3px 10px rgba(201,168,76,0.35);
  color: #1A1A1A;
}

.ap-play-btn:hover { background: var(--color-cta-hover); transform: scale(1.07); }
.ap-play-btn:active { transform: scale(0.96); }
.ap-play-btn svg { width: 14px; height: 14px; }

.ap-track-wrap {
  flex: 1;
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
}

.ap-waveform {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.ap-progress-bar {
  position: relative;
  width: 100%;
  height: 4px;
  background: #E8DFCF;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1;
}

.ap-progress-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 4px;
  transition: width 0.1s linear;
  position: relative;
}

.ap-progress-fill::after {
  content: '';
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-gold);
}

.ap-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-muted);
  white-space: nowrap;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .audio-grid { flex-direction: row; }
  .audio-card { flex: 1; }
}

/* ============================================
   SECTION: sticky-cta
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: block;
}

.sticky-cta--visible {
  transform: translateY(0);
}

.sticky-cta button {
  width: 100%;
  height: 56px;
  background: var(--color-gold);
  color: #1A1A1A;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 0;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: background 0.2s, opacity 0.2s;
}

.sticky-cta button:hover { background: #b8962e; }

@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ============================================
   SECTION: guide-teaser
   ============================================ */
.guide-teaser-section {
  background: #1A1A1A;
  padding: 64px 24px;
}

.guide-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.guide-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.guide-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--color-gold);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
}

.guide-headline {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.45;
  margin: 0;
}

.guide-body {
  font-size: 15px;
  color: #B0A898;
  line-height: 1.85;
  margin: 0;
}

.guide-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #D8D0C4;
}

.guide-check {
  color: var(--color-gold);
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}

.guide-cta {
  margin-top: 4px;
  align-self: flex-start;
}

/* visual / mockup */
.guide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-mockup {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  background: #F5EFE4;
  border-radius: 16px;
  box-shadow: inset 0 4px 24px rgba(0,0,0,0.12), 0 12px 40px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.guide-mockup-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-gold);
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .guide-inner {
    flex-direction: row-reverse;
    align-items: center;
    gap: 64px;
  }

  .guide-text { flex: 1; }

  .guide-visual {
    flex: 0 0 260px;
  }
}

/* ============================================
   SECTION: real-results
   ============================================ */
.real-results-section {
  background: #FDF0EC;
  padding: 64px 24px;
}

.real-results-inner {
  max-width: 960px;
  margin: 0 auto;
}

.real-results-inner .section-title {
  margin-bottom: 8px;
}

.results-masonry {
  columns: 2;
  column-gap: 12px;
  margin-top: 36px;
}

.results-img-wrap {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
}

.results-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.results-img-wrap:hover img {
  transform: scale(1.03);
}

.real-results-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 2px solid var(--color-gold);
  border-radius: 999px;
  background: transparent;
  color: var(--color-gold);
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.22s, color 0.22s;
}

.btn-cta-outline:hover {
  background: var(--color-gold);
  color: #1A1A1A;
}

@media (min-width: 768px) {
  .results-masonry {
    columns: 3;
    column-gap: 16px;
  }

  .results-img-wrap {
    margin-bottom: 16px;
  }
}
