:root {
  --bg-color: #fafafa;
  --bg-gradient: linear-gradient(135deg, #fdfbfb 0%, #f4f4f6 100%);
  --text-primary: #18181b;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  
  --accent: #0f766e; /* Calming Teal */
  --accent-hover: #0d9488;
  --accent-light: #ccfbf1;
  
  --card-bg: rgba(255, 255, 255, 0.7);
  --card-border: rgba(255, 255, 255, 0.5);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --max-width: 1080px;
  --spacing-section: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-color);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(204, 251, 241, 0.4), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(224, 231, 255, 0.4), transparent 25%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

.skip {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip:focus {
  top: 20px;
}

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

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #9facaa;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.24);
}

.mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand strong {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  line-height: 1;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav a:hover {
  color: var(--text-primary);
}

.lang {
  display: flex;
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-full);
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.lang a {
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}

.lang a:hover {
  color: var(--text-primary);
}

.lang a[aria-current="page"] {
  background: var(--accent-light);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-primary);
}

/* HERO SECTION */
.hero {
  padding: 100px 0 60px;
  text-align: center;
}

.hero .container {
  max-width: 800px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.kicker-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-light);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.lead {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

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

.btn.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:not(.primary) {
  background: white;
  color: var(--text-primary);
  border: 1px solid rgba(0,0,0,0.05);
}

.btn:not(.primary):hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* SECTIONS */
.section {
  padding: var(--spacing-section) 0;
}

.section-alt {
  background: white;
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* GRID & CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  counter-reset: step-counter;
}

.step {
  position: relative;
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

.step strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.plan {
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.plan.featured {
  background: var(--text-primary);
  color: white;
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.plan.featured .price {
  color: rgba(255,255,255,0.8);
}

.plan.featured .ul {
  color: rgba(255,255,255,0.9);
}

.plan.featured .fineprint {
  color: rgba(255,255,255,0.6);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.plan.featured .price {
  border-bottom-color: rgba(255,255,255,0.1);
}

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

.ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.fineprint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-section .container {
  max-width: 800px;
}

details {
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.2s;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 24px 24px;
  color: var(--text-secondary);
}

/* FOOTER */
footer {
  margin-top: auto;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.foot-muted {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.foot-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.foot-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* LEGAL PAGES */
.legal {
  padding: 60px 0;
}
.legal h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.legal h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
}
.legal p, .legal li {
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.legal .meta {
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }
  .topbar-inner {
    height: 64px;
    gap: 12px;
  }
  .brand {
    gap: 9px;
    font-size: 1.05rem;
  }
  .mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 9px;
  }
  .topbar-actions {
    gap: 10px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open {
    display: flex;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: var(--radius-full);
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    font-size: 0;
  }
  .nav-toggle::before {
    content: "☰";
    font-size: 1.15rem;
    line-height: 1;
  }
  .hero {
    padding: 60px 0 40px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .plan.featured {
    transform: none;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 14px;
  }
  .brand {
    font-size: 1rem;
  }
  .brand-suffix {
    display: none;
  }
  .lang a {
    padding: 5px 8px;
    font-size: 0.78rem;
  }
}

/* Coming soon (SITE_LIVE=False) */
.coming-soon-body {
  min-height: 100vh;
}

.coming-soon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 64px;
}

.coming-soon-inner {
  max-width: 560px;
  text-align: center;
}

.coming-soon-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.coming-soon h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.coming-soon-message {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.coming-soon-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.coming-soon-contact a {
  color: var(--accent);
  font-weight: 500;
}

.coming-soon-contact a:hover {
  color: var(--accent-hover);
}

.coming-soon-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.coming-soon-legal a {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--card-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

.coming-soon-legal a:hover {
  color: var(--accent);
  border-color: var(--accent-light);
}
