/* ==========================================================================
   The PartyPlatform — Vendor Growth Landing Page
   Design tokens
   ========================================================================== */

:root {
  --navy-900: #081326;
  --navy-800: #0a1b33;
  --navy-700: #0e2444;
  --navy-600: #14305c;
  --cyan: #3bb4e8;
  --cyan-light: #7ed2f2;
  --cyan-dim: rgba(59, 180, 232, 0.14);
  --orange: #f5822c;
  --orange-light: #ffab6b;
  --bg-light: #f4f8fb;
  --bg-light-alt: #eaf2f8;
  --ink: #0e2444;
  --ink-soft: #46587a;
  --white: #ffffff;
  --on-dark: rgba(255, 255, 255, 0.86);
  --on-dark-soft: rgba(255, 255, 255, 0.6);
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(14, 36, 68, 0.1);

  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 50px -20px rgba(8, 19, 38, 0.35);
  --shadow-card: 0 12px 30px -14px rgba(8, 19, 38, 0.25);

  --header-h: 68px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-light);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }
}

/* ==========================================================================
   Reveal-on-scroll base state
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.no-js .reveal,
.reduced-motion .reveal {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background-image: linear-gradient(45deg, var(--orange) 0%, var(--orange-light) 51%, var(--orange) 100%);
  background-size: 200% auto;
  background-position: left center;
  color: var(--white);
  border-radius: 10px;
  text-transform: uppercase;
  box-shadow: 0 0 14px -7px var(--orange);
  transition: background-position 0.5s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 0 20px -5px var(--orange);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: var(--border-dark);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  border-radius: 10px;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Anchor targets — offset so the fixed header never covers a jumped-to
   section's top when following an in-page link (e.g. "Book a Call").
   ========================================================================== */

section[id] {
  scroll-margin-top: var(--header-h);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8, 19, 38, 0.7);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  height: 34px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-site-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--on-dark);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-site-link:hover {
  color: var(--white);
}

.nav-site-link:hover .link-icon {
  transform: translate(2px, -2px);
}

@media (max-width: 640px) {
  .header-cta {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: radial-gradient(120% 100% at 15% 0%, var(--navy-600) 0%, var(--navy-800) 45%, var(--navy-900) 100%);
  color: var(--on-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.parallax-layer {
  position: absolute;
  will-change: transform;
}

.blob {
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}

.blob-cyan {
  width: 480px;
  height: 480px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(59, 180, 232, 0.55), transparent 70%);
}

.blob-orange {
  width: 380px;
  height: 380px;
  bottom: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(245, 130, 44, 0.35), transparent 70%);
}

.hero-watermark {
  top: 8%;
  right: 4%;
  width: 340px;
  opacity: 0.08;
}

.hero-watermark img {
  width: 100%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 48px;
  padding-bottom: 64px;
}

.confidential-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-light);
  background: rgba(59, 180, 232, 0.12);
  border: 1px solid rgba(59, 180, 232, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.confidential-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-light);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(2.1rem, 6.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title .company-highlight {
  color: var(--cyan-light);
}

.hero-sub {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: var(--on-dark-soft);
  max-width: 56ch;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--on-dark-soft);
  margin: 0;
}

.hero-meta strong {
  color: var(--white);
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 1;
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  display: none;
}

@media (min-width: 900px) {
  .scroll-cue {
    display: block;
  }
}

.scroll-cue::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--cyan-light);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0% {
    opacity: 1;
    top: 6px;
  }
  70% {
    opacity: 0;
    top: 18px;
  }
  100% {
    opacity: 0;
    top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue::before {
    animation: none;
  }
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  margin-bottom: 36px;
}

@media (min-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 0 6px;
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--navy-700);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num .suffix {
  color: var(--orange);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.stat-label small {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.8;
}

.audience-split {
  max-width: 560px;
  margin: 0 auto;
}

.split-caption {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 14px;
}

.split-bar {
  display: flex;
  height: 12px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--bg-light-alt);
  margin-bottom: 10px;
}

.split-b2c,
.split-b2b {
  height: 100%;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-b2c {
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
}

.split-b2b {
  background: var(--navy-600);
}

.audience-split.in-view .split-b2c {
  width: 70%;
}

.audience-split.in-view .split-b2b {
  width: 30%;
}

.split-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.split-labels span:first-child::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  margin-right: 6px;
}

.split-labels span:last-child::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy-600);
  margin-right: 6px;
}

/* ==========================================================================
   Value band
   ========================================================================== */

.value-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2ba7dd, #4fc3ea 55%, #6bd2ef);
  padding: 90px 0;
  color: var(--white);
  text-align: center;
}

.value-band .blob {
  opacity: 0.35;
}

.value-band .blob-a {
  width: 420px;
  height: 420px;
  top: -160px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
}

.value-band .blob-b {
  width: 340px;
  height: 340px;
  bottom: -140px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
}

.value-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 860px) {
  .value-band-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 56px;
  }

  .value-band-copy {
    flex: 1 1 45%;
  }

  .value-band-media {
    flex: 1 1 55%;
  }
}

.value-band h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  margin-bottom: 18px;
}

.value-band p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 30px;
}

.value-band-media img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(8, 19, 38, 0.45);
}

/* ==========================================================================
   Section heading helper
   ========================================================================== */

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.6rem, 4.2vw, 2.3rem);
  position: relative;
  padding-bottom: 16px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--cyan);
  border-radius: 2px;
}

.section-head p {
  color: var(--ink-soft);
  margin: 0;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
  padding: 90px 0 70px;
  background: var(--bg-light);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 720px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card.featured {
  border: 1px solid rgba(245, 130, 44, 0.4);
  box-shadow: 0 16px 40px -18px rgba(245, 130, 44, 0.45);
}

.service-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.service-num {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  background: var(--navy-700);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card.featured .service-num {
  background: var(--orange);
}

.service-card h3 {
  font-size: 1.15rem;
  margin: 0;
}

.service-desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.service-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy-700);
  margin-bottom: 2px;
}

.service-price .unit {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.service-price-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.service-bullets {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-bullets li {
  font-size: 0.88rem;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}

.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.service-free-signup {
  margin: 0 0 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.service-free-signup a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--cyan);
  font-weight: 700;
  border-bottom: 1px solid rgba(59, 180, 232, 0.4);
}

.service-free-signup a:hover .link-icon {
  transform: translate(2px, -2px);
}

.service-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #b9740a;
  background: #fff4e4;
  border: 1px solid #ffdca8;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  align-self: flex-start;
}

.service-stat {
  margin-top: auto;
  padding: 14px 16px;
  background: var(--cyan-dim);
  border-radius: var(--radius-md);
}

.service-stat-title {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.service-stat-text {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.service-stat-text strong {
  color: var(--navy-700);
  font-family: var(--font-head);
}

.services-callout {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 600;
  color: var(--navy-700);
  font-size: 1rem;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 22px auto 0;
  padding: 13px 26px;
  border-radius: 10px;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(37, 211, 102, 0.7);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: none;
}

/* ==========================================================================
   Case studies
   ========================================================================== */

.case-studies {
  padding: 90px 0;
  background: var(--white);
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 860px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  color: var(--on-dark);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
}

.case-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.case-head h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--white);
}

.case-role {
  margin: 2px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan-light);
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--cyan-light);
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(126, 210, 242, 0.4);
  white-space: nowrap;
}

.case-head a:hover .link-icon {
  transform: translate(2px, -2px);
}

.case-card p {
  color: var(--on-dark-soft);
  font-size: 0.92rem;
}

.chart-wrap {
  margin-top: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 14px 8px;
  box-shadow: var(--shadow-card);
}

.chart-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ==========================================================================
   Clients grid
   ========================================================================== */

.clients {
  padding: 90px 0;
  background: var(--bg-light);
}

.client-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.client-item {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.client-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(59, 180, 232, 0.35);
}

.client-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--navy-700);
  display: flex;
  align-items: center;
  gap: 6px;
}

.client-item p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

.link-icon {
  width: 0.85em;
  height: 0.85em;
  flex: none;
  transition: transform 0.2s ease;
}

.client-item:hover .link-icon {
  transform: translate(2px, -2px);
}

/* ==========================================================================
   Founder
   ========================================================================== */

.founder {
  padding: 90px 0;
  background: var(--white);
}

.founder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

@media (min-width: 720px) {
  .founder-inner {
    flex-direction: row;
    text-align: left;
  }
}

.founder-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--bg-light);
}

.founder-role {
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 12px;
}

.founder-role .li-link {
  color: var(--cyan);
  border-bottom: 1px solid rgba(59, 180, 232, 0.4);
}

.founder-copy p:last-child {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: radial-gradient(120% 120% at 50% 0%, var(--navy-600), var(--navy-900));
  color: var(--white);
  text-align: center;
}

.final-cta .blob-cyan {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
}

.final-cta .container {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 26px;
}

.alt-contacts {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--on-dark-soft);
}

.alt-contacts a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.alt-contacts a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Booking calendar
   ========================================================================== */

.calendar-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.calendar-embed {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.calendar-iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
}

@media (max-width: 480px) {
  .calendar-iframe {
    height: 620px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-900);
  color: var(--on-dark-soft);
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  height: 22px;
  margin: 0 auto 16px;
}

.footer-confidential {
  font-size: 0.82rem;
  max-width: 480px;
  margin: 0 auto 8px;
}

.footer-copy {
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.7;
}

/* ==========================================================================
   Mobile sticky CTA bar
   ========================================================================== */

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(8, 19, 38, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(120%);
  transition: transform 0.35s ease;
}

.mobile-cta-bar.is-visible {
  transform: translateY(0);
}

@media (min-width: 900px) {
  .mobile-cta-bar {
    display: none;
  }
}
