/* ===== davidnguyen-call — reflects videopod.co/offer design language ===== */
/* lime #94d32b on near-black · Oswald headings + Archivo body · // eyebrows · pills · glow · stat band · carded sections */
:root {
  --bg: #0c0c0c;
  --bg-2: #141414;
  --bg-3: #1a1a1a;
  --text: #ffffff;
  --muted: #a8adb4;
  --muted-2: #7e848c;
  --accent: #94d32b;
  --accent-2: #caf880;        /* light lime (gradient top) */
  --accent-dark: #5a7d12;
  --line: #2b2b2b;
  --maxw: 1100px;
  --head: 'Oswald', 'Arial Narrow', sans-serif;
  --body: 'Archivo', system-ui, sans-serif;
  --shadow: 0 8px 22px rgba(0,0,0,.55);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--body); line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.centered { text-align: center; }

h1, h2, h3 { font-family: var(--head); line-height: 1.04; letter-spacing: 0.01em; text-transform: uppercase; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.05rem; font-weight: 600; }

/* lime highlight word inside white headlines/copy */
.hl { color: var(--accent); }
strong { font-weight: 700; }

/* // eyebrow labels (videopod signature) */
.label {
  font-family: var(--head); color: var(--accent);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 14px;
}
.label.centered { text-align: center; }

.section-title { text-align: center; margin-bottom: 14px; }
.intro { max-width: 720px; margin: 0 auto 46px; color: var(--muted); }
.lead { font-size: 1.2rem; color: var(--text); }

/* ===== Cards (12px, border, soft shadow) ===== */
.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--head); font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; text-decoration: none; letter-spacing: 0.05em;
  padding: 15px 30px; border-radius: 6px; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-green { background: var(--accent); color: #0c0c0c; border: 1px solid var(--accent); }
.btn-green:hover { background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(148,211,43,0.3); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { font-size: 1.02rem; padding: 18px 38px; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Trust pill ===== */
.trust-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(148,211,43,0.08); border: 1px solid rgba(148,211,43,0.4);
  color: var(--accent); border-radius: 999px;
  padding: 7px 16px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
  margin-bottom: 26px;
}
.trust-pill img { height: 15px; width: auto; }
.trust-pill.small { margin: 0 auto 14px; }

/* ===== Nav ===== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(12,12,12,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { font-family: var(--head); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); text-decoration: none; }
.logo .dot { color: var(--accent); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: clamp(620px, 90vh, 860px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: url('assets/65a6b605d04e0_hero-bg.png') center/cover no-repeat; opacity: 0.18; z-index: 0; }
.hero-glow {
  position: absolute; top: 30%; left: 50%; transform: translate(-50%,-50%);
  width: 760px; height: 480px; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(148,211,43,0.22) 0%, rgba(148,211,43,0) 68%);
  filter: blur(8px);
}
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,12,0.2) 0%, rgba(12,12,12,0.85) 88%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 920px; }
.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: 1.12rem; color: var(--muted); margin-bottom: 34px; max-width: 600px; margin-left: auto; margin-right: auto; }
.microcopy { margin-top: 20px; color: var(--muted-2); font-size: 0.82rem; letter-spacing: 0.04em; }

/* ===== Stats band ===== */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); padding: 46px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: var(--head); font-weight: 700; font-size: clamp(2.6rem, 6vw, 3.8rem); color: var(--accent); line-height: 1; display: block; }
.stat .unit { font-size: 0.45em; margin-left: 2px; }
.stat .lbl { display: block; margin-top: 8px; color: var(--muted); font-size: 0.9rem; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.about-photo img { display: block; width: 100%; }
.about-copy .lead { margin-bottom: 18px; }
.about-copy p:not(.label):not(.lead) { color: var(--muted); }

/* ===== Services ===== */
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.service { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 16px; text-align: center; transition: border-color 0.15s ease, transform 0.15s ease; }
.service:hover { border-color: var(--accent); transform: translateY(-4px); }
.service img { width: 42px; height: 42px; margin: 0 auto 16px; filter: invert(1); opacity: 0.85; }
.service h3 { font-size: 0.88rem; }

/* ===== Clients ===== */
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.client { text-align: center; }
.client img { width: 116px; height: 116px; object-fit: cover; border-radius: 50%; margin: 0 auto 14px; border: 2px solid var(--line); filter: grayscale(1); opacity: 0.82; transition: all 0.18s ease; }
.client:hover img { filter: grayscale(0); opacity: 1; border-color: var(--accent); }
.client figcaption strong { font-family: var(--head); display: block; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.03em; }
.client figcaption span { display: block; color: var(--muted-2); font-size: 0.8rem; }

/* ===== Marquee ===== */
.marquee { background: var(--accent); color: #0c0c0c; overflow: hidden; white-space: nowrap; padding: 14px 0; }
.marquee-track { display: inline-flex; animation: scroll 24s linear infinite; }
.marquee-track span { font-family: var(--head); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Case study ===== */
.case-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case-card { padding: 32px; }
.case-card h3 { color: var(--accent); margin-bottom: 14px; font-size: 1.15rem; }
.emoji-list { list-style: none; margin: 6px 0; }
.emoji-list li { padding: 6px 0; font-size: 1.05rem; color: var(--text); }

/* ===== Testimonials (Upwork reviews) ===== */
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.review { background: #fff; padding: 22px 26px; display: flex; align-items: center; }
.review img { display: block; width: 100%; border-radius: 4px; }

/* ===== Trailers ===== */
.trailers .label, .trailers h2 { text-align: center; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.video-embed { position: relative; padding-top: 56.25%; }
.video-embed iframe, .video-embed .placeholder { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed .placeholder { display: flex; align-items: center; justify-content: center; color: var(--muted-2); font-size: 0.85rem; text-align: center; padding: 12px; background: var(--bg-2); }
.video figcaption { font-family: var(--head); text-align: center; margin-top: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* ===== Audio before/after ===== */
.audio .lead { max-width: 740px; margin: 0 auto 46px; color: var(--text); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ba-grid figure { padding: 0; }
.ba-grid figcaption { font-family: var(--head); font-weight: 700; letter-spacing: 0.14em; padding: 14px; text-align: center; color: var(--accent); text-transform: uppercase; border-bottom: 1px solid var(--line); }
.ba-grid img { display: block; }

/* ===== Mid CTA ===== */
.midcta h2 { margin-bottom: 28px; }

/* ===== Library ===== */
.library-media { max-width: 920px; margin: 0 auto; }
.library-media img { display: block; margin: 0 auto; }

/* ===== Booking ===== */
.book { background: var(--bg-2); }
.book .intro { margin-bottom: 24px; }
.cal-embed { width: 100%; background: #fff; padding: 0; }
.cal-embed iframe { display: block; width: 100%; height: 820px; border: 0; }
.cal-note { margin-top: 14px; color: var(--muted-2); font-size: 0.82rem; }
.cal-note a { color: var(--accent); text-decoration: none; }
.cal-note a:hover { text-decoration: underline; }
.risk { margin-top: 18px; color: var(--accent); font-weight: 600; letter-spacing: 0.03em; }

/* ===== What happens on the call ===== */
.call-steps { max-width: 620px; margin: 0 auto 22px; text-align: left; list-style: none; }
.call-steps li { position: relative; padding: 16px 0 16px 38px; border-bottom: 1px solid var(--line); color: var(--text); font-size: 1.05rem; }
.call-steps li:last-child { border-bottom: 0; }
.call-steps li::before { content: "✓"; position: absolute; left: 0; top: 14px; color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.call-note { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }

/* 2-up trailers */
.video-grid.two { max-width: 900px; margin: 0 auto; }

/* demo calendar mock (Cal.com month_view look) */
.cal-demo { max-width: 760px; margin: 0 auto; text-align: left; background: var(--bg); }
.cal-demo-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.cal-demo-head strong { font-family: var(--head); font-size: 1.1rem; display: block; text-transform: uppercase; letter-spacing: 0.03em; }
.cal-demo-head span { color: var(--muted); font-size: 0.85rem; }
.cal-demo-month { color: var(--accent) !important; font-weight: 600; }
.cal-demo-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; padding: 24px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-grid .dow { text-align: center; color: var(--muted-2); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; padding-bottom: 6px; }
.cal-grid .day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 0.9rem; font-weight: 500; }
.cal-grid .day.muted { color: var(--muted-2); opacity: 0.4; }
.cal-grid .day.off { color: var(--muted-2); opacity: 0.3; text-decoration: line-through; }
.cal-grid .day.av { background: rgba(148,211,43,0.1); color: var(--accent); border: 1px solid rgba(148,211,43,0.35); cursor: pointer; transition: all 0.12s ease; }
.cal-grid .day.av:hover { background: rgba(148,211,43,0.2); }
.cal-grid .day.av.sel { background: var(--accent); color: #0c0c0c; border-color: var(--accent); font-weight: 700; }
.cal-times { display: flex; flex-direction: column; gap: 8px; }
.cal-times-head { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); margin-bottom: 4px; font-size: 0.9rem; }
.slot { font-family: var(--body); background: transparent; color: var(--text); border: 1px solid var(--line); border-radius: 7px; padding: 11px; font-size: 0.9rem; cursor: pointer; transition: all 0.12s ease; }
.slot:hover { border-color: var(--accent); color: var(--accent); }
.slot.sel { background: var(--accent); color: #0c0c0c; border-color: var(--accent); font-weight: 700; }
@media (max-width: 620px) { .cal-demo-body { grid-template-columns: 1fr; } }
.policy { max-width: 640px; margin: 44px auto 0; text-align: left; border-top: 1px solid var(--line); padding-top: 30px; }
.policy h3 { margin-bottom: 16px; text-align: center; }
.policy ol { padding-left: 20px; }
.policy li { padding: 6px 0; color: var(--muted); }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); padding: 46px 0; }
.footer p { color: var(--muted-2); font-size: 0.85rem; margin-top: 6px; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .case-cards { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
}
