/* ============================================================
   ADOPTREE ELEMENTOR WIDGETS — Frontend Styles
   Version: 1.0.0
   ============================================================ */

/* ── FONTS ── */
/* Loaded via PHP (Google Fonts enqueue) */

/* ── CSS VARIABLES ── */
:root {
  --adr-forest:  #0f1f0e;
  --adr-leaf:    #2d5a27;
  --adr-moss:    #4a7c3f;
  --adr-mango:   #f5a623;
  --adr-honey:   #e8831a;
  --adr-earth:   #6b4226;
  --adr-cream:   #faf7f0;
  --adr-beige:   #f0e8d8;
  --adr-sage:    #8db87a;
  --adr-white:   #ffffff;
}

/* ── RESET / BASE ── */
.elementor-widget-adoptree_hero *,
.elementor-widget-adoptree_trust_bar *,
.elementor-widget-adoptree_journey *,
.elementor-widget-adoptree_how_it_works *,
.elementor-widget-adoptree_benefits *,
.elementor-widget-adoptree_why_love *,
.elementor-widget-adoptree_dashboard *,
.elementor-widget-adoptree_testimonials *,
.elementor-widget-adoptree_gift *,
.elementor-widget-adoptree_footer_cta * {
  box-sizing: border-box;
}

/* ── SECTION BASE ── */
.adr-section { position: relative; overflow: hidden; }
.adr-container { max-width: 1280px; margin: 0 auto; padding: 80px 40px; }
.adr-dark-section { background-color: var(--adr-forest); }

/* ── TYPOGRAPHY ── */
.adr-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.adr-section-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(15,31,14,0.55);
  max-width: 520px;
}
.adr-section-header { margin-bottom: 56px; }
.adr-light         { color: var(--adr-cream) !important; }
.adr-dark          { color: var(--adr-forest) !important; }
.adr-light-muted   { color: rgba(250,247,240,0.55) !important; }

/* ── GRADIENT TEXT ── */
.adr-gradient-mango {
  background: linear-gradient(135deg, #f5a623, #e8831a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.adr-gradient-green {
  background: linear-gradient(135deg, #4a7c3f, #2d5a27);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BADGE ── */
.adr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.adr-badge-green { background: rgba(45,90,39,0.08); border: 1px solid rgba(45,90,39,0.15); color: var(--adr-leaf); }
.adr-badge-dark  { background: rgba(74,124,63,0.15); border: 1px solid rgba(74,124,63,0.3); color: var(--adr-sage); }
.adr-badge-mango { background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.2); color: var(--adr-mango); }

/* ── BUTTONS ── */
.adr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f5a623 0%, #e8831a 100%);
  color: var(--adr-forest);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.adr-btn-primary:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.45);
}
.adr-btn-lg { font-size: 16px; padding: 16px 40px; }

.adr-btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--adr-cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(250,247,240,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.adr-btn-outline-light:hover { border-color: rgba(250,247,240,0.8); background: rgba(250,247,240,0.1); transform: translateY(-1px); }

.adr-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--adr-forest);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(15,31,14,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.adr-btn-outline-dark:hover { border-color: var(--adr-leaf); background: rgba(45,90,39,0.06); transform: translateY(-1px); }

.adr-section-cta { text-align: center; margin-top: 48px; }

/* ── PROGRESS BAR ── */
.adr-progress-bar { height: 6px; background: rgba(255,255,255,0.15); border-radius: 100px; overflow: hidden; }
.adr-progress-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, #4a7c3f, #f5a623); transition: width 1.5s ease; }

/* ── GLOW ── */
.adr-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }

/* ── STARS ── */
.adr-stars { color: var(--adr-mango); letter-spacing: 2px; font-size: 14px; }

/* ── GLASS CARD ── */
.adr-glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

/* ── SCROLL REVEAL ── */
.adr-reveal        { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.adr-reveal-left   { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.adr-reveal-right  { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.adr-reveal.visible,
.adr-reveal-left.visible,
.adr-reveal-right.visible { opacity: 1; transform: none; }

/* ── ANIMATIONS ── */
@keyframes adrSway       { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg) translateX(8px); } }
@keyframes adrMangoPulse { 0%,100% { transform: scale(1) translateY(0); } 50% { transform: scale(1.03) translateY(-6px); } }
@keyframes adrGlowPulse  { 0%,100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.15); } }
@keyframes adrBounceIn   { 0% { transform: scale(0.8); opacity: 0; } 60% { transform: scale(1.05); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
@keyframes adrLeafDrift  { 0% { transform: translate(0,0) rotate(0); opacity:.7; } 100% { transform: translate(20px,-120px) rotate(20deg); opacity:0; } }

.adr-mango-pulse         { animation: adrMangoPulse 3.5s ease-in-out infinite; }
.adr-tree-canopy         { animation: adrSway 7s ease-in-out infinite; transform-origin: center bottom; }
.adr-bounce-in           { animation: adrBounceIn 1s ease both; opacity: 0; }
.adr-fade-up             { animation: adrReveal 1s ease both; }
@keyframes adrReveal     { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }

/* ── FLOATING LEAVES ── */
.adr-leaf { position: absolute; font-size: 20px; pointer-events: none; opacity: 0.5; animation: adrLeafDrift 5s ease-out infinite; }
.adr-leaf-1 { left: 15%; top: 35%; animation-delay: 0s; }
.adr-leaf-2 { left: 65%; top: 28%; animation-delay: 1.5s; }
.adr-leaf-3 { left: 75%; top: 55%; animation-delay: 3s; }

/* ===================================================
   HERO
   =================================================== */
.adr-hero {
  font-family: 'DM Sans', sans-serif;
  background: var(--adr-forest);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.adr-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.adr-hero-text {}
.adr-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 800;
  color: var(--adr-cream);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1px;
}
.adr-hero-headline-accent {}
.adr-hero-sub {
  font-size: 16px;
  color: rgba(250,247,240,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 0 36px;
}
.adr-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.adr-hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.adr-stat-number { font-family: 'Playfair Display', serif; font-size: clamp(20px,3vw,28px); font-weight: 700; color: var(--adr-mango); margin-bottom: 4px; }
.adr-stat-label  { font-size: 12px; color: rgba(250,247,240,0.5); letter-spacing: 0.5px; }
.adr-hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.adr-tree-wrap   { position: relative; z-index: 2; width: 100%; max-width: 380px; }
.adr-mango-tree-svg { width: 100%; height: auto; }
.adr-dash-card   { z-index: 10; }

/* ===================================================
   TRUST BAR
   =================================================== */
.adr-trust-bar {
  background: var(--adr-cream);
  border-top: 1px solid rgba(15,31,14,0.08);
  border-bottom: 1px solid rgba(15,31,14,0.08);
  padding: 18px 24px;
  overflow-x: auto;
}
.adr-trust-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.adr-trust-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.adr-trust-icon { font-size: 15px; }
.adr-trust-item span { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; color: rgba(15,31,14,0.6); }

/* ===================================================
   JOURNEY
   =================================================== */
.adr-journey { background: var(--adr-cream); }
.adr-journey .adr-container { padding-bottom: 40px; }
.adr-journey-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.adr-journey-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  background: rgba(15,31,14,0.08);
  color: rgba(15,31,14,0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.adr-journey-pill.active,
.adr-journey-pill:hover {
  background: var(--pill-color, var(--adr-leaf));
  color: white;
}
.adr-journey-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 12px 0 32px;
  cursor: grab;
}
.adr-journey-track::-webkit-scrollbar { display: none; }
.adr-journey-card {
  flex-shrink: 0;
  width: min(340px, 80vw);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1.5px solid rgba(15,31,14,0.06);
  transition: all 0.4s ease;
}
.adr-journey-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.14); transform: scale(1.02); border-color: var(--card-color, var(--adr-leaf)); }
.adr-journey-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.adr-journey-step { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 800; color: rgba(15,31,14,0.05); line-height: 1; }
.adr-journey-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.adr-journey-visual { height: 180px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; overflow: hidden; }
.adr-journey-emoji { font-size: 80px; }
.adr-journey-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--adr-forest); margin: 0 0 8px; }
.adr-journey-desc  { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(15,31,14,0.55); line-height: 1.75; margin: 0 0 20px; }
.adr-journey-next  { font-size: 12px; color: var(--card-color, var(--adr-leaf)); font-weight: 600; opacity: 0.6; }
.adr-journey-hint  { text-align: center; font-size: 12px; color: rgba(15,31,14,0.35); letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }

/* ===================================================
   HOW IT WORKS
   =================================================== */
.adr-how { background: var(--adr-forest); }
.adr-how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.adr-how-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
}
.adr-how-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.2); }
.adr-how-watermark { position: absolute; top: 16px; right: 20px; font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 800; color: rgba(255,255,255,0.04); line-height: 1; user-select: none; }
.adr-how-icon-wrap { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.adr-how-tag  { display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 12px; }
.adr-how-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--adr-cream); margin: 0 0 10px; }
.adr-how-desc  { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(250,247,240,0.5); line-height: 1.75; margin: 0 0 24px; }
.adr-how-line  { height: 3px; border-radius: 100px; }

/* ===================================================
   BENEFITS
   =================================================== */
.adr-benefits { background: var(--adr-cream); }
.adr-benefits-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 52px; }
.adr-benefits-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.adr-benefit-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px;
  border: 1px solid rgba(15,31,14,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.adr-benefit-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
.adr-benefit-dark { background: var(--adr-forest) !important; border: none !important; box-shadow: 0 20px 50px rgba(15,31,14,0.25) !important; }
.adr-benefit-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(45,90,39,0.08); border: 1px solid rgba(45,90,39,0.12); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.adr-benefit-icon-dark { background: rgba(245,166,35,0.15) !important; border-color: rgba(245,166,35,0.2) !important; }
.adr-benefit-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.adr-benefit-desc  { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(15,31,14,0.5); line-height: 1.75; margin: 0; }

/* ===================================================
   WHY PEOPLE LOVE
   =================================================== */
.adr-why { background: var(--adr-forest); }
.adr-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 48px;
}
.adr-reason-item {
  padding: 36px 30px;
  background: rgba(15,31,14,0.8);
  transition: background 0.3s ease;
  cursor: default;
}
.adr-reason-item:hover { background: rgba(45,90,39,0.15); }
.adr-reason-emoji { font-size: 30px; margin-bottom: 14px; }
.adr-reason-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--adr-cream); margin: 0 0 8px; }
.adr-reason-desc  { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(250,247,240,0.45); line-height: 1.75; margin: 0; }
.adr-stats-strip  { display: grid; grid-template-columns: repeat(4,1fr); background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.15); border-radius: 18px; overflow: hidden; }
.adr-stats-item   { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(245,166,35,0.12); }
.adr-stats-item:last-child { border-right: none; }
.adr-stats-val    { font-family: 'Playfair Display', serif; font-size: clamp(24px,3vw,36px); font-weight: 800; color: var(--adr-mango); margin-bottom: 5px; }
.adr-stats-label  { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(250,247,240,0.45); }

/* ===================================================
   DASHBOARD
   =================================================== */
.adr-dashboard { background: var(--adr-cream); }
.adr-dashboard-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.adr-dash-mockup {}
.adr-dash-shell  { background: var(--adr-forest); border-radius: 20px; padding: 22px; box-shadow: 0 40px 100px rgba(15,31,14,0.25); position: relative; overflow: hidden; }
.adr-dash-glow   { position: absolute; top: -80px; right: -80px; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(74,124,63,0.3) 0%, transparent 70%); pointer-events: none; }
.adr-dash-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.adr-dash-brand  { font-family: 'Playfair Display', serif; font-size: 14px; color: var(--adr-cream); font-weight: 700; }
.adr-dash-season-tag { background: rgba(74,124,63,0.2); border: 1px solid rgba(74,124,63,0.3); color: var(--adr-sage); font-size: 10px; padding: 3px 9px; border-radius: 100px; font-weight: 600; font-family: 'DM Sans', sans-serif; }
.adr-dash-tree-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px; margin-bottom: 14px; }
.adr-dash-tree-thumb { width: 52px; height: 52px; border-radius: 9px; background: var(--adr-leaf); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.adr-dash-tree-id    { font-size: 12px; font-weight: 700; color: var(--adr-cream); font-family: 'DM Sans', sans-serif; }
.adr-dash-tree-loc   { font-size: 10px; color: rgba(250,247,240,0.4); font-family: 'DM Sans', sans-serif; }
.adr-dash-stage-tag  { font-size: 10px; background: rgba(245,166,35,0.15); color: var(--adr-mango); padding: 2px 7px; border-radius: 100px; font-weight: 600; white-space: nowrap; font-family: 'DM Sans', sans-serif; }
.adr-dash-prog-label { font-size: 10px; color: rgba(250,247,240,0.4); font-family: 'DM Sans', sans-serif; }
.adr-dash-prog-pct   { font-size: 10px; color: var(--adr-mango); font-weight: 600; font-family: 'DM Sans', sans-serif; }
.adr-dash-meta-row   { display: flex; gap: 16px; margin-top: 6px; }
.adr-dash-meta-label { font-size: 9px; color: rgba(250,247,240,0.35); font-family: 'DM Sans', sans-serif; }
.adr-dash-meta-val   { font-size: 11px; color: var(--adr-cream); font-weight: 600; font-family: 'DM Sans', sans-serif; }
.adr-dash-timeline-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 12px; margin-bottom: 12px; }
.adr-dash-timeline-label { font-size: 9px; color: rgba(250,247,240,0.5); margin-bottom: 12px; font-weight: 600; letter-spacing: 0.5px; font-family: 'DM Sans', sans-serif; }
.adr-dash-timeline { display: flex; gap: 0; align-items: center; }
.adr-timeline-node { flex: 1; text-align: center; position: relative; }
.adr-timeline-line { position: absolute; top: 12px; left: 50%; right: -50%; height: 2px; background: rgba(255,255,255,0.1); z-index: 0; }
.adr-timeline-line.done { background: var(--adr-moss); }
.adr-timeline-dot  { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 10px; margin: 0 auto 4px; position: relative; z-index: 1; color: var(--adr-cream); font-family: 'DM Sans', sans-serif; }
.adr-timeline-dot.done { background: var(--adr-leaf); border-color: var(--adr-moss); }
.adr-timeline-month { font-size: 8px; color: rgba(250,247,240,0.35); font-family: 'DM Sans', sans-serif; }
.adr-dash-bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.adr-dash-update-card   { background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2); border-radius: 9px; padding: 11px 13px; }
.adr-dash-delivery-card { background: rgba(74,124,63,0.12); border: 1px solid rgba(74,124,63,0.2); border-radius: 9px; padding: 11px 13px; }
.adr-dash-card-label  { font-size: 9px; color: rgba(250,247,240,0.4); margin-bottom: 3px; font-family: 'DM Sans', sans-serif; }
.adr-dash-update-val  { font-size: 12px; color: var(--adr-mango); font-weight: 700; font-family: 'DM Sans', sans-serif; }
.adr-dash-delivery-val { font-size: 12px; color: var(--adr-sage); font-weight: 700; font-family: 'DM Sans', sans-serif; }
.adr-feature-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.adr-feature-item { display: flex; align-items: flex-start; gap: 12px; }
.adr-feature-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(45,90,39,0.08); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.adr-feature-text { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(15,31,14,0.65); line-height: 1.6; padding-top: 4px; }

/* ===================================================
   TESTIMONIALS
   =================================================== */
.adr-testimonials { background: var(--adr-forest); }
.adr-testi-header  { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.adr-testi-rating  { text-align: right; }
.adr-testi-score   { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 800; color: var(--adr-mango); line-height: 1; }
.adr-testi-count   { font-size: 11px; color: rgba(250,247,240,0.4); margin-top: 3px; font-family: 'DM Sans', sans-serif; }
.adr-testi-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.adr-testi-card    { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 24px 20px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.adr-testi-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.adr-testi-featured { background: linear-gradient(145deg, #1a3a17 0%, #0f1f0e 100%) !important; border-color: rgba(74,124,63,0.3) !important; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.adr-testi-quote   { font-size: 44px; color: var(--adr-mango); opacity: 0.25; font-family: serif; margin-bottom: 16px; line-height: 1; }
.adr-testi-text    { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(250,247,240,0.85); line-height: 1.8; margin: 0 0 18px; font-style: italic; }
.adr-testi-featured .adr-testi-text { font-size: 16px; }
.adr-testi-author  { display: flex; align-items: center; gap: 10px; }
.adr-testi-avatar  { width: 40px; height: 40px; border-radius: 50%; background: rgba(74,124,63,0.3); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.adr-testi-name    { font-size: 13px; font-weight: 700; color: var(--adr-cream); font-family: 'DM Sans', sans-serif; }
.adr-testi-role    { font-size: 10px; color: rgba(250,247,240,0.4); font-family: 'DM Sans', sans-serif; }

/* ===================================================
   GIFT
   =================================================== */
.adr-gift { background: var(--adr-cream); }
.adr-gift-banner {
  background: linear-gradient(135deg, #0f1f0e 0%, #1a3a17 60%, #2d5a27 100%);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(15,31,14,0.3);
}
.adr-gift .adr-container { padding-top: 80px; padding-bottom: 80px; }
.adr-gift-glow-top    { position: absolute; top: -100px; right: -100px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle,rgba(245,166,35,0.15)0%,transparent 65%); pointer-events: none; }
.adr-gift-glow-bottom { position: absolute; bottom: -80px; left: 40%; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle,rgba(74,124,63,0.2)0%,transparent 65%); pointer-events: none; }
.adr-gift-layout  { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; position: relative; z-index: 2; padding: 56px; }
.adr-gift-title   { font-family: 'Playfair Display', serif; font-size: clamp(24px,3.5vw,44px); font-weight: 800; color: var(--adr-cream); line-height: 1.15; margin: 0 0 14px; }
.adr-gift-sub     { font-family: 'DM Sans', sans-serif; font-size: 15px; color: rgba(250,247,240,0.6); line-height: 1.8; max-width: 480px; margin: 0 0 28px; }
.adr-gift-tags    { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.adr-gift-tag     { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 6px 12px; font-size: 12px; color: rgba(250,247,240,0.75); font-family: 'DM Sans', sans-serif; }
.adr-gift-card-wrap { width: 220px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.adr-gift-emoji-box { width: 180px; height: 180px; background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2); border-radius: 22px; display: flex; align-items: center; justify-content: center; font-size: 70px; animation: adrMangoPulse 4s ease-in-out infinite; }
.adr-gift-price-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 14px 18px; text-align: center; width: 100%; }
.adr-gift-price      { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--adr-mango); }
.adr-gift-price-note { font-family: 'DM Sans', sans-serif; font-size: 11px; color: rgba(250,247,240,0.4); margin-top: 3px; }
.adr-gift-perks      { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.adr-gift-perk       { font-size: 10px; color: var(--adr-sage); font-family: 'DM Sans', sans-serif; }

/* ===================================================
   FOOTER CTA
   =================================================== */
.adr-footer-cta { background: var(--adr-forest); text-align: center; }
.adr-footer-cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 450px; border-radius: 50%; background: radial-gradient(ellipse,rgba(74,124,63,.2)0%,transparent 65%); pointer-events: none; animation: adrGlowPulse 5s ease-in-out infinite; }
.adr-footer-cta-emojis { display: flex; justify-content: center; gap: 16px; font-size: 24px; margin-bottom: 28px; opacity: 0.6; }
.adr-footer-cta-emojis span { animation: adrMangoPulse 2.5s ease-in-out infinite; display: inline-block; }
.adr-footer-cta-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,6vw,68px); font-weight: 800; color: var(--adr-cream); line-height: 1.1; margin: 0 0 20px; letter-spacing: -1px; }
.adr-footer-cta-sub   { font-family: 'DM Sans', sans-serif; font-size: 17px; color: rgba(250,247,240,.6); line-height: 1.8; max-width: 480px; margin: 0 auto 40px; }
.adr-trust-notes { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.adr-trust-notes span { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(250,247,240,.4); }

/* ===================================================
   RESPONSIVE — TABLET (max 900px)
   =================================================== */
@media (max-width: 900px) {
  .adr-container { padding: 60px 24px; }
  .adr-hero-grid { grid-template-columns: 1fr; }
  .adr-how-grid  { grid-template-columns: repeat(2, 1fr) !important; }
  .adr-benefits-header { grid-template-columns: 1fr !important; gap: 24px !important; }
  .adr-benefits-grid   { grid-template-columns: repeat(2, 1fr) !important; }
  .adr-dashboard-layout { grid-template-columns: 1fr !important; gap: 40px !important; }
  .adr-testi-grid { grid-template-columns: 1fr !important; }
  .adr-gift-layout { grid-template-columns: 1fr !important; padding: 36px 28px; }
  .adr-gift-card-wrap { display: none !important; }
  .adr-stats-strip { grid-template-columns: repeat(2,1fr) !important; }
  .adr-reasons-grid { grid-template-columns: 1fr !important; }
}

/* ===================================================
   RESPONSIVE — MOBILE (max 600px)
   =================================================== */
@media (max-width: 600px) {
  .adr-container { padding: 48px 20px; }
  .adr-how-grid        { grid-template-columns: 1fr !important; }
  .adr-benefits-grid   { grid-template-columns: 1fr !important; }
  .adr-hero-ctas { flex-direction: column; }
  .adr-btn-primary, .adr-btn-outline-light, .adr-btn-outline-dark { width: 100%; justify-content: center; }
  .adr-journey-pill .adr-pill-label { display: none; }
  .adr-testi-header { flex-direction: column; align-items: flex-start; }
  .adr-testi-rating { text-align: left; }
}
