/* ============================================================
   taylorremund.com — light theme design system
   ============================================================ */

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

:root {
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --surface: #ffffff;
  --border: #e6eaf1;
  --border-strong: #d4dbe5;
  --text: #101828;
  --text-muted: #475467;
  --text-soft: #667085;
  --accent: #0d9488;
  --accent-hover: #0b7f75;
  --accent-ink: #0f766e;
  --accent-soft: rgba(13, 148, 136, 0.08);
  --accent-border: rgba(13, 148, 136, 0.25);
  --plateful: #069494;
  --plateful-red: #b22222;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 12px 32px -12px rgba(16, 24, 40, 0.16);
  --shadow-lg: 0 24px 64px -24px rgba(16, 24, 40, 0.24);
  --radius: 16px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.inline-link {
  color: var(--accent-ink);
  font-weight: 500;
  border-bottom: 1px solid var(--accent-border);
  transition: border-color 0.2s, color 0.2s;
}
.inline-link:hover { border-color: var(--accent-ink); }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent-ink); }

.nav-links { display: flex; align-items: center; gap: 30px; }

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-links a.nav-cta {
  background: var(--accent);
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.2s;
}
.nav-links a.nav-cta:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { display: block; padding: 12px 0; font-size: 1rem; }
  .nav-links a.nav-cta { margin-top: 8px; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 24px 90px;
  overflow: hidden;
  background:
    radial-gradient(52rem 30rem at 15% -5%, rgba(13, 148, 136, 0.09), transparent 60%),
    radial-gradient(46rem 28rem at 90% 0%, rgba(245, 158, 11, 0.07), transparent 60%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(60rem 34rem at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(60rem 34rem at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-compact { min-height: 78vh; }
.hero-content { position: relative; max-width: 780px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 24px;
}
.hero-kicker::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(2.9rem, 7.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

.hero-typewriter {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  color: var(--accent-ink);
  font-weight: 600;
  min-height: 2em;
  margin-bottom: 20px;
}
.typewriter-cursor { animation: blink 1s step-end infinite; color: var(--accent-ink); font-weight: 300; }
@keyframes blink { 50% { opacity: 0; } }

.hero-tagline {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 8px 20px -8px rgba(13, 148, 136, 0.55);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }

/* ========== SECTIONS ========== */
.section { padding: 104px 0; }
.section-alt { background: var(--bg-alt); }

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.75;
  font-size: 1.02rem;
}

/* ========== CARD BASE ========== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--accent-border); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}
.about-text p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; }
.about-text p + p { margin-top: 18px; }

.photo-placeholder {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--accent-soft), rgba(245, 158, 11, 0.08));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  margin: 0 auto;
}

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card { padding: 30px 24px; text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent-ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-grid .about-photo { order: -1; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ========== PLATEFUL PRODUCT ========== */
.section-plateful {
  background: linear-gradient(180deg, #f2faf9 0%, #ffffff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.plateful-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}
.plateful-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.plateful-brand svg { width: 42px; height: auto; }
.plateful-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--plateful);
  letter-spacing: -0.02em;
}
.plateful-live {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #067647;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  border-radius: 999px;
  padding: 4px 12px;
}
.plateful-copy .section-eyebrow, .plateful-copy .section-title { text-align: left; }
.plateful-copy .section-title { margin-bottom: 16px; }
.plateful-pitch { color: var(--text-muted); font-size: 1.03rem; line-height: 1.8; margin-bottom: 24px; }

.plateful-features { margin-bottom: 28px; }
.plateful-features li {
  position: relative;
  padding-left: 30px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 11px;
}
.plateful-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plateful-features li strong { color: var(--text); font-weight: 600; }

.plateful-pricing {
  display: inline-block;
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--plateful);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  padding: 14px 20px;
  margin-bottom: 30px;
}
.plateful-pricing strong { font-family: var(--font-heading); font-size: 1.05rem; }
.plateful-pricing span { display: block; font-size: 0.85rem; color: var(--text-muted); }

.plateful-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Storefront mockup */
.plateful-visual { position: relative; }
.mockup {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.mockup-dots i:nth-child(1) { background: #fda29b; }
.mockup-dots i:nth-child(2) { background: #fedf89; }
.mockup-dots i:nth-child(3) { background: #a6f4c5; }
.mockup-url {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--text-soft);
  padding: 4px 14px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
}
.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--plateful);
  color: #ffffff;
}
.mockup-rest { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; }
.mockup-tabs { display: flex; gap: 10px; font-size: 0.68rem; opacity: 0.9; }
.mockup-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 18px;
}
.mockup-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mockup-item .food { font-size: 1.5rem; }
.mockup-item h4 { font-size: 0.78rem; font-weight: 600; line-height: 1.3; }
.mockup-item p { font-size: 0.72rem; color: var(--accent-ink); font-weight: 600; }
.mockup-cart {
  margin: 0 18px 18px;
  background: var(--plateful);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 11px;
}
.mockup-toast {
  position: absolute;
  right: -14px;
  bottom: 34px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-toast .tick {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #ecfdf3;
  color: #067647;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.mockup-toast span small { display: block; font-weight: 400; color: var(--text-soft); font-size: 0.7rem; }

@media (max-width: 960px) {
  .plateful-grid { grid-template-columns: 1fr; gap: 48px; }
  .mockup-toast { right: 8px; }
}

/* ========== AI SERVICES TEASER ========== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 44px; }
.svc-card { padding: 30px 26px; display: flex; flex-direction: column; gap: 10px; }
.svc-card h3 { font-family: var(--font-heading); font-size: 1.08rem; font-weight: 600; }
.svc-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.svc-price { font-family: var(--font-heading); color: var(--accent-ink); font-weight: 700; font-size: 0.95rem; }
.svc-cta { text-align: center; }
.svc-grid .svc-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.svc-grid .svc-card.reveal:nth-child(3) { transition-delay: 0.2s; }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr; } }

/* ========== SKILLS ========== */
.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.skill-category { padding: 28px; }
.skill-category-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-ink);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.skill-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.skill-pill:hover { border-color: var(--accent-border); color: var(--text); background: #ffffff; }
.skill-icon { width: 16px; height: 16px; flex-shrink: 0; }
.skills-grid .skill-category.reveal:nth-child(2) { transition-delay: 0.08s; }
.skills-grid .skill-category.reveal:nth-child(3) { transition-delay: 0.16s; }
.skills-grid .skill-category.reveal:nth-child(4) { transition-delay: 0.24s; }
@media (max-width: 860px) { .skills-grid { grid-template-columns: 1fr; } }

/* ========== PROJECTS ========== */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.project-card { padding: 32px 28px; display: flex; flex-direction: column; }
.project-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.project-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin-bottom: 2px; }
.project-subtitle { font-size: 0.88rem; color: var(--text-soft); font-weight: 500; margin-bottom: 14px; }
.project-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; flex: 1; }
.project-desc code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
}
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.project-tags span {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 3px 10px;
  border-radius: 6px;
}
.project-links { display: flex; gap: 10px; }
.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}
.project-link:hover { border-color: var(--accent); color: var(--accent-ink); background: #ffffff; }
.project-link.disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.projects-grid .project-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.projects-grid .project-card.reveal:nth-child(3) { transition-delay: 0.16s; }

/* ========== TIMELINE ========== */
.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 44px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -32px; top: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--accent);
  z-index: 1;
}
.timeline-content { padding: 28px; }
.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.timeline-role { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; }
.timeline-company { color: var(--accent-ink); font-size: 0.95rem; font-weight: 600; margin-top: 2px; }
.timeline-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
.timeline-date { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.timeline-location { font-size: 0.8rem; color: var(--text-soft); }
.timeline-bullets { list-style: disc; padding-left: 20px; }
.timeline-bullets li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.timeline-bullets li:last-child { margin-bottom: 0; }
.timeline-bullets code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
}
@media (max-width: 600px) {
  .timeline-header { flex-direction: column; }
  .timeline-meta { align-items: flex-start; }
}

/* ========== STEPS (AI page) ========== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 44px; }
.step-card { padding: 32px 28px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
}
.step-card h3 { font-family: var(--font-heading); font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }
.steps-note {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1rem;
}
.steps-note strong { color: var(--text); }
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }

/* ========== PACKAGES (AI page) ========== */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pkg-card { position: relative; padding: 38px 28px; display: flex; flex-direction: column; }
.pkg-featured {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, #f2faf9 0%, #ffffff 55%);
  box-shadow: var(--shadow-md);
}
.pkg-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.pkg-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.pkg-for { font-size: 0.86rem; color: var(--text-soft); margin-bottom: 22px; line-height: 1.55; }
.pkg-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.pkg-price-sub { font-size: 0.85rem; color: var(--text-muted); margin: 4px 0 24px; }
.pkg-list { margin-bottom: 26px; flex: 1; }
.pkg-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 11px;
}
.pkg-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 660px;
  margin: 40px auto 0;
  line-height: 1.75;
}
.pkg-grid .pkg-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.pkg-grid .pkg-card.reveal:nth-child(3) { transition-delay: 0.16s; }
@media (max-width: 960px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-featured { order: -1; }
}

/* ========== FAQ ========== */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }
.faq-card { padding: 28px; }
.faq-card h3 { font-family: var(--font-heading); font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; }
.faq-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; } }

/* ========== CTA PANEL ========== */
.cta-panel {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 60%, #115e59 100%);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(40rem 20rem at 50% 0%, #000 20%, transparent 75%);
  mask-image: radial-gradient(40rem 20rem at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
}
.cta-panel > * { position: relative; }
.cta-panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-panel p { color: rgba(255, 255, 255, 0.88); max-width: 560px; margin: 0 auto 34px; line-height: 1.75; }
.cta-panel .btn-primary { background: #ffffff; color: var(--accent-ink); box-shadow: var(--shadow-md); }
.cta-panel .btn-primary:hover { background: #f0fdfa; }
.cta-panel .btn-outline { background: transparent; color: #ffffff; border-color: rgba(255, 255, 255, 0.45); box-shadow: none; }
.cta-panel .btn-outline:hover { border-color: #ffffff; color: #ffffff; }
@media (max-width: 600px) { .cta-panel { padding: 48px 24px; } }

/* ========== CONTACT ========== */
.contact-container { text-align: center; max-width: 640px; }
.contact-subtext { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
.contact-links { display: flex; justify-content: center; gap: 18px; }
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
  transition: all 0.2s;
}
.contact-icon:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  background: var(--bg-alt);
}

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stats-grid .stat-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .stat-card.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ========== MISC ========== */
::selection { background: rgba(13, 148, 136, 0.18); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: #cdd5e0; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #b6c1d0; }
