/* ================================================================
   Aruba Fatima — Meta Certified Conversion Strategist
   style.css — All styles for the landing page
   ================================================================
   Font variables are swapped at runtime via script.js setFont().
   To lock a heading font, edit --head-font in :root permanently.
   ================================================================ */

/* ================================================================
   FONT TEST VARIABLES — swap --head-font to test alternatives
   ================================================================ */
:root{
  /* ── active font ── */
  --head-font:'Cormorant Garamond',serif;
  --body-font:'Outfit',sans-serif;

  /* ── Brand palette (unchanged) ── */
  --gold:#c9a96e;
  --gold-2:#e2c98a;
  --gold-glow:rgba(201,169,110,0.22);
  --gold-glow-strong:rgba(201,169,110,0.40);
  --rose:#e8756a;

  /* Light mode */
  --bg:#f7f4ef;
  --bg-2:#ffffff;
  --bg-3:#edeae3;
  --surface:rgba(255,255,255,0.72);
  --border:rgba(0,0,0,0.08);
  --border-2:rgba(201,169,110,0.25);
  --text:#0d0c0a;
  --text-2:#4a4640;
  --text-3:#8a8178;
  --heading:#0d0c0a;
  --nav-bg:rgba(247,244,239,0.88);

  --radius:999px;
  --rc:20px;     /* card radius */
  --rc-lg:28px;  /* large card */
  --sh:0 2px 8px rgba(0,0,0,0.06),0 8px 28px rgba(0,0,0,0.08);
  --sh-md:0 4px 16px rgba(0,0,0,0.08),0 16px 48px rgba(0,0,0,0.10);
  --sh-lg:0 8px 32px rgba(0,0,0,0.10),0 24px 72px rgba(0,0,0,0.13);
  --sh-gold:0 8px 32px rgba(201,169,110,0.20);
  --sh-gold-hover:0 0 0 1px rgba(201,169,110,0.30),0 8px 40px rgba(201,169,110,0.35),0 20px 60px rgba(201,169,110,0.18);
  --tr:0.28s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"]{
  --bg:#0a0a0f;--bg-2:#111118;--bg-3:#16161f;
  --surface:rgba(255,255,255,0.05);
  --border:rgba(255,255,255,0.08);
  --border-2:rgba(201,169,110,0.20);
  --text:#f5f0e8;--text-2:#b8b0a4;--text-3:#6a6260;
  --heading:#f5f0e8;
  --nav-bg:rgba(10,10,15,0.92);
  --sh:0 2px 8px rgba(0,0,0,0.30),0 8px 28px rgba(0,0,0,0.35);
  --sh-md:0 4px 16px rgba(0,0,0,0.35),0 16px 48px rgba(0,0,0,0.40);
  --sh-lg:0 8px 32px rgba(0,0,0,0.40),0 24px 72px rgba(0,0,0,0.45);
}

/* ================================================================
   RESET
   ================================================================ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:var(--body-font);
  background:var(--bg);color:var(--text);
  line-height:1.65;overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
/* smooth theme switch */
body,*{transition:background-color var(--tr),color var(--tr),border-color var(--tr),box-shadow var(--tr)}
img,svg,canvas,.no-tr{transition:none!important}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1,h2,h3,h4{
  font-family:var(--head-font);
  color:var(--heading);line-height:1.1;letter-spacing:-0.01em;
}
.d-xl{font-size:clamp(2.8rem,5.8vw,5rem);font-weight:700;line-height:1.05}
.d-lg{font-size:clamp(2rem,4vw,3.2rem);font-weight:700}
.d-md{font-size:clamp(1.5rem,3vw,2.2rem);font-weight:600}
.accent{color:var(--gold)}
.accent-italic{color:var(--gold);font-style:italic}
.eyebrow{
  display:inline-block;
  font-family:var(--body-font);
  font-size:0.72rem;font-weight:600;letter-spacing:0.18em;
  text-transform:uppercase;color:var(--gold);margin-bottom:14px;
}
.section-intro{font-size:1.05rem;color:var(--text-2);line-height:1.74;max-width:560px}

/* ================================================================
   LAYOUT
   ================================================================ */
.container{max-width:1180px;margin:0 auto;padding:0 24px}
.container-sm{max-width:800px;margin:0 auto;padding:0 24px}
.section-pad{padding:96px 0}
section{position:relative;overflow:hidden}
.text-center{text-align:center}
.text-center .section-intro{margin-left:auto;margin-right:auto}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn{
  display:inline-flex;align-items:center;gap:9px;
  padding:13px 28px;border-radius:var(--radius);
  font-family:var(--body-font);font-size:0.875rem;font-weight:600;
  letter-spacing:0.03em;text-decoration:none;border:none;cursor:pointer;
  transition:transform 0.2s ease,box-shadow 0.2s ease,background 0.2s ease;
  position:relative;overflow:hidden;white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#0a0a0f;box-shadow:0 4px 18px rgba(201,169,110,0.38);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 32px rgba(201,169,110,0.52)}
.btn-outline{
  background:transparent;color:var(--text);
  border:1.5px solid var(--border-2);backdrop-filter:blur(8px);
}
.btn-outline:hover{border-color:var(--gold);color:var(--gold);background:var(--gold-glow)}
.btn-lg{padding:16px 36px;font-size:0.95rem}
.btn-sm{padding:9px 20px;font-size:0.8rem}
.btn::after{
  content:'';position:absolute;inset:0;border-radius:inherit;
  background:rgba(255,255,255,0.16);opacity:0;transform:scale(0);
  transition:transform 0.45s ease,opacity 0.45s ease;
}
.btn:active::after{transform:scale(2);opacity:0}

/* ================================================================
   NAV
   ================================================================ */
.nav-wrap{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:14px 0;
  transition:background 0.3s,backdrop-filter 0.3s,box-shadow 0.3s;
}
.nav-wrap.scrolled{
  background:var(--nav-bg);
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  box-shadow:0 1px 0 var(--border),var(--sh);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  max-width:1180px;margin:0 auto;padding:0 24px;
}
.nav-logo{
  font-family:var(--head-font);
  font-size:1.4rem;font-weight:700;letter-spacing:0.02em;
  color:var(--heading);text-decoration:none;
  display:flex;align-items:center;gap:10px;
}
.nav-logo-mark{
  width:32px;height:32px;border-radius:10px;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  display:flex;align-items:center;justify-content:center;
  color:#0a0a0f;font-size:0.85rem;font-weight:800;
  font-family:var(--body-font);flex-shrink:0;
}
.nav-links{display:flex;align-items:center;gap:2px;list-style:none}
.nav-links a{
  padding:8px 16px;border-radius:var(--radius);
  font-size:0.875rem;font-weight:500;color:var(--text-2);
  text-decoration:none;transition:color var(--tr),background var(--tr);
}
.nav-links a:hover{color:var(--heading);background:var(--surface)}
.nav-right{display:flex;align-items:center;gap:10px}
.theme-btn{
  width:40px;height:40px;border-radius:var(--radius);
  border:1.5px solid var(--border-2);background:var(--surface);
  color:var(--text-2);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  font-size:0.95rem;flex-shrink:0;
  transition:color var(--tr),border-color var(--tr);
}
.theme-btn:hover{color:var(--gold);border-color:var(--gold)}
.nav-toggle{
  display:none;width:40px;height:40px;border-radius:var(--radius);
  border:1.5px solid var(--border-2);background:var(--surface);
  color:var(--text);cursor:pointer;align-items:center;justify-content:center;
  font-size:1rem;flex-shrink:0;
}
.mobile-menu{
  display:none;position:fixed;inset:0;z-index:200;
  background:var(--bg-2);padding:80px 24px 32px;
  flex-direction:column;gap:6px;animation:slideDown 0.26s ease;
}
.mobile-menu.open{display:flex}
@keyframes slideDown{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}
.mobile-menu a{
  padding:15px 20px;border-radius:16px;font-size:1.05rem;font-weight:500;
  color:var(--text);text-decoration:none;transition:background var(--tr);
}
.mobile-menu a:hover{background:var(--surface);color:var(--gold)}
.mob-close{
  position:absolute;top:20px;right:24px;width:40px;height:40px;
  border-radius:var(--radius);border:1.5px solid var(--border);
  background:transparent;color:var(--text-2);cursor:pointer;font-size:1.1rem;
  display:flex;align-items:center;justify-content:center;
}

/* ================================================================
   HERO — Enlango-style
   ================================================================ */
.hero{
  min-height:100svh;display:flex;align-items:center;
  padding:110px 0 64px;background:var(--bg);
}
/* Subtle grid texture */
.hero::before{
  content:'';position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(201,169,110,0.04) 1px,transparent 1px);
  background-size:48px 48px;
  pointer-events:none;z-index:0;
}
/* Ambient blobs */
.hero-blob{
  position:absolute;border-radius:50%;
  filter:blur(80px);pointer-events:none;will-change:transform;
  animation:blobDrift 20s ease-in-out infinite alternate;
}
.hero-blob-1{
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(201,169,110,0.16) 0%,transparent 70%);
  top:-80px;right:8%;animation-duration:22s;
}
.hero-blob-2{
  width:340px;height:340px;
  background:radial-gradient(circle,rgba(232,117,106,0.09) 0%,transparent 70%);
  bottom:-40px;left:6%;animation-duration:16s;animation-direction:alternate-reverse;
}
@keyframes blobDrift{
  0%{transform:translate(0,0) scale(1)}
  50%{transform:translate(24px,-18px) scale(1.04)}
  100%{transform:translate(-16px,12px) scale(0.97)}
}

.hero-grid{
  display:grid;grid-template-columns:1.05fr 0.95fr;
  gap:56px;align-items:center;position:relative;z-index:2;
}
/* ── HERO LEFT ── */
.hero-left{}

/* TrustPilot badge row */
.hero-trustpilot{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 16px;border-radius:var(--radius);
  background:var(--bg-2);border:1px solid var(--border);
  box-shadow:var(--sh);margin-bottom:28px;
}
.tp-logo{
  width:22px;height:22px;border-radius:6px;
  background:#00b67a;display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:0.7rem;flex-shrink:0;
}
.tp-stars{display:flex;gap:1px;color:#00b67a;font-size:0.8rem}
.tp-text{font-size:0.82rem;font-weight:600;color:var(--text-2)}

.hero-h1{margin-bottom:24px}

/* Avatar cluster inline */
.avatar-cluster{
  display:inline-flex;align-items:center;
  vertical-align:middle;margin:0 6px;
}
.avatar-cluster img{
  width:36px;height:36px;border-radius:50%;
  border:2px solid var(--bg-2);object-fit:cover;
  margin-left:-10px;box-shadow:var(--sh);
  transition:none!important;
}
.avatar-cluster img:first-child{margin-left:0}

.hero-sub{
  font-size:1.05rem;color:var(--text-2);
  line-height:1.74;max-width:440px;margin-bottom:36px;
}
.hero-cta-row{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:48px}

/* Bottom stats row */
.hero-stats{
  display:flex;gap:40px;flex-wrap:wrap;
  padding-top:28px;border-top:1px solid var(--border);
}
.hero-stat-item{}
.hero-stat-item strong{
  display:block;font-family:var(--head-font);
  font-size:2.1rem;font-weight:700;line-height:1;color:var(--heading);
  margin-bottom:4px;letter-spacing:-0.01em;
}
.hero-stat-item span{font-size:0.82rem;color:var(--text-3);font-weight:500}

/* ── HERO RIGHT ── */
.hero-right{
  position:relative;display:flex;justify-content:center;z-index:3;
}
/* Main image – tall rounded card */
.hero-img-frame{
  position:relative;width:100%;max-width:440px;
  border-radius:var(--rc-lg);overflow:visible;
  box-shadow:var(--sh-lg),var(--sh-gold);
}
.hero-img-frame img{
  width:100%;aspect-ratio:3/4;object-fit:cover;object-position:top center;
  display:block;border-radius:var(--rc-lg);
}

/* Float cards around image – Enlango style */
.hero-float{
  position:absolute;
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:14px;box-shadow:var(--sh-md);
  padding:12px 16px;backdrop-filter:blur(16px);
  z-index:10;white-space:nowrap;
}

/* Top right — "Meta Certified" badge */
.hf-badge{
  top:-16px;right:-28px;
  display:flex;align-items:center;gap:9px;
  padding:11px 18px;
}
.hf-badge-icon{
  width:32px;height:32px;border-radius:10px;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  display:flex;align-items:center;justify-content:center;
  color:#0a0a0f;font-size:0.9rem;flex-shrink:0;
}
.hf-badge strong{display:block;font-size:0.82rem;font-weight:700;color:var(--heading)}
.hf-badge span{font-size:0.72rem;color:var(--text-3)}

/* Mid right — checkboxes */
.hf-checks{
  top:48%;right:-36px;
  display:flex;flex-direction:column;gap:8px;
}
.hf-check-item{
  display:flex;align-items:center;gap:8px;
  font-size:0.82rem;font-weight:600;color:var(--heading);
}
.hf-check-item i{color:#00b67a;font-size:0.78rem}

/* Bottom left — large stat bubble */
.hf-stat-big{
  bottom:48px;left:-36px;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  border:none;padding:18px 22px;text-align:center;
  border-radius:18px;box-shadow:0 8px 32px rgba(201,169,110,0.40);
}
.hf-stat-big strong{
  display:block;font-family:var(--head-font);
  font-size:2.2rem;font-weight:700;color:#0a0a0f;line-height:1;
  letter-spacing:-0.02em;
}
.hf-stat-big span{font-size:0.75rem;font-weight:600;color:rgba(10,10,15,0.70);text-transform:uppercase;letter-spacing:0.08em}

/* Bottom right — skills card */
.hf-skills{
  bottom:-16px;right:-20px;
  padding:14px 18px;
}
.hf-skills p{font-size:0.8rem;font-weight:700;color:var(--heading);margin-bottom:8px}
.hf-skills-pills{display:flex;gap:6px;flex-wrap:wrap}
.hf-pill{
  padding:4px 12px;border-radius:var(--radius);
  background:rgba(201,169,110,0.12);
  border:1px solid rgba(201,169,110,0.28);
  font-size:0.75rem;font-weight:600;color:var(--gold);
}

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.section-label{
  display:inline-block;
  font-family:var(--body-font);
  font-size:0.72rem;font-weight:600;letter-spacing:0.18em;
  text-transform:uppercase;color:var(--gold);margin-bottom:14px;
}
.section-title{margin-bottom:16px}
.dot-divider{display:flex;align-items:center;gap:5px;margin:16px 0}
.dot-divider span{width:4px;height:4px;border-radius:50%;background:var(--gold);opacity:0.5}
.dot-divider span:nth-child(2){opacity:1}

/* ================================================================
   TRUTH SECTION
   ================================================================ */
.truth-section{background:var(--bg-2)}
.truth-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.truth-visual{
  border-radius:var(--rc-lg);
  background:linear-gradient(135deg,var(--bg-3),var(--bg));
  border:1px solid var(--border);padding:36px;
  display:flex;flex-direction:column;gap:16px;
  box-shadow:var(--sh);position:relative;
}
.truth-visual::before{
  content:'';position:absolute;inset:0;border-radius:inherit;
  background:linear-gradient(135deg,rgba(201,169,110,0.05) 0%,transparent 60%);
  pointer-events:none;
}
.problem-item{
  display:flex;align-items:flex-start;gap:13px;
  padding:15px;border-radius:14px;
  background:var(--surface);border:1px solid var(--border);
  backdrop-filter:blur(8px);
  box-shadow:var(--sh);
  transition:transform var(--tr),box-shadow var(--tr);
}
.problem-item:hover{transform:translateY(-2px);box-shadow:var(--sh-md)}
.p-icon{
  width:34px;height:34px;border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:0.82rem;
}
.p-icon.bad{background:rgba(232,117,106,0.14);color:#e8756a}
.p-icon.good{background:rgba(201,169,110,0.14);color:var(--gold)}
.problem-text strong{display:block;font-size:0.88rem;font-weight:700;color:var(--heading);margin-bottom:2px}
.problem-text span{font-size:0.81rem;color:var(--text-2)}

/* ================================================================
   PROCESS
   ================================================================ */
.process-section{background:var(--bg)}
.process-steps{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:22px;margin-top:52px;position:relative;
}
.process-steps::before{
  content:'';position:absolute;top:50px;
  left:calc(16.5% + 22px);right:calc(16.5% + 22px);
  height:1px;background:linear-gradient(90deg,transparent,var(--border-2),transparent);
  z-index:0;pointer-events:none;
}
.process-card{
  border-radius:var(--rc);background:var(--bg-2);
  border:1px solid var(--border);padding:36px 26px;
  position:relative;z-index:1;
  box-shadow:var(--sh);
  transition:transform var(--tr),box-shadow var(--tr),border-color var(--tr);
}
.process-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--sh-gold-hover);
  border-color:rgba(201,169,110,0.35);
}
.process-num{
  font-family:var(--head-font);
  font-size:3.8rem;font-weight:700;
  color:var(--gold);opacity:0.15;line-height:1;margin-bottom:16px;
  letter-spacing:-0.04em;
}
.process-icon{
  width:50px;height:50px;border-radius:14px;
  background:rgba(201,169,110,0.12);border:1px solid rgba(201,169,110,0.22);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:1.15rem;margin-bottom:18px;
}
.process-card h3{font-size:1.25rem;font-weight:700;margin-bottom:10px}
.process-card p{font-size:0.875rem;color:var(--text-2);line-height:1.68}

/* ================================================================
   BEFORE / AFTER TABLE
   ================================================================ */
.table-section{background:var(--bg-2)}
.ba-table-wrap{
  margin-top:48px;border-radius:var(--rc-lg);
  border:1px solid var(--border);overflow:hidden;
  box-shadow:var(--sh-md);
}
.ba-table-head{display:grid;grid-template-columns:1fr 1fr}
.ba-head-cell{
  padding:20px 32px;
  font-family:var(--body-font);
  font-size:0.82rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
}
.ba-head-cell.before{background:rgba(232,117,106,0.09);color:#e8756a;border-right:1px solid var(--border)}
.ba-head-cell.after{background:rgba(201,169,110,0.09);color:var(--gold)}
.ba-row{
  display:grid;grid-template-columns:1fr 1fr;
  border-top:1px solid var(--border);transition:background var(--tr);
}
.ba-row:hover{background:var(--surface)}
.ba-cell{
  padding:17px 32px;display:flex;align-items:flex-start;gap:10px;
  font-size:0.875rem;line-height:1.55;color:var(--text-2);
}
.ba-cell.before-cell{border-right:1px solid var(--border)}
.ba-cell i{font-size:0.76rem;margin-top:3px;flex-shrink:0}
.ba-cell.before-cell i{color:#e8756a}
.ba-cell.after-cell i{color:var(--gold)}

/* ================================================================
   WHO IT'S FOR
   ================================================================ */
.who-section{background:var(--bg)}
.who-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:44px}
.who-card{
  border-radius:var(--rc);padding:26px 22px;
  border:1px solid var(--border);background:var(--bg-2);
  display:flex;align-items:flex-start;gap:13px;
  box-shadow:var(--sh);
  transition:transform var(--tr),box-shadow var(--tr),border-color var(--tr);
}
.who-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--sh-gold-hover);
  border-color:rgba(201,169,110,0.30);
}
.who-check{
  width:28px;height:28px;border-radius:50%;
  background:rgba(201,169,110,0.13);border:1px solid rgba(201,169,110,0.28);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:0.72rem;flex-shrink:0;margin-top:2px;
}
.who-card p{font-size:0.88rem;color:var(--text-2);line-height:1.58;font-weight:500}
.not-for{
  margin-top:36px;padding:26px 30px;border-radius:var(--rc);
  background:var(--bg-2);border:1px solid rgba(232,117,106,0.24);
  box-shadow:var(--sh);
}
.not-for h4{font-size:0.92rem;font-weight:700;margin-bottom:14px;color:var(--heading)}
.not-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:10px;font-size:0.875rem;color:var(--text-2)}
.not-item:last-child{margin-bottom:0}
.not-item i{color:#e8756a;margin-top:3px;flex-shrink:0}

/* ================================================================
   ABOUT
   ================================================================ */
.about-section{background:var(--bg-2)}
.about-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:72px;align-items:center}
.about-img-wrap{
  position:relative;border-radius:var(--rc-lg);overflow:hidden;
  aspect-ratio:4/5;box-shadow:var(--sh-lg);
}
.about-img-wrap img{width:100%;height:100%;object-fit:cover;display:block}
.about-img-wrap::after{
  content:'';position:absolute;top:16px;right:16px;
  width:56px;height:56px;border-top:2.5px solid var(--gold);border-right:2.5px solid var(--gold);
  border-radius:0 14px 0 0;opacity:0.45;pointer-events:none;
}
.about-img-wrap::before{
  content:'';position:absolute;bottom:16px;left:16px;
  width:56px;height:56px;border-bottom:2.5px solid var(--gold);border-left:2.5px solid var(--gold);
  border-radius:0 0 0 14px;opacity:0.45;pointer-events:none;
}
.about-bio{font-size:0.9rem;color:var(--text-2);line-height:1.78;margin-bottom:18px}
.about-certs{display:flex;flex-wrap:wrap;gap:9px;margin-top:26px}
.cert-pill{
  padding:7px 15px;border-radius:var(--radius);
  background:rgba(201,169,110,0.10);border:1px solid rgba(201,169,110,0.24);
  font-size:0.77rem;font-weight:600;letter-spacing:0.05em;
  text-transform:uppercase;color:var(--gold);
  display:flex;align-items:center;gap:6px;
}
.cert-pill i{font-size:0.73rem}

/* ================================================================
   TESTIMONIALS — Unique masonry-stagger with Google badge
   ================================================================ */
.testimonials-section{background:var(--bg)}

/* Staggered 3-col masonry-feel layout */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:52px;
  align-items:start; /* masonry feel */
}
/* Stagger — middle column shifts down */
.reviews-grid .review-card:nth-child(2),
.reviews-grid .review-card:nth-child(5){margin-top:32px}

.review-card{
  border-radius:var(--rc);background:var(--bg-2);
  border:1px solid var(--border);padding:26px 22px;
  display:flex;flex-direction:column;gap:14px;
  position:relative;
  box-shadow:var(--sh);
  transition:transform 0.26s ease,box-shadow 0.26s ease,border-color 0.26s ease;
}
.review-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--sh-gold-hover);
  border-color:rgba(201,169,110,0.28);
}

/* Thin gold top accent */
.review-card::before{
  content:'';position:absolute;top:0;left:24px;right:24px;
  height:2px;border-radius:0 0 2px 2px;
  background:linear-gradient(90deg,transparent,rgba(201,169,110,0.50),transparent);
}

/* Google Verified Badge — top right */
.google-badge{
  position:absolute;top:16px;right:16px;
  display:flex;align-items:center;gap:5px;
  padding:4px 9px;border-radius:var(--radius);
  background:var(--bg);border:1px solid var(--border);
  font-size:0.68rem;font-weight:600;color:var(--text-3);
  box-shadow:var(--sh);
}
.google-badge svg{width:14px;height:14px;flex-shrink:0}

.review-stars{display:flex;gap:2px;color:var(--gold);font-size:0.78rem}
.review-quote{
  font-family:var(--head-font);
  font-size:1.05rem;font-weight:600;line-height:1.45;
  color:var(--heading);font-style:italic;
  padding-right:24px; /* avoid overlap with badge */
}
.review-body{font-size:0.84rem;color:var(--text-2);line-height:1.66}
.review-author{
  display:flex;align-items:center;gap:10px;
  margin-top:auto;padding-top:14px;border-top:1px solid var(--border);
}
.author-avatar{
  width:38px;height:38px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  display:flex;align-items:center;justify-content:center;
  color:#0a0a0f;font-size:0.82rem;font-weight:700;flex-shrink:0;
}
.author-name{font-size:0.84rem;font-weight:700;color:var(--heading)}
.author-role{font-size:0.75rem;color:var(--text-3)}

/* "Verified by Google" line at bottom */
.review-verified{
  display:flex;align-items:center;gap:5px;
  font-size:0.72rem;color:var(--text-3);font-weight:500;
  padding-top:10px;border-top:1px dashed var(--border);
}
.review-verified svg{width:13px;height:13px;flex-shrink:0}

/* ================================================================
   CTA FINAL
   ================================================================ */
.cta-section{background:var(--bg);padding:96px 0}
.cta-inner{
  background:linear-gradient(135deg,var(--bg-2) 0%,var(--bg-3) 100%);
  border:1px solid var(--border-2);border-radius:var(--rc-lg);
  padding:72px 60px;text-align:center;
  position:relative;overflow:hidden;
  box-shadow:var(--sh-lg);
}
.cta-inner::before{
  content:'';position:absolute;inset:0;border-radius:inherit;
  background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(201,169,110,0.11) 0%,transparent 70%);
  pointer-events:none;
}
.cta-inner>*{position:relative;z-index:1}
.cta-title{
  font-family:var(--head-font);
  font-size:clamp(1.8rem,3.5vw,2.9rem);font-weight:700;
  margin-bottom:16px;max-width:560px;margin-left:auto;margin-right:auto;
}
.cta-sub{font-size:1.05rem;color:var(--text-2);line-height:1.72;max-width:460px;margin:0 auto 36px}
.cta-btns{display:flex;flex-wrap:wrap;gap:14px;justify-content:center}
.cta-note{margin-top:20px;font-size:0.79rem;color:var(--text-3)}
.cta-note i{margin-right:5px}

/* ================================================================
   FOOTER
   ================================================================ */
footer{background:var(--bg-2);border-top:1px solid var(--border);padding:40px 0 26px}
.footer-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px}
.footer-brand{font-family:var(--head-font);font-size:1.2rem;font-weight:700;color:var(--heading)}
.footer-links{display:flex;gap:2px;flex-wrap:wrap}
.footer-links a{
  padding:7px 13px;border-radius:var(--radius);
  font-size:0.82rem;color:var(--text-2);text-decoration:none;
  transition:color var(--tr),background var(--tr);
}
.footer-links a:hover{color:var(--gold);background:var(--surface)}
.footer-copy{font-size:0.77rem;color:var(--text-3)}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal{
  opacity:0;transform:translateY(26px);
  transition:opacity 0.58s cubic-bezier(0.4,0,0.2,1),transform 0.58s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible{opacity:1;transform:none}
.reveal-left{opacity:0;transform:translateX(-28px);transition:opacity 0.62s ease,transform 0.62s ease}
.reveal-left.visible{opacity:1;transform:none}
.reveal-right{opacity:0;transform:translateX(28px);transition:opacity 0.62s ease,transform 0.62s ease}
.reveal-right.visible{opacity:1;transform:none}
.delay-1{transition-delay:0.09s}.delay-2{transition-delay:0.18s}
.delay-3{transition-delay:0.27s}.delay-4{transition-delay:0.36s}
.delay-5{transition-delay:0.45s}

/* ================================================================
   SOCIAL FLOAT + SCROLL TOP
   ================================================================ */
.social-float{
  position:fixed;left:18px;bottom:50%;transform:translateY(50%);
  display:flex;flex-direction:column;gap:7px;z-index:50;
}
.social-float a{
  width:36px;height:36px;border-radius:var(--radius);
  background:var(--surface);backdrop-filter:blur(10px);
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--text-2);text-decoration:none;font-size:0.88rem;
  transition:color var(--tr),border-color var(--tr),transform var(--tr);
}
.social-float a:hover{color:var(--gold);border-color:var(--gold);transform:scale(1.08)}
.scroll-top{
  position:fixed;right:18px;bottom:24px;z-index:50;
  width:40px;height:40px;border-radius:var(--radius);
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  border:none;cursor:pointer;color:#0a0a0f;font-size:0.95rem;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 18px rgba(201,169,110,0.42);
  opacity:0;transform:translateY(10px);
  transition:opacity var(--tr),transform var(--tr);
}
.scroll-top.visible{opacity:1;transform:none}
.scroll-top:hover{transform:translateY(-2px)}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:1024px){
  .hero-grid{grid-template-columns:1fr;gap:48px}
  .hero-right{justify-content:flex-start}
  .hero-img-frame{max-width:380px}
  .truth-grid,.about-grid{grid-template-columns:1fr;gap:48px}
  .reviews-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid .review-card:nth-child(2),
  .reviews-grid .review-card:nth-child(5){margin-top:0}
  .process-steps{grid-template-columns:repeat(2,1fr)}
  .process-steps::before{display:none}
  .social-float{display:none}
  .hf-stat-big{left:0;bottom:32px}
  .hf-checks{right:-20px}
}
@media(max-width:768px){
  .section-pad{padding:64px 0}
  .hero{padding:80px 0 48px}
  .hero-img-frame{max-width:300px}
  .hf-badge,.hf-checks,.hf-skills{display:none}
  .hf-stat-big{left:-8px;bottom:20px}
  .nav-links,.nav-right .btn{display:none}
  .nav-toggle{display:flex}
  .who-grid{grid-template-columns:1fr}
  .ba-cell{padding:13px 18px}
  .cta-inner{padding:44px 24px}
  .reviews-grid{grid-template-columns:1fr}
  .reviews-grid .review-card:nth-child(2),
  .reviews-grid .review-card:nth-child(5){margin-top:0}
  .process-steps{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;text-align:center}
  .footer-links{justify-content:center}
  .hero-stats{gap:24px}
  .hero-trustpilot{margin-bottom:20px}
  .font-test-panel,.font-test-toggle{display:none}
}
@media(max-width:480px){
  .hero-cta-row{flex-direction:column}
  .hero-cta-row .btn{justify-content:center}
  .ba-table-head,.ba-row{grid-template-columns:1fr}
  .ba-cell.before-cell{border-right:none;border-bottom:1px solid var(--border)}
  .hero-stats{flex-direction:column;gap:20px}
}
@media print{.nav-wrap,.social-float,.scroll-top,.hero-blob,.font-test-panel,.font-test-toggle{display:none}}
