:root {
  --navy: #0E1C3A;
  --blue: #1A6BAD;
  --teal: #1DB8A0;
  --white: #FFFFFF;
  --gray-light: #F4F6F9;
  --gray-mid: #8A9BB0;
  --border: #E2E8F0;
  --shadow: 0 2px 12px rgba(14,28,58,0.08);
  --radius: 8px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em;
  color: var(--navy);
}
.logo-sub { color: var(--teal); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem; color: var(--gray-mid); font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.btn-lang {
  background: none; border: 1px solid var(--border);
  border-radius: 999px; padding: 4px 12px;
  font-size: 0.8rem; font-weight: 500; color: var(--gray-mid);
  cursor: pointer; transition: all 0.2s;
}
.btn-lang:hover { border-color: var(--teal); color: var(--teal); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius); padding: 12px 24px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; border: none; font-family: inherit;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #155d99; }
.btn-cta { background: var(--teal); color: var(--white); }
.btn-cta:hover { background: #189e89; }
.btn-outline {
  background: transparent; border: 1.5px solid var(--blue); color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-outline-light {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.4); color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 80px 0; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--navy); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-mid); max-width: 560px;
  line-height: 1.65;
}
.center { text-align: center; }
.center .section-subtitle { margin: 0 auto; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,184,160,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,107,173,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,184,160,0.15); border: 1px solid rgba(29,184,160,0.3);
  border-radius: 999px; padding: 5px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 20px;
}
.hero-title span { color: var(--teal); }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px; position: relative;
}
.hero-visual-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.hero-visual-title {
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero-month-nav { display: flex; gap: 8px; }
.hero-month-nav span {
  width: 24px; height: 24px; border-radius: 4px;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center;
  font-size: 0.7rem; color: rgba(255,255,255,0.4); cursor: pointer;
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.cal-day-name {
  font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.3);
  text-align: center; padding: 4px 0; text-transform: uppercase; letter-spacing: 0.05em;
}
.cal-day {
  aspect-ratio: 1; border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.15s; position: relative;
}
.cal-day:hover { background: rgba(255,255,255,0.06); }
.cal-day.has-post { color: var(--white); background: rgba(26,107,173,0.25); }
.cal-day.has-post::after {
  content: ''; position: absolute; bottom: 4px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--teal);
}
.cal-day.today { background: var(--teal); color: var(--navy); font-weight: 700; }
.cal-day.today::after { display: none; }
.cal-day.empty { opacity: 0; pointer-events: none; }

/* ── STEPS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 56px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 28px; left: calc(16.66% + 24px); right: calc(16.66% + 24px);
  height: 1px; background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0.3;
}
.step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--white);
  margin-bottom: 20px; flex-shrink: 0;
}
.step-icon {
  font-size: 1.4rem; margin-bottom: 8px; color: var(--teal);
}
.step h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy);
}
.step p { font-size: 0.9rem; color: var(--gray-mid); line-height: 1.6; }

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26,107,173,0.1), rgba(29,184,160,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-mid); line-height: 1.5; }

/* ── PLANS ── */
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px; align-items: start;
}
.plan-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; transition: box-shadow 0.2s;
}
.plan-card:hover { box-shadow: var(--shadow); }
.plan-card.featured {
  border-color: var(--blue); box-shadow: 0 0 0 2px rgba(26,107,173,0.15);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px;
}
.plan-name {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--teal); margin-bottom: 8px;
}
.plan-price {
  font-size: 2rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.03em; margin-bottom: 4px;
  line-height: 1;
}
.plan-price sup { font-size: 1rem; font-weight: 600; vertical-align: top; margin-top: 4px; }
.plan-price-period { font-size: 0.85rem; color: var(--gray-mid); margin-bottom: 24px; }
.plan-features { margin-bottom: 28px; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; padding: 8px 0; border-bottom: 1px solid var(--border);
  color: var(--navy);
}
.plan-feature:last-child { border-bottom: none; }
.plan-feature-check { color: var(--teal); flex-shrink: 0; font-weight: 700; margin-top: 2px; }
.plan-feature-x { color: var(--gray-mid); flex-shrink: 0; font-weight: 700; margin-top: 2px; }

/* ── SOCIAL PROOF / TRUST ── */
.trust-bar {
  background: var(--gray-light); padding: 40px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center;
}
.trust-number {
  font-size: 1.8rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.03em;
}
.trust-label { font-size: 0.8rem; color: var(--gray-mid); font-weight: 500; }

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, #132240 100%);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(29,184,160,0.1) 0%, transparent 65%);
}
.cta-final .section-title { color: var(--white); }
.cta-final .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto 36px; }
.cta-final-actions { display: flex; gap: 12px; justify-content: center; }

/* ── FOOTER ── */
.footer {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 40px; gap: 40px; flex-wrap: wrap;
}
.footer-logo { margin-bottom: 12px; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); max-width: 220px; }
.footer-links { display: flex; gap: 48px; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.9rem; color: rgba(255,255,255,0.65);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px;
}

/* ── PRICING PAGE ── */
.page-hero {
  background: var(--navy); padding: 72px 0 56px; text-align: center;
}
.page-hero .section-title { color: var(--white); }
.page-hero .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }

.plan-card-full {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  position: relative; transition: box-shadow 0.2s;
}
.plan-card-full:hover { box-shadow: var(--shadow); }
.plan-card-full.featured { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(26,107,173,0.15); }
.plans-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px;
}

/* ── LEGAL PAGES ── */
.legal-hero { background: var(--gray-light); padding: 56px 0 40px; border-bottom: 1px solid var(--border); }
.legal-hero h1 { font-size: 2rem; font-weight: 800; color: var(--navy); }
.legal-hero p { color: var(--gray-mid); margin-top: 8px; font-size: 0.9rem; }
.legal-body { max-width: 760px; margin: 0 auto; padding: 56px 2rem; }
.legal-body h2 { font-size: 1.1rem; font-weight: 700; margin: 32px 0 12px; color: var(--navy); }
.legal-body p { font-size: 0.95rem; color: #374151; line-height: 1.75; margin-bottom: 16px; }
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body li { font-size: 0.95rem; color: #374151; line-height: 1.75; margin-bottom: 6px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plans-full-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 32px; }
  .trust-inner { gap: 32px; }
  .cta-final-actions { flex-direction: column; align-items: center; }
}
