/* ─── Variables ──────────────────────────────────────────────────────────── */
:root {
  --red:        #C8102E;
  --red-dark:   #A00E25;
  --red-light:  #FBEAED;
  --cream:      #FAF7F2;
  --cream-dark: #F0EBE3;
  --black:      #0D0D0D;
  --gray-dark:  #2A2A2A;
  --gray:       #6B6B6B;
  --gray-light: #D4D0CA;
  --white:      #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 16px rgba(13,13,13,0.07);
  --shadow-lg: 0 8px 48px rgba(13,13,13,0.13);
  --transition: 0.2s ease;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; }
input, textarea, select { font-family: var(--font-sans); }
ul, ol { list-style: none; }

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--black);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem);   font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
p  { color: var(--gray-dark); line-height: 1.7; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 70px;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-dark);
  display: flex; align-items: center; padding: 0 28px;
}
.navbar__inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.navbar__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
  color: var(--black); white-space: nowrap;
}
.navbar__logo .logo-red { color: var(--red); }
.navbar__nav { display: flex; align-items: center; gap: 36px; }
.navbar__nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--gray-dark);
  transition: color var(--transition); letter-spacing: 0.01em;
}
.navbar__nav a:hover { color: var(--red); }
.navbar__actions { display: flex; align-items: center; gap: 10px; }

/* ─── Language buttons ───────────────────────────────────────────────────── */
.lang-btn {
  background: none; border: 1.5px solid var(--gray-light);
  padding: 5px 11px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--gray); transition: all var(--transition);
}
.lang-btn:hover       { border-color: var(--red); color: var(--red); }
.lang-btn.active      { background: var(--red); border-color: var(--red); color: var(--white); }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap; cursor: pointer;
  text-decoration: none; line-height: 1.3;
}
.btn-primary {
  background: var(--red); color: var(--white); border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.32);
}
.btn-outline {
  background: transparent; color: var(--red); border-color: var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-ghost {
  background: transparent; color: var(--gray-dark);
  border-color: var(--gray-light);
}
.btn-ghost:hover { border-color: var(--gray-dark); color: var(--black); }
.btn-lg  { padding: 16px 40px; font-size: 1.05rem; border-radius: 10px; }
.btn-sm  { padding: 8px 18px; font-size: 0.85rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ─── Overline label ─────────────────────────────────────────────────────── */
.overline {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════════════ */
.hero {
  padding-top: 140px; padding-bottom: 96px;
  background: var(--cream);
  position: relative; overflow: hidden;
}
/* Decorative background blobs */
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -160px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at 60% 40%, rgba(200,16,46,0.07) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.04) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 460px;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-light); color: var(--red-dark);
  padding: 7px 16px; border-radius: 24px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 24px;
  border: 1px solid rgba(200,16,46,0.15);
}
.hero__title {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
}
.hero__title em {
  font-style: italic; color: var(--red);
  display: inline-block;
}
.hero__subtitle {
  font-size: 1.1rem; color: var(--gray);
  margin-bottom: 40px; max-width: 500px; line-height: 1.75;
}
.hero__subtitle strong { color: var(--gray-dark); font-weight: 600; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 36px; padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.83rem; color: var(--gray);
}
.hero__trust-avatars { display: flex; }
.hero__trust-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream-dark); border: 2px solid var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; margin-left: -8px; font-weight: 600;
  color: var(--gray-dark);
}
.hero__trust-avatar:first-child { margin-left: 0; }

/* ─ Hero card (right column) ─────────────────────────────────────────────── */
.hero__card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
  position: relative;
}
.hero__card::before {
  content: '';
  position: absolute; top: -1px; left: 32px; right: 32px; height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, #FF4D6D 100%);
  border-radius: 0 0 4px 4px;
}
.card-top-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.card-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gray);
}
.risk-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
}
.risk-badge.high   { background: #FEE2E2; color: #B91C1C; }
.risk-badge.medium { background: #FEF3C7; color: #92400E; }
.risk-badge.low    { background: #D1FAE5; color: #065F46; }

.clause-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 14px; border-radius: 10px;
  background: var(--cream); margin-bottom: 8px;
  transition: background var(--transition);
}
.clause-item:last-of-type { margin-bottom: 0; }
.clause-dot {
  width: 9px; height: 9px; border-radius: 50%; margin-top: 4px; flex-shrink: 0;
}
.clause-dot.red    { background: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }
.clause-dot.yellow { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }
.clause-dot.green  { background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,0.15); }
.clause-text-wrap { flex: 1; }
.clause-level {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 2px;
}
.clause-level.red    { color: #EF4444; }
.clause-level.yellow { color: #F59E0B; }
.clause-level.green  { color: #10B981; }
.clause-desc { font-size: 0.83rem; color: var(--gray-dark); line-height: 1.4; }
.card-footer {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.73rem; color: var(--gray); text-align: center;
}

/* ══════════════════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--black);
  padding: 22px 0;
  border-top: 3px solid var(--red);
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem; font-weight: 500;
}
.trust-item__icon { font-size: 1.15rem; }

/* ══════════════════════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════════════════════ */
.features { background: var(--white); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .overline { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.05rem; color: var(--gray);
  max-width: 560px; margin: 0 auto;
}

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.feature-card {
  padding: 36px 28px; border-radius: var(--radius-lg);
  background: var(--cream); border: 1px solid var(--cream-dark);
  transition: all 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,16,46,0.2);
  background: var(--white);
}
.feature-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--red-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 20px;
  border: 1px solid rgba(200,16,46,0.12);
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p  { font-size: 0.875rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════════════════ */
.how-it-works { background: var(--cream); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 27px; left: 12%; right: 12%;
  height: 1px; background: var(--gray-light); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  color: var(--red); margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--cream);
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p  { font-size: 0.855rem; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════════════════ */
.pricing { background: var(--black); }
.pricing .section-header h2 { color: var(--white); }
.pricing .section-header p  { color: rgba(255,255,255,0.55); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: all 0.25s ease; position: relative;
}
.pricing-card:hover { border-color: rgba(200,16,46,0.45); }
.pricing-card.featured {
  background: var(--red);
  border-color: var(--red);
  padding-top: 52px;
  box-shadow: 0 20px 60px rgba(200,16,46,0.35);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--red);
  padding: 5px 18px; border-radius: 24px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.pricing-plan {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.pricing-card.featured .pricing-plan { color: rgba(255,255,255,0.75); }
.pricing-price {
  font-family: var(--font-serif); font-size: 3.2rem; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 4px;
  display: flex; align-items: flex-start; gap: 2px;
}
.pricing-price .currency { font-size: 1.3rem; margin-top: 8px; }
.pricing-price .cents    { font-size: 1.3rem; align-self: flex-end; margin-bottom: 6px; }
.pricing-period {
  font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 28px;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.65); }
.pricing-features { margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: rgba(255,255,255,0.75);
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.4;
}
.pricing-card.featured .pricing-features li { border-bottom-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.pricing-features li::before { content: '✓'; color: #10B981; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .pricing-features li::before { color: rgba(255,255,255,0.9); }
.pricing-card .btn-primary { width: 100%; }
.pricing-card.featured .btn-cta {
  width: 100%; display: flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 700;
  font-size: 0.95rem; background: var(--white); color: var(--red);
  border: 2px solid transparent; transition: all var(--transition); cursor: pointer;
}
.pricing-card.featured .btn-cta:hover {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════════════════════════════════════════
   PRIVACY
══════════════════════════════════════════════════════════════════════════ */
.privacy-section { background: var(--cream-dark); }
.privacy-inner { display: flex; gap: 64px; align-items: center; }
.privacy-text { flex: 1; }
.privacy-text h2 { margin: 14px 0 20px; }
.privacy-text p  { margin-bottom: 16px; font-size: 0.95rem; }
.privacy-text p strong { color: var(--black); font-weight: 600; }
.privacy-points { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.privacy-point {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.875rem; color: var(--gray-dark);
}
.privacy-point-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: #D1FAE5; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: #065F46; flex-shrink: 0;
}
.privacy-visual {
  flex: 0 0 290px; background: var(--white);
  border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow-lg); text-align: center;
  border: 1px solid var(--cream-dark);
}
.privacy-timer {
  font-family: var(--font-serif); font-size: 4rem; font-weight: 700;
  color: var(--red); line-height: 1; margin: 8px 0;
}
.privacy-timer-label { font-size: 0.8rem; color: var(--gray); font-weight: 500; }
.privacy-visual-desc { font-size: 0.78rem; color: var(--gray); margin-top: 16px; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 96px 0; text-align: center;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 55%, #E8172F 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section h2 {
  color: var(--white); font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px; position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.8); font-size: 1.1rem;
  margin-bottom: 40px; position: relative;
}
.cta-section .btn-white {
  background: var(--white); color: var(--red);
  border: 2px solid var(--white); font-weight: 700;
  padding: 16px 44px; font-size: 1.05rem; border-radius: 10px;
  transition: all var(--transition); cursor: pointer;
  font-family: var(--font-sans); position: relative;
}
.cta-section .btn-white:hover {
  background: transparent; color: var(--white);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 64px 0 36px;
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer__brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 14px;
}
.footer__brand p {
  font-size: 0.855rem; line-height: 1.7;
  color: rgba(255,255,255,0.45); max-width: 280px;
}
.footer__col h4 {
  color: var(--white); font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 18px;
}
.footer__col li { margin-bottom: 11px; }
.footer__col a {
  font-size: 0.855rem; color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════════════════════════════════
   AUTH MODAL
══════════════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(13,13,13,0.65);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.22s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: 20px;
  padding: 48px 44px; max-width: 460px; width: 100%;
  box-shadow: 0 24px 80px rgba(13,13,13,0.2);
  transform: scale(0.96) translateY(8px); transition: transform 0.22s ease;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal__header { text-align: center; margin-bottom: 32px; }
.modal__logo {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--black); margin-bottom: 6px;
}
.modal__logo span { color: var(--red); }
.modal__subtitle { font-size: 0.88rem; color: var(--gray); }
.modal__tabs {
  display: flex; border-bottom: 2px solid var(--cream-dark); margin-bottom: 28px;
}
.modal__tab {
  flex: 1; padding: 11px; text-align: center; background: none; border: none;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  color: var(--gray); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all var(--transition);
}
.modal__tab.active { color: var(--red); border-bottom-color: var(--red); }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 7px; color: var(--gray-dark);
}
.form-group input {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--gray-light); border-radius: var(--radius);
  font-size: 0.9rem; background: var(--cream); color: var(--black);
  transition: all var(--transition); outline: none;
}
.form-group input:focus { border-color: var(--red); background: var(--white); }
.form-group input::placeholder { color: var(--gray-light); }
.modal .btn-primary { width: 100%; padding: 14px; font-size: 1rem; margin-top: 6px; }
.modal__footer { text-align: center; margin-top: 20px; font-size: 0.82rem; color: var(--gray); }
.modal__footer a { color: var(--red); font-weight: 600; }
.modal__close {
  display: flex; justify-content: flex-end; margin-top: 18px;
}
.modal__close button {
  background: none; border: none; color: var(--gray);
  font-size: 0.82rem; cursor: pointer; transition: color var(--transition);
  font-family: var(--font-sans);
}
.modal__close button:hover { color: var(--black); }

/* ─── Alert & Toast ──────────────────────────────────────────────────────── */
.alert {
  padding: 12px 15px; border-radius: var(--radius);
  font-size: 0.855rem; margin-bottom: 16px; display: none; line-height: 1.5;
}
.alert.show   { display: block; }
.alert-error  { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.alert-success{ background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }

.toast-container {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--black); color: var(--white);
  padding: 14px 20px; border-radius: 10px;
  font-size: 0.875rem; font-weight: 500;
  box-shadow: var(--shadow-lg); max-width: 340px; line-height: 1.4;
  animation: toastIn 0.3s cubic-bezier(0.16,1,0.3,1);
}
.toast.success { border-left: 3px solid #10B981; }
.toast.error   { border-left: 3px solid var(--red); }
@keyframes toastIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 400px; gap: 48px; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card  { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .privacy-inner { flex-direction: column; gap: 40px; }
  .privacy-visual { width: 100%; max-width: 320px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .navbar { padding: 0 20px; }
  .navbar__nav { display: none; }
  .navbar__actions .btn-ghost { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 20px; flex-direction: column; align-items: flex-start; padding: 0 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .modal { padding: 36px 24px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
