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

:root {
  --orange: #E87722;
  --orange-dark: #B84E00;
  --orange-light: #FFF3E8;
  --green: #2E7D32;
  --red: #C62828;
  --gray-900: #1A1A1A;
  --gray-700: #444;
  --gray-500: #777;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --radius: 12px;
  --max-width: 1080px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* === Utility === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* === Nav === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-logo svg { width: 36px; height: 36px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover { background: var(--orange-light); }

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

/* === Hero === */
.hero {
  padding: 120px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 20px;
}

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

.hero p {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--gray-700);
  max-width: 560px;
  margin: 0 auto 36px;
}

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

/* === Phone Mockup === */
.phone-wrapper {
  margin: 60px auto 0;
  width: 300px;
  max-width: 100%;
}

.phone-frame {
  background: var(--gray-900);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.15);
}

.phone-screen {
  position: relative;
  border-radius: 26px;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
}

.phone-screen picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.phone-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.phone-slide.active {
  opacity: 1;
}

.phone-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.phone-dot {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: var(--gray-200);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
}

.phone-dot.active {
  background-color: var(--orange);
}

/* === Pain Point === */
.pain {
  padding: 60px 0;
  background: var(--gray-100);
}

.pain .container {
  text-align: center;
  max-width: 640px;
}

.pain .stat {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
}

.pain h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pain p {
  color: var(--gray-700);
  font-size: 1.05rem;
}

/* === Features === */
.features {
  padding: 80px 0;
}

.features h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* === Pricing === */
.pricing {
  padding: 60px 0;
  background: var(--gray-100);
  text-align: center;
}

.pricing h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.pricing .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
}

.pricing .price-period {
  font-size: 1.1rem;
  color: var(--gray-500);
  font-weight: 500;
}

.pricing p {
  color: var(--gray-700);
  margin-top: 12px;
  font-size: 1rem;
}

/* === Founder Member === */
.founder {
  padding: 80px 0;
  background: var(--gray-900);
  text-align: center;
  color: var(--white);
}

.founder-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.founder h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.founder-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.founder-sub {
  color: #aaa;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.founder-perks {
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin-bottom: 36px;
}

.founder .btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.founder-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #ddd;
}

.perk-check {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* === Audience === */
.audience {
  padding: 80px 0;
}

.audience h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 48px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.audience-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.audience-card .audience-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.audience-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* === Bottom CTA === */
.bottom-cta {
  padding: 80px 0;
  background: var(--gray-900);
  text-align: center;
  color: var(--white);
}

.bottom-cta h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.bottom-cta p {
  color: #aaa;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* === Footer === */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--gray-500);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gray-900); }

.footer-copy {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* === Legal Pages === */
.legal {
  padding: 120px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal .last-updated {
  color: var(--gray-500);
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 12px;
}

.legal p, .legal li {
  color: var(--gray-700);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.legal ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--gray-900);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-banner a {
  color: var(--orange);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-cookie-accept:hover { background: var(--orange-dark); }

.btn-cookie-reject {
  background: transparent;
  color: #aaa;
  border: 1px solid #555;
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-cookie-reject:hover { color: var(--white); border-color: #888; }

/* === Responsive === */
@media (max-width: 640px) {
  .hero { padding: 100px 0 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .footer .container { flex-direction: column; text-align: center; }
}
