/* ===========================================================
   TalkiesV — Give Your Business a Voice with AI
   Light theme. Brand color derived from logo: gold + navy.
   =========================================================== */

:root {
  /* Brand palette (from logo) */
  --gold: #ffc000;
  --gold-deep: #f0a500;
  --gold-soft: #fff3cc;
  --gold-tint: #fffaf0;
  --navy: #14162b;
  --navy-2: #1f2347;
  --ink: #14162b;

  /* Neutrals */
  --bg: #ffffff;
  --bg-alt: #fbfaf6;
  --bg-soft: #f6f5f0;
  --line: #ececec;
  --text: #1d1f2b;
  --muted: #6b6e7e;
  --white: #ffffff;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(20, 22, 43, .06), 0 1px 2px rgba(20, 22, 43, .04);
  --shadow-md: 0 8px 30px rgba(20, 22, 43, .08);
  --shadow-lg: 0 24px 60px rgba(20, 22, 43, .12);
  --shadow-gold: 0 12px 30px rgba(255, 192, 0, .35);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1200px;
  --nav-h: 76px;

  --grad-gold: linear-gradient(135deg, #ffd24d 0%, #ffc000 45%, #f0a500 100%);
  --grad-navy: linear-gradient(160deg, #1f2347 0%, #14162b 100%);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 18px; }

.text-gold { color: var(--gold-deep); }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--grad-gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255, 192, 0, .45); }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-2); }

.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-tint); }

.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ===================== Navbar ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 4px; }
.nav-right { justify-content: flex-end; }
.nav-center { display: flex; justify-content: center; }

.nav-logo img { height: 42px; width: auto; }

.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 10px;
  transition: color .2s, background .2s;
  cursor: pointer;
}
.nav-link:hover { color: var(--gold-deep); background: var(--gold-tint); }
.nav-link.active { color: var(--gold-deep); }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s var(--ease);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  transition: background .15s;
}
.drop a:hover { background: var(--gold-tint); color: var(--gold-deep); }
.drop a .di { font-size: 17px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  line-height: 0;
}
.nav-toggle svg { width: 28px; height: 28px; stroke-width: 2.2; }
.nav-toggle [data-icon] > svg { width: 28px; height: 28px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 6px;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--bg-soft);
}
.mobile-menu a:hover { color: var(--gold-deep); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; border-bottom: none; }

/* ===================== Hero ===================== */
.hero {
  padding: 80px 0 90px;
  background:
    radial-gradient(1000px 480px at 85% -8%, rgba(255, 192, 0, .18), transparent 60%),
    radial-gradient(800px 420px at 0% 110%, rgba(31, 35, 71, .06), transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  margin-bottom: 22px;
}
.hero h1 .hl {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 22px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta .dot { color: var(--gold-deep); font-weight: 700; }

/* Hero dashboard */
.dashboard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.dash-bar .d { width: 11px; height: 11px; border-radius: 50%; background: #e2e2e2; }
.dash-bar .d:nth-child(1) { background: #ff6058; }
.dash-bar .d:nth-child(2) { background: #ffbd2e; }
.dash-bar .d:nth-child(3) { background: #29c93f; }
.dash-bar .dash-title { margin-left: 8px; font-size: 13px; color: var(--muted); font-weight: 600; }
.dash-body { padding: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.dash-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: var(--bg-alt);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.dash-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.dash-card .ico {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--gold-soft);
  font-size: 19px;
  margin-bottom: 10px;
}
.dash-card h4 { font-size: 14.5px; margin-bottom: 4px; }
.dash-card p { font-size: 12.5px; color: var(--muted); }
.dash-wave { display: flex; align-items: flex-end; gap: 3px; height: 26px; margin-top: 10px; }
.dash-wave i {
  flex: 1;
  background: var(--grad-gold);
  border-radius: 3px;
  animation: wave 1.2s ease-in-out infinite;
}
@keyframes wave { 0%, 100% { height: 30%; } 50% { height: 100%; } }

/* ===================== Trusted ===================== */
.trusted { padding: 44px 0; border-bottom: 1px solid var(--line); }
.trusted p { text-align: center; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; }
.logos span {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #b9bbc6;
  letter-spacing: -.01em;
  transition: color .2s;
}
.logos span:hover { color: var(--navy); }

/* ===================== Generic blocks ===================== */
.block { padding: 90px 0; }
.block.alt { background: var(--bg-alt); }
.block.soft { background: var(--bg-soft); }

/* Problem grid */
.prob-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.prob {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; font-weight: 500; font-size: 15px;
}
.prob .x { color: #e05a4f; font-size: 18px; }

/* Product cards */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.product .picon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-gold);
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
}
.product h3 { font-size: 22px; margin-bottom: 10px; }
.product > p { color: var(--muted); margin-bottom: 18px; font-size: 15px; }
.product ul { display: flex; flex-direction: column; gap: 9px; }
.product li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--text); }
.product li .ck { color: var(--gold-deep); font-weight: 800; }
.product .plink { margin-top: 22px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--gold-deep); }
.product .plink:hover { gap: 10px; }

/* Feature pill grid */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 20px; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.feat .fi {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-soft); display: grid; place-items: center;
  font-size: 21px; margin-bottom: 14px;
}
.feat h4 { font-size: 16px; margin-bottom: 6px; }
.feat p { font-size: 13.5px; color: var(--muted); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 10px 20px; font-weight: 600; font-size: 14.5px;
  transition: all .2s var(--ease);
}
.chip:hover { background: var(--grad-gold); color: var(--navy); border-color: transparent; transform: translateY(-2px); }

/* Workflow steps */
.flow { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; justify-content: center; }
.step {
  flex: 1; min-width: 150px; text-align: center; padding: 0 14px; position: relative;
}
.step .num {
  width: 54px; height: 54px; margin: 0 auto 14px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-gold); color: var(--navy);
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px;
  box-shadow: var(--shadow-gold);
}
.step h4 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--muted); }
.step:not(:last-child)::after {
  content: '→'; position: absolute; top: 16px; right: -8px;
  color: var(--gold); font-size: 22px; font-weight: 700;
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
.stat { text-align: center; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.stat .n { font-family: 'Sora', sans-serif; font-size: 34px; font-weight: 800; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: 2; }
.split h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 18px; }
.split p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.split ul { display: flex; flex-direction: column; gap: 12px; }
.split li { display: flex; gap: 10px; font-size: 15.5px; }
.split li .ck { color: var(--gold-deep); font-weight: 800; }
.split-media {
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Industry tags */
.tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tag { background: var(--gold-tint); border: 1px solid var(--gold-soft); color: var(--navy); border-radius: 12px; padding: 12px 18px; font-weight: 600; font-size: 14.5px; }
.tag:hover { background: var(--gold-soft); }

/* ===================== Pricing ===================== */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan.feature { border: 2px solid var(--gold); box-shadow: var(--shadow-gold); position: relative; }
.plan.feature::before {
  content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: var(--navy); font-size: 12px; font-weight: 700;
  padding: 5px 16px; border-radius: var(--radius-pill);
}
.plan h3 { font-size: 20px; margin-bottom: 4px; }
.plan .who { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.plan .price { font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 800; margin-bottom: 4px; }
.plan .price span { font-size: 15px; font-weight: 500; color: var(--muted); }
.plan ul { display: flex; flex-direction: column; gap: 11px; margin: 22px 0 26px; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; }
.plan li .ck { color: var(--gold-deep); font-weight: 800; }
.plan .btn { margin-top: auto; width: 100%; }

/* ===================== CTA band ===================== */
.cta-band { padding: 80px 0; }
.cta-box {
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 0%, rgba(255, 192, 0, .28), transparent 60%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.cta-box p { color: rgba(255, 255, 255, .8); font-size: 18px; margin-bottom: 28px; max-width: 560px; margin-inline: auto; }
.cta-box .hero-cta { justify-content: center; }

/* ===================== Page hero (sub pages) ===================== */
.page-hero {
  padding: 70px 0 60px;
  text-align: center;
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(255, 192, 0, .16), transparent 60%);
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 18px; }
.page-hero p { color: var(--muted); font-size: 19px; max-width: 640px; margin: 0 auto 28px; }
.page-hero .hero-cta { justify-content: center; }

/* ===================== Testimonials ===================== */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.tcard .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.tcard p { font-size: 15.5px; margin-bottom: 18px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; font-weight: 800; color: var(--navy); }
.tcard .who b { display: block; font-size: 14.5px; }
.tcard .who small { color: var(--muted); }

/* Integrations */
.intgs { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.intg { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; text-align: center; font-weight: 600; font-size: 14.5px; transition: all .2s; }
.intg:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.intg .ig { font-size: 24px; display: block; margin-bottom: 8px; }

/* Blog */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post .thumb { height: 160px; background: var(--grad-navy); position: relative; }
.post .thumb::after { content: ''; position: absolute; inset: 0; background: radial-gradient(400px 200px at 70% 20%, rgba(255,192,0,.4), transparent 60%); }
.post .pbody { padding: 22px; }
.post .cat { font-size: 12px; font-weight: 700; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .08em; }
.post h4 { font-size: 18px; margin: 8px 0; }
.post p { font-size: 14px; color: var(--muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255, 192, 0, .15);
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-info .ci { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .ci .cig { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.contact-info .ci h4 { font-size: 16px; margin-bottom: 3px; }
.contact-info .ci p { color: var(--muted); font-size: 14.5px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* About */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.value .vi { font-size: 30px; margin-bottom: 14px; }
.value h3 { font-size: 19px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 14.5px; }
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member { text-align: center; }
.member .ph { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 14px; background: var(--grad-gold); display: grid; place-items: center; font-family: 'Sora'; font-weight: 800; font-size: 30px; color: var(--navy); }
.member h4 { font-size: 16px; }
.member small { color: var(--muted); }

/* ===================== Footer ===================== */
.footer { background: var(--navy); color: rgba(255, 255, 255, .7); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; margin-bottom: 44px; }
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { font-size: 14.5px; max-width: 280px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; font-size: 16px; transition: background .2s; }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: .03em; }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; }
.footer-bottom a:hover { color: var(--gold); }

/* ===================== Reveal animation ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .products, .tcards, .posts { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-left, .nav-right { display: none; }
  .nav-inner { grid-template-columns: 1fr auto 1fr; }
  .nav-center { justify-content: center; }
  .nav-toggle { display: inline-flex; align-items: center; justify-self: start; }
  .hero-grid, .split, .split.rev, .contact-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .hero { padding: 50px 0 60px; }
}
@media (max-width: 680px) {
  .products, .tcards, .posts, .pricing, .values, .team, .dash-body { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .step:not(:last-child)::after { display: none; }
  .flow { gap: 28px; }
  .block { padding: 60px 0; }
}

/* ===========================================================
   v2 — icons, new hero, sleek CTA, content blocks
   =========================================================== */

/* SVG icon sizing — inherits color & box font-size */
[data-icon] { display: inline-flex; align-items: center; justify-content: center; }
[data-icon] > svg { width: 1em; height: 1em; display: block; }

.fi [data-icon], .picon [data-icon], .vi[data-icon], .cig [data-icon],
.di[data-icon], .ig[data-icon] { width: 1em; height: 1em; }

.di[data-icon] { font-size: 18px; color: var(--gold-deep); }
.fi [data-icon] { color: var(--gold-deep); }
.picon [data-icon] { color: var(--navy); }
.product li .ck [data-icon], .split li .ck [data-icon], .plan li .ck [data-icon] { width: 16px; height: 16px; }
.ck { display: inline-flex; align-items: center; }
.prob .x [data-icon] { width: 18px; height: 18px; }
.plink [data-icon] { width: 16px; height: 16px; }
.stars [data-icon] { width: 16px; height: 16px; display: inline-flex; }
.btn [data-icon] { width: 18px; height: 18px; }

/* ===================== NEW HERO (centered, layered) ===================== */
.hero2 {
  position: relative;
  text-align: center;
  padding: 76px 0 0;
  overflow: hidden;
  background:
    radial-gradient(820px 420px at 50% -6%, rgba(255, 192, 0, .22), transparent 62%),
    linear-gradient(180deg, var(--gold-tint), #fff 60%);
}
.hero2 .container { position: relative; z-index: 2; }
.hero2 h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 980px;
  margin: 22px auto 22px;
}
.hero2 h1 .hl {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero2 .lead {
  font-size: 20px; color: var(--muted);
  max-width: 660px; margin: 0 auto 34px;
}
.hero2 .hero-cta { justify-content: center; margin-bottom: 30px; }
.hero2 .hero-meta { justify-content: center; }

/* floating product pills */
.float-pill {
  position: absolute;
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 16px; font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-md); z-index: 1;
  animation: floaty 5s ease-in-out infinite;
}
.float-pill [data-icon] { width: 18px; height: 18px; color: var(--gold-deep); }
.float-pill.fp1 { top: 120px; left: 4%; animation-delay: 0s; }
.float-pill.fp2 { top: 210px; right: 5%; animation-delay: .8s; }
.float-pill.fp3 { top: 360px; left: 7%; animation-delay: 1.6s; }
.float-pill.fp4 { top: 320px; right: 8%; animation-delay: 1.2s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* hero app window */
.hero-app {
  position: relative;
  max-width: 980px;
  margin: 50px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px 20px 0 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(0);
}
.hero-app .dash-bar { border-radius: 0; }
.hero-app-body { display: grid; grid-template-columns: 220px 1fr; min-height: 320px; }
.hero-side { background: var(--bg-alt); border-right: 1px solid var(--line); padding: 18px 14px; }
.hero-side .si {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--muted);
  margin-bottom: 4px;
}
.hero-side .si [data-icon] { width: 18px; height: 18px; }
.hero-side .si.on { background: var(--gold-soft); color: var(--navy); font-weight: 600; }
.hero-main { padding: 26px; text-align: left; }
.hero-main .hm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero-main .hm-head h4 { font-size: 17px; }
.hero-main .hm-tag { font-size: 12px; font-weight: 700; color: var(--gold-deep); background: var(--gold-soft); padding: 5px 12px; border-radius: var(--radius-pill); }
.hm-input { border: 1px solid var(--line); border-radius: 12px; padding: 16px; color: var(--text); font-size: 14.5px; background: var(--bg-alt); margin-bottom: 18px; }
.hm-controls { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.hm-controls .pill { font-size: 12.5px; font-weight: 600; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 7px 14px; background: #fff; }
.hm-controls .pill.gold { background: var(--grad-gold); border-color: transparent; color: var(--navy); }
.bigwave { display: flex; align-items: flex-end; gap: 4px; height: 70px; }
.bigwave i { flex: 1; background: var(--grad-gold); border-radius: 4px; animation: wave 1.1s ease-in-out infinite; opacity: .85; }

@media (max-width: 760px) {
  .float-pill { display: none; }
  .hero-app-body { grid-template-columns: 1fr; }
  .hero-side { display: none; }
}

/* ===================== Marquee logos ===================== */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee-track span { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 21px; color: #b9bbc6; white-space: nowrap; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== Sleek pre-footer CTA ===================== */
.cta-sleek { padding: 30px 0 90px; }
.cta-sleek-inner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  background: linear-gradient(120deg, var(--gold-tint), #fff);
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
  overflow: hidden;
}
.cta-sleek-inner::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,192,0,.35), transparent 70%);
}
.cta-sleek-inner .cs-text { position: relative; z-index: 1; }
.cta-sleek-inner h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 8px; }
.cta-sleek-inner p { color: var(--muted); font-size: 17px; max-width: 520px; }
.cta-sleek-inner .cs-actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }

/* ===================== Prose / rich content ===================== */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 17.5px; color: #41434f; margin-bottom: 20px; }
.prose h3 { font-size: 24px; margin: 36px 0 12px; }
.lead-2 { font-size: 20px; color: var(--muted); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col .tc-media {
  background: var(--grad-navy); border-radius: var(--radius-lg); min-height: 300px;
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); padding: 36px;
}
.two-col .tc-media .big-ic { width: 76px; height: 76px; color: var(--gold); }
.two-col .tc-media .big-ic svg { width: 100%; height: 100%; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

/* numbered list */
.steps-list { display: grid; gap: 18px; }
.steps-list .sl {
  display: flex; gap: 16px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 20px 22px;
}
.steps-list .sl .sn {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  background: var(--grad-gold); color: var(--navy); display: grid; place-items: center;
  font-family: 'Sora'; font-weight: 800;
}
.steps-list .sl h4 { font-size: 16.5px; margin-bottom: 4px; }
.steps-list .sl p { font-size: 14.5px; color: var(--muted); }

/* spec/legal pages */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 22px; margin: 34px 0 12px; }
.legal p, .legal li { color: #41434f; font-size: 16px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; list-style: disc; }
.legal ul li { margin-bottom: 8px; }

/* footer address */
.footer-brand address { font-style: normal; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-brand .fcontact { font-size: 14px; line-height: 1.8; }
.footer-brand .fcontact a:hover { color: var(--gold); }

/* form status banner */
.form-status { padding: 14px 18px; border-radius: 12px; font-size: 15px; font-weight: 500; margin-bottom: 22px; }
.form-status.ok { background: #e9f8ef; color: #157a44; border: 1px solid #bfe8cf; }
.form-status.err { background: #fdecea; color: #b3261e; border: 1px solid #f5c6c2; }
