:root {
  --primary: #FF85A1;
  --primary-dark: #e8648a;
  --purple: #A78BFA;
  --bg: #fff9fb;
  --surface: #ffffff;
  --text: #1a1a2e;
  --text-secondary: #6b7280;
  --border: #f3e8ee;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(255,133,161,0.10);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
nav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .app-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 12px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(255,133,161,0.08);
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: white !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { opacity: 0.9; background: linear-gradient(135deg, var(--primary), var(--purple)) !important; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; }

/* FOOTER */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 8px; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { text-decoration: none; color: var(--text-secondary); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: var(--text-secondary); font-size: 0.85rem; }

/* HERO */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
  background: linear-gradient(160deg, #FFD6E7 0%, #fff9fb 40%, #D6F0FF 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,133,161,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,133,161,0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: white;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255,133,161,0.35);
  transition: all 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,133,161,0.45); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-mockup {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.hero-mockup img {
  width: 200px;
  height: 200px;
  border-radius: 44px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(255,133,161,0.35);
}

/* SECTIONS */
.section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* FEATURE CARDS */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* LANGUAGE PILLS */
.lang-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.lang-pill {
  background: white;
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: var(--shadow);
}
.lang-pill:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--text);
  gap: 16px;
}
.faq-arrow { color: var(--primary); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--text-secondary); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* PAGE HEADER */
.page-hero {
  background: linear-gradient(160deg, #FFD6E7 0%, #fff9fb 60%);
  padding: 80px 24px 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: var(--text-secondary); font-size: 1.05rem; }

/* PROSE (legal pages) */
.prose {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.prose h2 { font-size: 1.4rem; font-weight: 800; margin: 32px 0 12px; color: var(--text); }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.75; }
.prose ul { color: var(--text-secondary); padding-left: 20px; margin-bottom: 14px; line-height: 1.75; }
.prose ul li { margin-bottom: 6px; }
.prose a { color: var(--primary); }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 24px; max-width: 760px; margin: 0 auto; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { font-weight: 800; margin-bottom: 6px; }
.step-content p { color: var(--text-secondary); font-size: 0.95rem; }

/* FORM */
.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { height: 140px; resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: white;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(255,133,161,0.3);
}
.btn-submit:hover { transform: translateY(-2px); }

/* TROUBLESHOOT */
.trouble-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.trouble-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.trouble-card .icon { margin-bottom: 12px; }
.trouble-card .icon img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}
.trouble-card h3 { font-weight: 800; margin-bottom: 10px; font-size: 1rem; }
.trouble-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; }
.trouble-card .fix {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(255,133,161,0.08);
  border-radius: 12px;
  border-left: 3px solid var(--primary);
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}

/* CARD ICON IMAGE */
.card-icon-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
  display: block;
}

/* CONTACT GRID */
.contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 760px; margin: 0 auto 48px; }
.contact-method {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.contact-method:hover { border-color: var(--primary); transform: translateY(-3px); }
.contact-method .icon { font-size: 2.2rem; margin-bottom: 12px; }
.contact-method h3 { font-weight: 800; margin-bottom: 4px; }
.contact-method p { color: var(--text-secondary); font-size: 0.85rem; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  margin: 60px 0 0;
}
.cta-banner h2 { font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.cta-banner p { opacity: 0.85; margin-bottom: 28px; font-size: 1.05rem; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary);
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    gap: 4px;
  }
  .mobile-menu a {
    padding: 12px 16px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
  }
  .mobile-menu a:hover { color: var(--primary); background: rgba(255,133,161,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .prose { padding: 28px 20px; }
  .form-card { padding: 28px 20px; }
  .cta-banner { padding: 40px 20px; }
  .hero { padding: 70px 20px 60px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
