/* ============================================================
   Revenue Recovery Desk — landing page
   Palette: warm orange + amber + white + charcoal
   ============================================================ */

:root {
  --orange-50:  #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;   /* primary */
  --orange-700: #c2410c;   /* hover */
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  --amber-400:  #fbbf24;
  --amber-500:  #f59e0b;
  --rose-400:   #fb7185;

  --ink:    #1c1917;       /* warm black */
  --body:   #44403c;       /* warm grey body */
  --muted:  #78716c;
  --line:   #f5f5f4;
  --line-2: #e7e5e4;
  --white:  #ffffff;
  --cream:  #fafaf7;

  --shadow-sm: 0 1px 2px rgba(28, 25, 23, .04);
  --shadow-md: 0 8px 18px -8px rgba(28, 25, 23, .14),
               0 2px 4px rgba(28, 25, 23, .05);
  --shadow-lg: 0 22px 44px -18px rgba(28, 25, 23, .22),
               0 6px 12px rgba(28, 25, 23, .06);
  --shadow-orange: 0 22px 44px -18px rgba(234, 88, 12, .35),
                   0 6px 12px rgba(234, 88, 12, .14);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--white);
  color: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); line-height: 1.12; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; }
em { font-style: normal; color: var(--orange-700); font-weight: 600; }
strong { color: var(--ink); }

img { max-width: 100%; display: block; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; gap: 28px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.02rem; color: var(--ink);
  text-decoration: none; letter-spacing: -.01em;
}
.brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  box-shadow: 0 0 0 4px rgba(234, 88, 12, .15);
}
.nav-links { margin-left: auto; display: flex; gap: 26px; }
.nav-links a {
  color: var(--body); text-decoration: none; font-weight: 500; font-size: .94rem;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--orange-600); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px; font-weight: 600; font-size: .94rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(180deg, var(--orange-500) 0%, var(--orange-600) 100%);
  color: var(--white); box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-1px);
  box-shadow: 0 28px 48px -16px rgba(234, 88, 12, .50),
              0 8px 16px rgba(234, 88, 12, .18); }
.btn-ghost {
  background: var(--white); color: var(--ink); border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--cream); border-color: var(--orange-300); color: var(--orange-700); }
.btn-soft {
  background: var(--orange-50); color: var(--orange-700); border-color: var(--orange-200);
  padding: 10px 16px; font-size: .9rem;
}
.btn-soft:hover { background: var(--orange-100); border-color: var(--orange-300); }
.btn-white { background: var(--white); color: var(--orange-700); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 22px 44px -12px rgba(255,255,255,.5); }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden; padding: 80px 0 100px;
  background:
    radial-gradient(900px 360px at 8% -10%, rgba(251, 191, 36, .18), transparent 60%),
    radial-gradient(700px 300px at 100% 0%, rgba(251, 113, 133, .14), transparent 60%),
    linear-gradient(180deg, var(--orange-50) 0%, var(--white) 100%);
}
.hero-bg-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0;
}
.hero-blob-1 {
  width: 360px; height: 360px; top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(251, 146, 60, .35) 0%, transparent 70%);
}
.hero-blob-2 {
  width: 280px; height: 280px; bottom: -60px; left: -60px;
  background: radial-gradient(circle, rgba(251, 191, 36, .30) 0%, transparent 70%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 60px; align-items: center;
}
.eyebrow {
  display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange-700);
  background: var(--orange-50); padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--orange-200); margin-bottom: 1.2rem;
}
.eyebrow-center { display: inline-block; }
.grad-text {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--rose-400) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lead { font-size: 1.18rem; color: var(--body); margin-top: 1.1rem; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin: 1.8rem 0 1.2rem; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  color: var(--muted); font-size: .9rem; font-weight: 500;
}
.hero-photo { position: relative; }
.photo-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--orange-100);
  aspect-ratio: 4 / 5;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--white); border-radius: 18px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center;
}
.photo-badge strong {
  font-size: 1.75rem; font-weight: 800;
  background: linear-gradient(135deg, var(--orange-600), var(--rose-400));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.photo-badge span { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ============ TRUST STRIP ============ */
.trust {
  padding: 50px 0; background: var(--cream);
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.trust-label {
  text-align: center; color: var(--muted); font-size: .9rem; font-weight: 600;
  letter-spacing: .04em; margin-bottom: 1.8rem;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px; text-align: center;
}
.trust-num {
  font-size: 1.85rem; font-weight: 800; color: var(--ink); margin-bottom: 4px;
  background: linear-gradient(135deg, var(--orange-600), var(--amber-500));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.trust-cap { font-size: .87rem; color: var(--muted); font-weight: 500; }

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.section-sub { color: var(--body); font-size: 1.05rem; margin-top: 1rem; }

/* ============ HERO (centered variant, no photo) ============ */
.hero-centered { padding: 100px 0 110px; }
.hero-centered .hero-text { max-width: 820px; }
.hero-centered h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.hero-centered .lead { font-size: 1.22rem; max-width: 640px; }

/* ============ FEATURES — text-only cards with gradient header ============ */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}
.feature-card {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--orange-50), var(--orange-100));
}
.feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.22,1,.36,1); }
.feature-card:hover .feature-img-wrap img { transform: scale(1.04); }

.feature-illust {
  height: 130px; display: grid; place-items: center; position: relative; overflow: hidden;
}
.feature-illust::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35) 0%, transparent 60%);
}
.feature-illust-1 { background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-700) 100%); }
.feature-illust-2 { background: linear-gradient(135deg, var(--amber-500) 0%, var(--orange-500) 100%); }
.feature-illust-3 { background: linear-gradient(135deg, var(--orange-600) 0%, var(--rose-400) 100%); }
.illust-glyph { font-size: 3.2rem; position: relative; z-index: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,.18)); }
.feature-card .feature-num { padding: 18px 24px 0; margin-bottom: 0; }
.feature-card h3 { padding: 0 24px; font-size: 1.3rem; line-height: 1.25; margin: 8px 0 10px; }
.feature-card p { padding: 0 24px; font-size: .96rem; color: var(--body); margin-bottom: 1.2rem; flex-grow: 1; }
.feature-card .btn-soft { margin: 0 24px 24px; align-self: flex-start; }

.features { padding: 100px 0; }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
  margin-bottom: 90px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row-reverse .feature-text { order: 2; }
.feature-row-reverse .feature-img  { order: 1; }
.feature-num {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .15em;
  color: var(--orange-600); margin-bottom: .9rem;
}
.feature-text h3 { font-size: 1.85rem; line-height: 1.18; margin-bottom: .8rem; }
.feature-text p { font-size: 1.04rem; color: var(--body); margin-bottom: 1.4rem; }
.feature-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }

/* ============ HOW IT WORKS ============ */
.how { padding: 100px 0; background: var(--cream); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.step {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: 32px 26px; box-shadow: var(--shadow-md);
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white); font-weight: 800; font-size: 1.2rem;
  box-shadow: 0 10px 20px -8px rgba(234, 88, 12, .50);
  margin-bottom: 1.1rem;
}
.step h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--body); margin: 0; }

/* ============ TEAMS ============ */
.teams { padding: 100px 0; }
.teams-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.team-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
  border: 1px solid var(--line-2); box-shadow: var(--shadow-md);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card img { aspect-ratio: 16/10; object-fit: cover; }
.team-cap {
  padding: 22px 22px 26px; font-size: .98rem; color: var(--ink); line-height: 1.45;
}
.team-cap span { display: block; margin-top: 10px; color: var(--muted); font-size: .85rem; font-weight: 500; }

/* ============ FOUNDER ============ */
.founder {
  padding: 100px 0; background: linear-gradient(180deg, var(--white) 0%, var(--orange-50) 100%);
}
.founder-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center;
}
.founder-photo img {
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; object-fit: cover;
}
.founder-photo-empty {
  aspect-ratio: 4/5; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--orange-100), var(--orange-200));
  border: 2px dashed var(--orange-300); display: grid; place-items: center;
  color: var(--orange-700); font-size: .9rem; font-weight: 600; text-align: center; padding: 24px;
}
.founder-photo-empty::before {
  content: "Drop founder.jpg here";
  display: block;
}

.founder-sign {
  margin-top: 1.6rem; font-style: italic; color: var(--orange-700); font-weight: 600;
}

/* ============ WHY US ============ */
.whyus { padding: 100px 0; }
.whyus-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.why-card {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-ic {
  font-size: 1.9rem; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange-50), var(--orange-100));
  border: 1px solid var(--orange-200); margin-bottom: 1.1rem;
}
.why-card h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: .55rem; line-height: 1.2; }
.why-card p { font-size: .95rem; color: var(--body); margin: 0; line-height: 1.55; }

/* ============ PRICING ============ */
.pricing { padding: 100px 0; background: var(--cream); }
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px; max-width: 920px; margin: 0 auto; align-items: stretch;
}
.price-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 42px 36px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line-2);
  text-align: center; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.price-card-featured {
  background: linear-gradient(180deg, #ffffff 0%, var(--orange-50) 100%);
  border: 2px solid var(--orange-400);
  box-shadow: var(--shadow-orange);
  transform: translateY(-6px);
}
.price-card-featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 36px 70px -22px rgba(234, 88, 12, .50),
              0 12px 22px rgba(234, 88, 12, .18);
}
.price-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white); font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  padding: 5px 11px; border-radius: 999px;
  box-shadow: 0 6px 14px -4px rgba(234, 88, 12, .50);
}
.price-tier-pro {
  background: linear-gradient(135deg, var(--orange-600), var(--amber-500));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.price-tagline {
  color: var(--muted); font-size: .92rem; margin: -.8rem 0 1.6rem;
}
.price-tagline strong { color: var(--orange-700); }

.price-compare {
  max-width: 720px; margin: 50px auto 0;
  text-align: center; color: var(--body); font-size: 1rem;
  padding: 22px 28px; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line-2);
}
.price-compare strong { color: var(--orange-700); }

@media (max-width: 720px) {
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }
}
.price-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--orange-500), var(--amber-500), var(--rose-400));
}
.price-tier {
  font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-600); margin-bottom: 1.4rem;
}
.price-amount {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  margin-bottom: 2rem;
}
.price-amount strong {
  font-size: 4rem; font-weight: 800; color: var(--ink); line-height: 1;
  background: linear-gradient(135deg, var(--orange-600), var(--amber-500));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.price-amount span { color: var(--muted); font-size: .95rem; }
.price-features {
  list-style: none; padding: 0; margin: 0 0 2rem; text-align: left;
}
.price-features li {
  padding: 9px 0; font-size: .98rem; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.price-features li:last-child { border-bottom: none; }
.price-meta { color: var(--muted); font-size: .85rem; margin-top: 1.2rem; }

/* ============ FAQ ============ */
.faq { padding: 100px 0; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius);
  margin-bottom: 14px; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item summary {
  padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--ink); font-size: 1.02rem;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--orange-600); font-size: 1.4rem; font-weight: 600;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 24px 22px; color: var(--body); margin: 0; line-height: 1.6; }

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative; overflow: hidden; padding: 100px 0;
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 50%, var(--amber-500) 100%);
  color: var(--white); text-align: center;
}
.cta-bg-blob {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, transparent 60%);
  top: -200px; left: 50%; transform: translateX(-50%); filter: blur(40px);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.final-cta p { color: rgba(255, 255, 255, .9); font-size: 1.1rem; margin-bottom: 2rem; }

/* ============ FOOTER ============ */
.footer { padding: 36px 0; background: var(--ink); color: rgba(255, 255, 255, .65); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-brand { color: var(--white); font-weight: 700; display: inline-flex; align-items: center; gap: 10px; }
.footer-meta { font-size: .88rem; }

/* ============ SCROLL REVEAL ANIMATION ============ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .hero-grid, .feature-row, .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-row-reverse .feature-text { order: 1; }
  .feature-row-reverse .feature-img  { order: 2; }
  .hero { padding: 60px 0 80px; }
  .features, .how, .teams, .founder, .pricing, .faq, .final-cta { padding: 70px 0; }
  .hero-meta { gap: 14px; font-size: .85rem; }
}
@media (max-width: 520px) {
  .container, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .photo-badge { left: auto; right: -10px; bottom: -10px; padding: 10px 14px; }
  .photo-badge strong { font-size: 1.4rem; }
}
