/* ============================================
   LUMA LOCAL — Theme CSS
   Typography: Syne (display) + DM Sans (body)
   Palette: Coral #FF6B35 | Teal #0F4C5C | Cream #FDF6EC
   ============================================ */

/* --- CSS Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coral: #FF6B35;
  --coral-light: #FF8F66;
  --coral-dark: #E55A25;
  --teal: #0F4C5C;
  --teal-light: #1A6B7D;
  --cream: #FDF6EC;
  --cream-dark: #F5E8D6;
  --dark: #1A1A1A;
  --dark-soft: #2D2D2D;
  --text: #2D2D2D;
  --text-soft: #6B6B6B;
  --white: #FFFFFF;

  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: rgba(253, 246, 236, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.5);
  flex-shrink: 0;
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FF6B35 0%, transparent 70%);
  top: -100px;
  right: 10%;
  animation: orb-pulse 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0F4C5C 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  opacity: 0.2;
  animation: orb-pulse 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #FF8F66 0%, transparent 70%);
  top: 40%;
  left: 30%;
  opacity: 0.15;
  animation: orb-pulse 12s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 76, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 92, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.1); opacity: 0.45; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--coral-dark);
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--coral);
  position: relative;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 400;
  max-width: 100px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(15, 76, 92, 0.15);
  margin-right: 32px;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  background: rgba(15, 76, 92, 0.06);
  border: 1px solid rgba(15, 76, 92, 0.15);
  border-radius: 100px;
  padding: 10px 18px;
}

.phone-icon {
  font-size: 16px;
}

/* --- Phone Mockup --- */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  background: var(--dark);
  border-radius: 40px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
  width: 280px;
}

.phone-screen {
  background: #111;
  border-radius: 28px;
  overflow: hidden;
  padding-bottom: 12px;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.phone-avatar svg {
  width: 32px;
  height: 32px;
}

.phone-username {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.phone-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
}

.phone-post {
  padding: 10px 12px 6px;
}

.post-gradient {
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.post-1 { background: linear-gradient(135deg, #FF6B35, #FF8F66); min-height: 72px; }
.post-2 { background: linear-gradient(135deg, #0F4C5C, #1A6B7D); min-height: 72px; }
.post-3 { background: linear-gradient(135deg, #1A6B7D, #0F4C5C); min-height: 72px; }

.post-badge {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.post-caption {
  font-size: 11px;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  font-weight: 500;
}

.post-actions {
  display: flex;
  gap: 12px;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  padding: 0 4px;
}

/* --- Section Commons --- */
.section-tag {
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

/* --- Problem Section --- */
.problem {
  background: var(--dark);
  padding: 120px 48px;
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-header {
  text-align: center;
  margin-bottom: 64px;
}

.problem-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -1px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
}

.problem-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* --- Services Section --- */
.services {
  background: var(--cream);
  padding: 120px 48px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.services-sub {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.service-card {
  background: white;
  border: 1px solid rgba(15, 76, 92, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.08);
  transform: translateY(-2px);
}

.service-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  background: linear-gradient(135deg, #0F4C5C, #1A6B7D);
  border: none;
  padding: 48px;
}

.service-featured:hover {
  box-shadow: 0 16px 64px rgba(15, 76, 92, 0.2);
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
}

.service-icon-big {
  font-size: 40px;
  line-height: 1;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.service-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral-light);
  font-weight: 700;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

/* --- Social Proof Section --- */
.socialproof {
  background: var(--cream-dark);
  padding: 120px 48px;
  border-top: 1px solid rgba(15, 76, 92, 0.08);
}

.socialproof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proof-header {
  text-align: center;
  margin-bottom: 64px;
}

.proof-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -1px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.proof-stat {
  text-align: center;
  padding: 48px 32px;
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(15, 76, 92, 0.06);
  box-shadow: 0 4px 24px rgba(15, 76, 92, 0.04);
}

.proof-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 12px;
}

.proof-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.proof-stat p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.proof-quote {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px;
  background: var(--teal);
  border-radius: 24px;
}

.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin-bottom: 16px;
}

.proof-quote cite {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* --- Pricing Section --- */
.pricing {
  background: var(--cream);
  padding: 120px 48px;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.pricing-header p {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.price-card {
  background: white;
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 76, 92, 0.1);
}

.price-featured {
  border-color: var(--coral);
  box-shadow: 0 0 0 1px var(--coral), 0 16px 48px rgba(255, 107, 53, 0.12);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  font-family: var(--font-body);
}

.price-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.price-amount span {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0;
}

.price-header p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.5;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(15, 76, 92, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-features li::before {
  content: '✓';
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  background: var(--dark);
  color: white;
  cursor: default;
}

.price-featured .price-cta {
  background: var(--coral);
}

.pricing-proof {
  text-align: center;
  padding: 32px;
  background: rgba(15, 76, 92, 0.05);
  border-radius: 16px;
  border: 1px dashed rgba(15, 76, 92, 0.2);
}

.pricing-proof p {
  font-size: 16px;
  color: var(--text-soft);
}

.pricing-proof strong {
  color: var(--teal);
}

/* --- Closing Section --- */
.closing {
  background: var(--dark);
  padding: 120px 48px;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.closing-content {
  text-align: center;
  margin-bottom: 72px;
}

.closing-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.closing-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

.closing-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.action-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}

.action-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--coral);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
}

.action-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.action-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

.closing-vibe {
  text-align: center;
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(255,107,53,0.05);
}

.vibe-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.closing-vibe p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Footer --- */
.footer {
  background: #111;
  padding: 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: white;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-sep { opacity: 0.4; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-featured { grid-column: 1 / -1; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-stat:last-child { grid-column: 1 / -1; }
  .closing-actions { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .problem { padding: 80px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-featured { grid-template-columns: 1fr; }
  .socialproof { padding: 80px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing { padding: 80px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .closing-content h2 br { display: none; }
  .hero-headline br { display: none; }
}
