/* =====================================================
   FAInances — Apple-style Landing Page
   ===================================================== */

/* --- Adobe Clean Font Faces ------------------------- */
/*
 * Font files live at:
 *   wp-content/themes/fainances/fonts/
 *
 * Upload every AdobeClean-*.otf file into that folder.
 * The @font-face src paths below are relative to this CSS file
 * (css/ → ../fonts/), so no path changes are needed after upload.
 */

/* Regular */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Regular Italic */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-It.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Semi Light */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-SemiLight.otf") format("opentype");
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}

/* Semi Light Italic */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-SemiLightIt.otf") format("opentype");
  font-weight: 350;
  font-style: italic;
  font-display: swap;
}

/* Light */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Light Italic */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-LightIt.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Medium */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Bold Italic */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-BoldIt.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Extra Bold */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Extra Bold Italic */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-ExtraBoldIt.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Black — primary heading weight */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Black Italic */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-BlackIt.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* Condensed variants — available via font-stretch */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-Cond.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-stretch: condensed;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-CondIt.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-stretch: condensed;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-BoldCond.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-stretch: condensed;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-BoldCondIt.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-stretch: condensed;
  font-display: swap;
}

/* Semi-Condensed variants */
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-SemiCn.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-stretch: semi-condensed;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-SemiCnIt.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-stretch: semi-condensed;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-BoldSemiCn.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-stretch: semi-condensed;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Clean";
  src: url("../fonts/AdobeClean-BoldSemiCnIt.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-stretch: semi-condensed;
  font-display: swap;
}

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

:root {
  --black:        #000000;
  --off-black:    #0a0a0a;
  --dark-1:       #111111;
  --dark-2:       #1c1c1e;
  --dark-3:       #2c2c2e;
  --dark-card:    #161618;
  --border:       rgba(255,255,255,0.08);
  --white:        #ffffff;
  --grey-1:       #f5f5f7;
  --grey-2:       #a1a1a6;
  --grey-3:       #6e6e73;
  --accent:       #00c479;   /* brand green */
  --accent-glow:  rgba(0,196,121,0.25);
  --accent-red:   #ff453a;
  --blue:         #0a84ff;
  --yellow:       #ffd60a;
  --gradient-hero: linear-gradient(180deg, #0f0f0f 0%, #000000 100%);
  --font:         "Adobe Clean", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Adobe Clean", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --nav-height:   52px;
  --max-w:        1200px;
  --radius:       20px;
  --radius-lg:    28px;
  --shadow-card:  0 8px 40px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* --- Heading / body type assignment ----------------- */
/*
 * All heading elements → Adobe Clean Black (weight 900)
 * Body copy, nav, labels, etc → Adobe Clean Regular (weight 400)
 * The body rule above sets weight 400 for everything;
 * headings override to 900 here.
 */
h1, h2, h3, h4, h5, h6,
.headline, .headline-xl,
.hero__headline,
.pillar-card__title,
.metric-card__value,
.feature-row__content h3,
.privacy-card__title,
.testimonial-card__name,
.cta-banner__headline,
.footer-brand__logo {
  font-family: var(--font-heading);
  font-weight: 900;   /* Adobe Clean Black */
}

/* Eyebrow labels, nav, footer columns stay Regular/Medium */
.eyebrow, .label,
.site-nav__links a,
.site-nav__logo,
.footer-col__title {
  font-family: var(--font);
  font-weight: 500;   /* Adobe Clean Medium */
}

/* Subheadlines / body copy — Regular */
.subheadline,
.pillar-card__desc,
.feature-row__bullet span,
.privacy-card__desc,
.testimonial-card__text,
.testimonial-card__role,
.footer-brand__desc,
.footer-col__links a,
.site-footer__copy {
  font-family: var(--font);
  font-weight: 400;   /* Adobe Clean Regular */
}

/* --- Typography ------------------------------------- */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
}
.headline-xl {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.subheadline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--grey-2);
}
.label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-3);
}

/* --- Nav -------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(0,0,0,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.site-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav__logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.site-nav__logo span { color: var(--accent); }
.site-nav__links {
  display: flex;
  gap: 32px;
}
.site-nav__links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--grey-1);
  transition: color 0.2s;
}
.site-nav__links a:hover { color: var(--white); }
.site-nav__cta {
  background: var(--accent);
  color: var(--black) !important;
  padding: 7px 18px;
  border-radius: 980px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.site-nav__cta:hover { opacity: 0.85; }

/* --- Buttons ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
}
.btn:hover { opacity: 0.88; transform: scale(0.985); }
.btn--primary { background: var(--accent); color: var(--black); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.5); }

/* --- Sections --------------------------------------- */
section { padding: 120px 24px; }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .eyebrow { margin-bottom: 14px; }
.section-header .headline { margin-bottom: 20px; }
.section-header .subheadline { max-width: 600px; margin: 0 auto; }

/* --- Hero ------------------------------------------- */
.hero {
  padding-top: calc(var(--nav-height) + 100px);
  padding-bottom: 0;
  text-align: center;
  background: var(--gradient-hero);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(0,196,121,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,196,121,0.12);
  border: 1px solid rgba(0,196,121,0.3);
  border-radius: 980px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__tagline {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  color: var(--grey-2);
  margin-bottom: 16px;
}
.hero__headline {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero__headline .accent { color: var(--accent); }
.hero__sub {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--grey-2);
  max-width: 580px;
  margin: 0 auto 44px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero__store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}
.hero__store-badge:hover { opacity: 0.88; transform: scale(0.985); }
.hero__store-badge svg { width: 24px; height: 24px; }
.hero__phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin: 0 auto;
  max-width: 800px;
}
.hero__phones::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,196,121,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* =====================================================
   iPhone frame — wrap any screenshot in .iphone
   Usage:
     <div class="iphone iphone--lg">
       <img src="screenshot.png" alt="...">
     </div>
   Sizes: iphone--sm | iphone--md (default) | iphone--lg
   ===================================================== */

.iphone {
  position: relative;
  display: inline-block;
  flex-shrink: 0;

  /* Bezel */
  background: #1a1a1a;
  border-radius: 52px;
  padding: 10px;

  /* Frame depth */
  box-shadow:
    0 0 0 1.5px #3a3a3a,            /* outer rim highlight */
    0 0 0 3px #111,                  /* gap between rim and body */
    0 30px 70px rgba(0,0,0,0.7),    /* drop shadow */
    inset 0 0 0 1px rgba(255,255,255,0.06); /* inner glow */
}

/* Side buttons via pseudo-elements */
.iphone::before,
.iphone::after {
  content: '';
  position: absolute;
  background: #2a2a2a;
  border-radius: 3px;
}
/* Volume buttons — left side */
.iphone::before {
  left: -4px;
  top: 28%;
  width: 4px;
  height: 18%;
  box-shadow: 0 28px 0 #2a2a2a; /* second volume button */
}
/* Power button — right side */
.iphone::after {
  right: -4px;
  top: 30%;
  width: 4px;
  height: 12%;
}

/* The screenshot itself */
.iphone img {
  display: block;
  border-radius: 44px;
  object-fit: cover;
  object-position: top center;
  /* width/height set per size class below — never inherit from parent */
}

/* Sizes — explicit px on both the wrapper and the img */
.iphone--sm  { width: 185px; }
.iphone--sm  img { width: 185px; height: 400px; }

.iphone--md  { width: 200px; }
.iphone--md  img { width: 200px; height: 433px; }

/* Default (no modifier) falls back to --md */
.iphone:not(.iphone--sm):not(.iphone--md):not(.iphone--lg) { width: 200px; }
.iphone:not(.iphone--sm):not(.iphone--md):not(.iphone--lg) img { width: 200px; height: 433px; }

.iphone--lg  { width: 220px; }
.iphone--lg  img { width: 220px; height: 476px; }

/* Gallery label below frame */
.iphone-label {
  text-align: center;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-3);
}
/* placeholder screen content */
.phone-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  padding: 50px 16px 20px;
  gap: 12px;
}
.phone-placeholder__bar {
  height: 8px;
  border-radius: 4px;
  background: var(--dark-3);
}
.phone-placeholder__bar--accent { background: var(--accent); width: 60%; }
.phone-placeholder__bar--half { width: 50%; }
.phone-placeholder__bar--third { width: 33%; }
.phone-placeholder__card {
  background: var(--dark-2);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-placeholder__number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.phone-placeholder__number--red { color: var(--accent-red); }
.phone-placeholder__number--green { color: var(--accent); }
.phone-placeholder__chart {
  height: 40px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(0,196,121,0.2) 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.phone-placeholder__chart::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, var(--dark-2));
}

/* --- Pillars ---------------------------------------- */
.pillars { background: var(--off-black); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar-card {
  background: var(--dark-card);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.pillar-card:hover { background: #1a1a1c; }
.pillar-card__number {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--dark-3);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.pillar-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.pillar-card__icon--track  { background: rgba(10,132,255,0.15); color: var(--blue); }
.pillar-card__icon--org    { background: rgba(255,214,10,0.12); color: var(--yellow); }
.pillar-card__icon--strat  { background: rgba(0,196,121,0.12); color: var(--accent); }
.pillar-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pillar-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--grey-2);
}
.pillar-card__glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  opacity: 0.06;
}
.pillar-card--track  .pillar-card__glow { background: var(--blue); }
.pillar-card--org    .pillar-card__glow { background: var(--yellow); }
.pillar-card--strat  .pillar-card__glow { background: var(--accent); }

/* --- Feature Showcase ------------------------------- */
.feature-showcase { background: var(--black); }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse .feature-row__visual { order: -1; }
.feature-row__content { max-width: 480px; }
.feature-row__content .eyebrow { margin-bottom: 16px; }
.feature-row__content .headline { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.feature-row__content .subheadline { margin-bottom: 32px; }
.feature-row__bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-row__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--grey-2);
  line-height: 1.5;
}
.feature-row__bullet-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,196,121,0.15);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-row__bullet-dot svg { width: 10px; height: 10px; fill: var(--accent); }
.feature-row__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}
.feature-row__visual::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(0,196,121,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Screens Gallery -------------------------------- */
.screens-gallery { background: var(--off-black); overflow: hidden; }
.screens-gallery__track {
  display: flex;
  gap: 20px;
  padding: 40px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.screens-gallery__track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex-shrink: 0;
  scroll-snap-align: start;
}
.gallery-item .iphone { width: 200px; }
.gallery-item .iphone img { height: 433px; }
.gallery-label {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Privacy ---------------------------------------- */
.privacy { background: var(--black); text-align: center; }
.privacy__shield {
  width: 120px; height: 120px;
  border-radius: 30px;
  background: rgba(0,196,121,0.1);
  border: 1.5px solid rgba(0,196,121,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  font-size: 3rem;
}
.privacy__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  text-align: left;
}
.privacy-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.privacy-card__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.privacy-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.privacy-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--grey-2);
}

/* --- Metrics ---------------------------------------- */
.metrics { background: var(--off-black); }
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.metric-card {
  background: var(--dark-card);
  padding: 48px 32px;
  text-align: center;
}
.metric-card__value {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}
.metric-card__label {
  font-size: 0.9rem;
  color: var(--grey-2);
  line-height: 1.4;
}

/* --- Testimonials ----------------------------------- */
.testimonials { background: var(--black); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: var(--yellow);
  font-size: 0.9rem;
}
.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--grey-1);
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}
.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--grey-3);
}

/* --- CTA Banner ------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, #0a1a12 0%, #000 50%, #0a0f1a 100%);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner__headline { margin-bottom: 16px; color: var(--white); }
.cta-banner__sub { max-width: 480px; margin: 0 auto 40px; }
.cta-banner__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner__store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}
.cta-banner__store:hover { opacity: 0.88; transform: scale(0.985); }

/* --- Footer ----------------------------------------- */
.site-footer {
  background: var(--off-black);
  padding: 60px 24px;
  border-top: 1px solid var(--border);
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand__logo {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.footer-brand__logo span { color: var(--accent); }
.footer-brand__desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--grey-3);
  max-width: 260px;
}
.footer-col__title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col__links a {
  font-size: 0.88rem;
  color: var(--grey-3);
  transition: color 0.2s;
}
.footer-col__links a:hover { color: var(--white); }
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__copy {
  font-size: 0.8rem;
  color: var(--grey-3);
}
.site-footer__legal {
  display: flex;
  gap: 24px;
}
.site-footer__legal a {
  font-size: 0.8rem;
  color: var(--grey-3);
  transition: color 0.2s;
}
.site-footer__legal a:hover { color: var(--white); }

/* --- Animations ------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* --- Responsive ------------------------------------- */
@media (max-width: 1024px) {
  .pillars__grid { grid-template-columns: 1fr; gap: 2px; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 20px; }
  .site-nav__links { display: none; }
  .hero { padding-top: calc(var(--nav-height) + 60px); }
  .hero__phones { gap: 10px; }
  .iphone--lg       { width: 180px; }
  .iphone--lg img   { width: 180px; height: 390px; }
  .iphone--md       { width: 160px; }
  .iphone--md img   { width: 160px; height: 346px; }
  .iphone--sm       { display: none; }
  .feature-row { grid-template-columns: 1fr; gap: 48px; }
  .feature-row--reverse .feature-row__visual { order: unset; }
  .privacy__cards { grid-template-columns: 1fr; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .headline { font-size: 2.2rem; }
  .hero__headline { font-size: 2.8rem; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: 1fr; }
  .hero__phones { gap: 6px; }
  .iphone--md { display: none; }
}
