/* ============================================================
   TIMECOYL — LANDING PAGE STYLES
   Loaded only on index.html
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(255,102,0,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 25% 70%, rgba(50,174,214,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(255,102,0,0.04) 0%, transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .accent { color: var(--orange); }

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 560px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-stat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
}

/* ============================================================
   PRODUCT MOCKUP
   ============================================================ */
.hero-mockup-wrap {
  position: relative;
  perspective: 1200px;
}

.hero-mockup-wrap::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(255,102,0,0.06), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-mockup {
  background: #0c111c;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow:
    0 25px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: rotateY(-2deg) rotateX(1deg);
  font-family: 'DM Sans', sans-serif;
  position: relative;
}

/* ---- Mock header bar ---- */
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mock-venue-name {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

.mock-venue-loc {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.35);
  margin-left: 0.35rem;
  font-weight: 400;
}

.mock-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mock-temp {
  background: rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mock-time {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.45);
}

.mock-status-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5cb85c;
}

/* ---- Mock body two-column ---- */
.mock-body {
  display: grid;
  grid-template-columns: 32% 68%;
  min-height: 320px;
}

/* Left column — clock + info */
.mock-left {
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  border-right: 1px solid rgba(255,255,255,0.04);
}

/* CSS Clock face */
.mock-clock {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  position: relative;
  flex-shrink: 0;
}

.mock-clock::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mock-clock-marker {
  position: absolute;
  width: 1px;
  height: 5px;
  background: rgba(255,255,255,0.15);
  left: 50%;
  top: 4px;
  transform-origin: 50% 56px;
}

.mock-clock-hand-h {
  position: absolute;
  width: 1.5px;
  height: 30px;
  background: rgba(255,255,255,0.6);
  left: 50%;
  top: 50%;
  transform-origin: 50% 0%;
  transform: translateX(-50%) rotate(-150deg);
  border-radius: 1px;
}

.mock-clock-hand-m {
  position: absolute;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  left: 50%;
  top: 50%;
  transform-origin: 50% 0%;
  transform: translateX(-50%) rotate(60deg);
  border-radius: 1px;
}

.mock-clock-arc {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2.5px solid transparent;
}

.mock-clock-arc-1 {
  border-top-color: rgba(50,174,214,0.5);
  border-right-color: rgba(50,174,214,0.5);
  transform: rotate(15deg);
}

.mock-clock-arc-2 {
  border-bottom-color: rgba(255,102,0,0.4);
  transform: rotate(-20deg);
}

.mock-clock-digital {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: rgba(196, 147, 90, 0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Greeting card */
.mock-greeting {
  background: rgba(255,255,255,0.03);
  border-radius: 0.35rem;
  padding: 0.5rem 0.6rem;
  text-align: center;
  width: 100%;
}

.mock-greeting-text {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.mock-greeting-date {
  font-size: 0.4rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

/* Next up */
.mock-nextup {
  background: rgba(255,255,255,0.02);
  border-left: 2px solid rgba(196,147,90,0.4);
  border-radius: 0 0.3rem 0.3rem 0;
  padding: 0.35rem 0.5rem;
  width: 100%;
}

.mock-nextup-label {
  font-size: 0.35rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: right;
  margin-bottom: 0.15rem;
}

.mock-nextup-title {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.mock-nextup-time {
  font-size: 0.4rem;
  color: rgba(196,147,90,0.5);
  margin-top: 0.1rem;
}

/* Weather strip */
.mock-weather {
  background: rgba(255,255,255,0.02);
  border-radius: 0.35rem;
  padding: 0.4rem 0.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mock-weather-temp {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  line-height: 1;
}

.mock-weather-desc {
  font-size: 0.38rem;
  color: rgba(255,255,255,0.3);
}

.mock-weather-icon {
  font-size: 0.7rem;
  opacity: 0.5;
}

.mock-weather-forecast {
  margin-left: auto;
  display: flex;
  gap: 0.4rem;
}

.mock-weather-day {
  text-align: center;
  font-size: 0.3rem;
  color: rgba(255,255,255,0.25);
}

.mock-weather-day-icon {
  font-size: 0.45rem;
  display: block;
  margin: 0.1rem 0;
}

/* Right column — events */
.mock-right {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-events-header {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-style: italic;
}

/* Featured event card */
.mock-featured {
  border-radius: 0.4rem;
  overflow: hidden;
  position: relative;
  flex: 1;
  min-height: 150px;
}

.mock-featured-img {
  position: absolute;
  inset: 0;
  height: 62%;
  background: linear-gradient(135deg, #2a3a4a, #1a2535, #3a4a5a);
}

.mock-featured-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.015) 8px, rgba(255,255,255,0.015) 16px),
    radial-gradient(ellipse at 30% 40%, rgba(196,147,90,0.12), transparent 60%);
}

.mock-featured-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(12,17,28,0.4) 50%,
    rgba(12,17,28,0.85) 62%,
    #0c111c 70%
  );
}

.mock-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.7rem;
}

.mock-badge {
  display: inline-block;
  font-size: 0.32rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.12rem 0.4rem;
  border-radius: 0.2rem;
  margin-bottom: 0.3rem;
}

.mock-badge-community {
  background: rgba(90,160,90,0.2);
  color: rgba(140,200,140,0.8);
}

.mock-badge-music {
  background: rgba(196,147,90,0.2);
  color: rgba(196,147,90,0.8);
}

.mock-badge-free {
  background: rgba(90,160,90,0.15);
  color: rgba(140,200,140,0.7);
  margin-left: 0.2rem;
}

.mock-badge-now {
  background: rgba(196,147,90,0.15);
  color: rgba(196,147,90,0.7);
  margin-left: 0.2rem;
}

.mock-featured-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.mock-featured-venue {
  font-size: 0.38rem;
  color: rgba(255,255,255,0.35);
}

.mock-featured-meta {
  font-size: 0.35rem;
  color: rgba(255,255,255,0.25);
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Compact event cards */
.mock-compact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  background: rgba(255,255,255,0.02);
  border-radius: 0.3rem;
  border-left: 2px solid rgba(255,255,255,0.06);
}

.mock-compact-thumb {
  width: 28px;
  height: 28px;
  border-radius: 0.2rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2a3545, #1d2a3a);
}

.mock-compact-thumb-1 { background: linear-gradient(135deg, #3a4a5a, #2a3a4a); }
.mock-compact-thumb-2 { background: linear-gradient(135deg, #4a3a2a, #3a2a1a); }
.mock-compact-thumb-3 { background: linear-gradient(135deg, #2a4a3a, #1a3a2a); }

.mock-compact-info {
  flex: 1;
  min-width: 0;
}

.mock-compact-title {
  font-size: 0.42rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-compact-detail {
  font-size: 0.33rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.05rem;
}

.mock-compact-badges {
  display: flex;
  gap: 0.2rem;
  flex-shrink: 0;
}

/* QR badge */
.mock-qr {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.mock-qr-code {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 0.15rem;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 1px;
  padding: 2px;
}

.mock-qr-cell { border-radius: 0.5px; }
.mock-qr-cell.on { background: rgba(255,255,255,0.6); }
.mock-qr-cell.off { background: rgba(255,255,255,0.05); }

.mock-qr-label {
  font-size: 0.25rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}

/* Panel dots */
.mock-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 0.4rem 0;
  position: relative;
}

.mock-dot {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
}

.mock-dot-active {
  width: 14px;
  background: rgba(196,147,90,0.5);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0 2px;
  height: 5px;
  border: 0.5px solid rgba(196,147,90,0.4);
  background: rgba(196,147,90,0.1);
}

.mock-dot-inner {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.mock-dot-inner.on { background: rgba(196,147,90,0.7); }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  padding: 7rem 0;
  background: var(--cream);
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.problem-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.stat-callout {
  background: var(--orange-glow);
  border-left: 3px solid var(--orange);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}

.stat-source {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

.problem-screen {
  background: var(--navy);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(15,26,46,0.2);
  position: relative;
  overflow: hidden;
}

.problem-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stale-display {
  padding-top: 2.5rem;
  text-align: center;
  color: rgba(255,255,255,0.25);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stale-time {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}

.stale-weather {
  font-size: 1.5rem;
  opacity: 0.4;
}

.stale-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 1rem;
  color: rgba(255,255,255,0.12);
}

.stale-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  background: rgba(255,102,0,0.1);
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: 0.25rem;
  font-size: 0.6rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cost-callout {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 0.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

.cost-callout strong { color: var(--text-dark); }

/* ============================================================
   SOLUTION / HOW IT WORKS
   ============================================================ */
.solution {
  padding: 7rem 0;
  background: var(--warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sky);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.step-time {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: var(--orange-glow);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.03em;
}

.solution-closing {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   DIFFERENTIATION
   ============================================================ */
.diff {
  padding: 7rem 0;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.diff::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,102,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.diff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.diff-text h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.diff-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.diff-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.6rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background 0.2s;
}

.diff-card:hover { background: rgba(255,255,255,0.07); }

.diff-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.diff-card-icon.orange { background: var(--orange-glow); }
.diff-card-icon.sky { background: var(--sky-soft); }

.diff-card-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 0.25rem;
}

.diff-card-desc {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience {
  padding: 7rem 0;
  background: var(--cream);
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.audience-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.audience-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.audience-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.audience-card-img-placeholder.hotel { background: linear-gradient(135deg, #1a2a45, #2a3d5f); }
.audience-card-img-placeholder.cowork { background: linear-gradient(135deg, #1a3530, #2a5a4f); }
.audience-card-img-placeholder.community { background: linear-gradient(135deg, #2a1a35, #4a2d5f); }

.audience-card-body { padding: 1.5rem; }

.audience-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.audience-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.audience-card-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-body);
}

/* ============================================================
   TRUST / STATS
   ============================================================ */
.trust {
  padding: 5rem 0;
  background: var(--warm-white);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-number .orange { color: var(--orange); }

.trust-label {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 7rem 0;
  background: var(--cream);
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--orange));
}

.pricing-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sky);
  margin-bottom: 1rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.9rem;
  color: var(--text-body);
}

.pricing-feature:last-child { border-bottom: none; }

.pricing-check {
  color: var(--sky);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-pilot {
  background: var(--sky-soft);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.pricing-pilot strong { color: var(--navy); }

.pricing-anchor {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 7rem 0;
  background: var(--navy);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,102,0,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(50,174,214,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.final-cta .sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
}

.final-cta .btn-primary {
  font-size: 1.1rem;
  padding: 1.15rem 2.5rem;
}

.final-cta-email {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.final-cta-email a {
  color: var(--orange);
  text-decoration: none;
}

/* ============================================================
   LANDING PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .problem-layout,
  .diff-layout { grid-template-columns: 1fr; gap: 3rem; }

  .steps,
  .audience-cards,
  .trust-grid { grid-template-columns: 1fr; }

  .hero h1 { font-size: 2.4rem; }
  .section-header h2,
  .problem-text h2,
  .diff-text h2 { font-size: 2rem; }

  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-mockup-wrap { display: none; }

  .pricing-card { padding: 2rem; }

  .final-cta h2 { font-size: 2rem; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .mock-body { min-height: 260px; }
  .mock-clock { width: 90px; height: 90px; }
}
