/* Horarium Marketing Site - Faithful to Flutter Design */

:root {
  --bg: #1A1918;
  --bg-card: #1E1D1B;
  --border: #2E2D2B;
  --text: #E8E6E3;
  --text-dim: #A8A5A0;
  --gold: #CFB98D;
  --accent: #9C9890;
}

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

html {
  scroll-behavior: smooth;
  background: #1A1918;
}

body {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  background: linear-gradient(to bottom, #1A1918, #12110F);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon { width: 32px; height: 32px; }
.logo-text {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
}
.nav-link:hover { color: var(--text); }

.nav-signin {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(156,152,144,0.4);
  border-radius: 8px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}
.mobile-menu a.primary { color: var(--accent); font-weight: 600; }

/* Hero */
.hero {
  padding: 80px 64px;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.hero-text { flex: 5; }
.hero-phone { 
  flex: 4; 
  display: flex; 
  justify-content: center; 
  align-items: center;
  position: relative;
  min-height: 500px;
  z-index: 1;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.tagline {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
}

.description {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 28px;
  background: var(--accent);
  color: var(--bg);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-secondary {
  display: inline-block;
  padding: 16px 28px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
}

.btn-outline {
  display: block;
  padding: 14px;
  border: 1px solid rgba(156,152,144,0.4);
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

.hero-note {
  font-size: 13px;
  color: rgba(168,165,160,0.7);
}

/* Ripples - centered on phone */
.ripple-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 50%;
  border: 1.5px solid rgba(207,185,141,0.15);
  transform: scale(0);
  animation: ripple-expand 20s linear infinite;
  will-change: transform, opacity;
}

.ripple:nth-child(1) { animation-delay: 0s; }
.ripple:nth-child(2) { animation-delay: 4s; }
.ripple:nth-child(3) { animation-delay: 8s; }
.ripple:nth-child(4) { animation-delay: 12s; }
.ripple:nth-child(5) { animation-delay: 16s; }

@keyframes ripple-expand {
  0% { 
    transform: scale(0);
    opacity: 0.2;
  }
  100% { 
    transform: scale(50);
    opacity: 0;
  }
}

.phone-frame {
  position: relative;
  z-index: 10;
  width: 280px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  transform: rotate(8deg);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

/* Value Props */
.values {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(207,185,141,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.value-item h3 {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-item p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* About Section - Carousel */
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #1A1918, #1D1B19, #201E1C);
  border-top: 1px solid #2A2826;
}

.about h2 {
  font-family: 'Lora', serif;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 64px;
}

.carousel-container {
  max-width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.card {
  min-width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(207,185,141,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.card h3 {
  font-family: 'Lora', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.card p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #3A3A3C;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.dot.active {
  width: 24px;
  background: var(--gold);
}

.carousel-hint {
  text-align: center;
  font-size: 13px;
  color: #6A6A6A;
  margin-top: 16px;
}

/* Features - Refined Ticker */
.features-refined {
  padding: 120px 0 80px;
  background: #1A1918;
  border-top: 1px solid #2A2826;
  overflow: hidden;
}

.features-refined-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.features-refined-header h2 {
  font-family: 'Lora', serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
}

.features-refined-header p {
  font-size: 17px;
  color: var(--text-dim);
}

.scroll-row-refined {
  overflow: hidden;
  margin-bottom: 20px;
}

.scroll-track-refined {
  display: flex;
  gap: 24px;
  width: max-content;
}

.scroll-track-refined.scroll-right {
  animation: scrollSlowRight 60s linear infinite;
}

.scroll-track-refined.scroll-left {
  animation: scrollSlowLeft 60s linear infinite;
}

.scroll-row-refined:hover .scroll-track-refined {
  animation-play-state: paused;
}

@keyframes scrollSlowRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollSlowLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.feature-card-refined {
  width: 260px;
  min-width: 260px;
  padding: 28px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-card-refined:hover {
  border-color: rgba(207,185,141,0.3);
  background: rgba(207,185,141,0.03);
}

.feature-card-refined h4 {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card-refined p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.features-refined-cta {
  text-align: center;
  margin-top: 48px;
}

/* Keep old features CSS for features.html page */
.features {
  padding: 120px 0 80px;
  background: #1A1918;
  border-top: 1px solid #2A2826;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.features-header h2 {
  font-family: 'Lora', serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
}

.features-header p {
  font-size: 17px;
  color: var(--text-dim);
}

.scroll-row {
  overflow: hidden;
  margin-bottom: 24px;
}

.scroll-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.scroll-right { animation: scrollRight 60s linear infinite; }
.scroll-left { animation: scrollLeft 60s linear infinite; }

.scroll-row:hover .scroll-track { animation-play-state: paused; }

@keyframes scrollRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.feature-card {
  width: 300px;
  min-width: 300px;
  height: 170px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.feature-card .icon svg { width: 20px; height: 20px; }

/* Muted, earthy icon colors */
.icon.blue { background: rgba(126,140,150,0.15); }
.icon.blue svg { stroke: #7E8C96; }
.icon.green { background: rgba(122,144,96,0.15); }
.icon.green svg { stroke: #7A9060; }
.icon.tan { background: rgba(196,168,130,0.15); }
.icon.tan svg { stroke: #C4A882; }
.icon.orange { background: rgba(180,130,90,0.15); }
.icon.orange svg { stroke: #B4825A; }
.icon.gold { background: rgba(180,155,100,0.15); }
.icon.gold svg { stroke: #B49B64; }
.icon.purple { background: rgba(140,130,150,0.15); }
.icon.purple svg { stroke: #8C8296; }
.icon.sage { background: rgba(107,130,110,0.15); }
.icon.sage svg { stroke: #6B826E; }
.icon.stone { background: rgba(156,152,144,0.15); }
.icon.stone svg { stroke: #9C9890; }
.icon.gray { background: rgba(130,135,140,0.15); }
.icon.gray svg { stroke: #82878C; }
.icon.coral { background: rgba(180,140,120,0.15); }
.icon.coral svg { stroke: #B48C78; }
.icon.lavender { background: rgba(145,135,150,0.15); }
.icon.lavender svg { stroke: #918796; }
.icon.teal { background: rgba(120,145,140,0.15); }
.icon.teal svg { stroke: #78918C; }

.feature-card h4 {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
}

.features-cta {
  text-align: center;
  margin-top: 48px;
}

/* Pricing */
.pricing {
  padding: 120px 64px;
  border-top: 1px solid var(--border);
}

.pricing-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 64px;
}

.pricing-header h2 {
  font-family: 'Lora', serif;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-header p {
  font-size: 17px;
  color: var(--text-dim);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.toggle-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-btn.active {
  background: var(--accent);
  color: var(--bg);
}

.toggle-btn:hover:not(.active) {
  color: var(--text);
}

.save-badge {
  display: inline-block;
  background: rgba(207,185,141,0.2);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.toggle-btn.active .save-badge {
  background: rgba(0,0,0,0.15);
  color: var(--bg);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.pricing-card.featured {
  background: rgba(156,152,144,0.1);
  border: 2px solid rgba(156,152,144,0.3);
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price .amount {
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 600;
}

.price .period {
  font-size: 16px;
  color: var(--text-dim);
}

.price-desc {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
}

.check { color: #4A7C59; font-weight: bold; }
.check.gold { color: var(--accent); }
.check.church { color: #7E8C96; }

.pricing-card.church {
  background: rgba(126,140,150,0.08);
  border: 1px solid rgba(126,140,150,0.25);
  opacity: 0.85;
}

.badge.coming-soon {
  background: #7E8C96;
}

.pricing-card .btn-primary { display: block; text-align: center; }

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: rgba(168,165,160,0.7);
  margin-top: 48px;
}

/* Pricing V2 - Improved */
.pricing-v2 {
  background: linear-gradient(180deg, #1A1918, #151413);
}

.pricing-cards-v2 {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.pricing-card-v2 {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.pricing-card-v2.featured {
  background: linear-gradient(180deg, rgba(207,185,141,0.08), rgba(207,185,141,0.02));
  border: 2px solid rgba(207,185,141,0.4);
  padding: 40px 32px;
  position: relative;
  box-shadow: 
    0 0 60px -20px rgba(207,185,141,0.3),
    0 25px 50px -12px rgba(0,0,0,0.4);
  transform: scale(1.02);
}

.pricing-card-v2.featured .price .amount {
  font-size: 52px;
  color: var(--gold);
}

.pricing-card-v2.church {
  opacity: 0.6;
  filter: grayscale(20%);
}

.pricing-card-v2 h3 {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card-v2.featured h3 {
  font-size: 28px;
}

.pricing-card-v2 .price .amount {
  font-family: 'Lora', serif;
  font-size: 44px;
  font-weight: 700;
}

.pricing-card-v2 .price .period {
  font-size: 16px;
  color: var(--text-dim);
}

.pricing-card-v2 .price-desc {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.pricing-card-v2 ul {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-card-v2 li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
}

.pricing-card-v2 .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.pricing-card-v2 .badge.coming-soon {
  background: #555;
}

.btn-primary-v2 {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--bg);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary-v2:hover {
  background: #D9C99D;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  padding: 48px 64px;
  background: linear-gradient(to bottom, #151413, #0F0E0D);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer-brand { max-width: 250px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-icon { width: 28px; height: 28px; }
.footer-logo .logo-text { font-size: 20px; }

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 80px;
}

.link-group h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.link-group a {
  display: block;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(168,165,160,0.7);
}

.made-with-love {
  font-family: 'Lora', serif;
  margin-top: 8px;
}

.made-with-love .heart {
  color: var(--gold);
  font-style: normal;
}

.legal, .legal-links {
  display: flex;
  gap: 24px;
}

.legal a, .legal-links a {
  font-size: 13px;
  color: rgba(168,165,160,0.7);
  text-decoration: none;
}

.legal a:hover, .legal-links a:hover {
  color: var(--text-secondary);
  text-decoration: none;
}

/* Waitlist Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.2s;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-dim);
  cursor: pointer;
  line-height: 1;
}

.modal h3 {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.modal p {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.modal form {
  display: flex;
  gap: 12px;
}

.modal input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 16px;
}

.modal input[type="email"]::placeholder {
  color: var(--text-dim);
}

.modal input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}

.modal .btn-primary {
  padding: 14px 24px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.modal .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-message {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 14px;
  text-align: center;
}

.modal-message.success {
  color: #7A9060;
}

.modal-message.error {
  color: #C47070;
}

/* Modal mobile fixes */
@media (max-width: 500px) {
  .modal {
    width: 95%;
    padding: 24px;
    margin: 16px;
  }
  
  .modal h3 {
    font-size: 20px;
  }
  
  .modal form {
    flex-direction: column;
  }
  
  .modal input[type="email"] {
    width: 100%;
  }
  
  .modal .btn-primary {
    width: 100%;
    padding: 16px;
  }
}

/* Features Page */
.page-hero {
  padding: 120px 64px 80px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Lora', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-dim);
}

.features-full {
  padding: 0 64px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-category {
  margin-bottom: 80px;
}

.feature-category h2 {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.feature-category.premium {
  background: rgba(207,185,141,0.05);
  border: 1px solid rgba(207,185,141,0.2);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}

.feature-category.premium h2 {
  border-bottom-color: rgba(207,185,141,0.3);
}

.premium-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 6px;
  text-transform: uppercase;
}

.also-includes {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(207,185,141,0.2);
}

.also-includes h4 {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.also-includes ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
}

.also-includes li {
  font-size: 14px;
  color: var(--text-dim);
  position: relative;
  padding-left: 18px;
}

.also-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* Feature Showcase with Phone */
.feature-showcase {
  display: flex;
  gap: 48px;
  align-items: center;
}

.feature-showcase.reverse {
  flex-direction: row-reverse;
}

.feature-showcase .feature-grid {
  flex: 1;
}

.feature-phone {
  flex-shrink: 0;
}

.feature-phone-pair {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.phone-frame-small {
  position: relative;
  width: 200px;
  background: #000;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.4);
}

.phone-notch-small {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 20px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 10;
}

.phone-screen-small {
  width: 100%;
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-item .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item .icon svg {
  width: 24px;
  height: 24px;
}

.feature-item h3 {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

.features-bottom-cta {
  text-align: center;
  padding: 80px 64px;
  background: linear-gradient(to bottom, transparent, rgba(207,185,141,0.05));
  border-top: 1px solid var(--border);
}

.features-bottom-cta h2 {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
}

.features-bottom-cta p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-content { padding: 16px 24px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  
  .hero {
    padding: 48px 24px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero h1 { font-size: 40px; }
  .tagline { font-size: 24px; }
  .description { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  
  .phone-frame { width: 240px; }
  
  .values { padding: 64px 24px; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .features-refined { padding: 80px 0 60px; }
  .features-refined-header h2 { font-size: 32px; }
  
  .about { padding: 80px 24px; }
  .about h2 { font-size: 32px; }
  
  .card { padding: 28px; margin: 0 16px; }
  .card h3 { font-size: 22px; }
  
  .features { padding: 80px 0 40px; }
  .features-header { margin-bottom: 56px; }
  .features-header h2 { font-size: 28px; }
  
  .pricing { padding: 80px 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-cards-v2 { grid-template-columns: 1fr; }
  .pricing-card-v2.featured { transform: none; }
  .pricing-header h2 { font-size: 28px; }
  
  .footer { padding: 48px 24px; }
  .footer-content { flex-direction: column; gap: 32px; }
  .footer-links { gap: 48px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  
  /* Features page */
  .page-hero { padding: 80px 24px 48px; }
  .page-hero h1 { font-size: 32px; }
  
  .features-full { padding: 0 24px 48px; }
  .feature-grid { grid-template-columns: 1fr; gap: 24px; }
  .feature-category { margin-bottom: 48px; }
  .feature-category h2 { font-size: 26px; }
  .feature-category.premium { padding: 32px 24px; }
  
  .feature-showcase {
    flex-direction: column;
  }
  .feature-showcase.reverse {
    flex-direction: column;
  }
  .feature-phone {
    order: -1;
    margin-bottom: 24px;
  }
  .feature-phone-pair {
    order: -1;
    margin-bottom: 24px;
    justify-content: center;
  }
  .phone-frame-small {
    width: 160px;
  }
  
  .features-bottom-cta { padding: 48px 24px; }
  .features-bottom-cta h2 { font-size: 28px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .tagline { font-size: 20px; }
  .features-header h2 { font-size: 24px; }
  .pricing-header h2 { font-size: 24px; }
}
