@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300..800;1,14..32,300..800&display=swap');

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

:root {
  --bg:         #f9fafb;
  --bg-alt:     #f1f5f9;
  --bg-card:    #e8edf3;
  --text:       #0f172a;
  --text-muted: #64748b;
  --accent:     #3b82f6;
  --accent-h:   #2563eb;
  --accent-faint: #eff6ff;
  --border:     #e2e8f0;
  --nav-bg:     rgba(255,255,255,0.85);
  --shadow:     0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.09);
  --r:  14px;
  --rs: 9px;
}

[data-theme="dark"] {
  --bg:         #0f172a;
  --bg-alt:     #1e293b;
  --bg-card:    #1e293b;
  --text:       #f1f5f9;
  --text-muted: #94a3b8;
  --accent-faint: rgba(59,130,246,0.14);
  --border:     #334155;
  --nav-bg:     rgba(15,23,42,0.85);
  --shadow:     0 1px 3px rgba(0,0,0,0.35);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout ────────────────────────────────── */
.container { max-width: 1800px; margin: 0 auto; padding: 0 40px; }

/* ─── Navigation ────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
.nav-inner {
  display: flex; align-items: center; gap: 20px; height: 64px;
}
.nav-logo {
  font-weight: 800; font-size: 1.05rem; color: var(--text);
  text-decoration: none; letter-spacing: -0.03em; flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2px; list-style: none; flex: 1; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.88rem;
  font-weight: 500; padding: 6px 11px; border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg-card); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.btn-icon {
  width: 34px; height: 34px; border: none; background: var(--bg-card);
  border-radius: 8px; cursor: pointer; display: flex; align-items: center;
  justify-content: center; color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.btn-icon:hover { background: var(--border); color: var(--text); }

.lang-dropdown { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  height: 34px; padding: 0 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 0.82rem;
  font-family: inherit; font-weight: 500; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.lang-btn:hover { background: var(--border); }
.lang-btn svg { color: var(--text-muted); transition: transform 0.15s; flex-shrink: 0; }
.lang-dropdown.open .lang-btn svg { transform: rotate(180deg); }
.lang-panel {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; box-shadow: var(--shadow-lg);
  overflow: hidden; min-width: 70px; z-index: 200;
}
.lang-dropdown.open .lang-panel { display: block; }
.lang-option {
  display: block; width: 100%; padding: 8px 14px;
  text-align: left; background: none; border: none;
  font-family: inherit; font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer;
  transition: background 0.1s, color 0.1s;
}
.lang-option:hover { background: var(--bg-card); color: var(--text); }
.lang-option.active { color: var(--accent); font-weight: 600; }

.btn-nav-cta {
  background: var(--accent); color: #fff; border: none;
  padding: 7px 15px; border-radius: 8px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer; text-decoration: none;
  transition: background 0.15s, transform 0.1s; white-space: nowrap;
  font-family: inherit;
}
.btn-nav-cta:hover { background: var(--accent-h); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none; flex-direction: column; gap: 2px;
  padding: 10px 0 16px; border-top: 1px solid var(--border);
}
.nav-mobile a {
  color: var(--text-muted); text-decoration: none; font-size: 0.92rem;
  font-weight: 500; padding: 10px 4px; transition: color 0.15s;
}
.nav-mobile a:hover { color: var(--text); }

@media (max-width: 768px) {
  .nav-links, .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
}

/* ─── Buttons ───────────────────────────────── */
.btn-primary {
  background: var(--accent); color: #fff; border: none;
  padding: 13px 26px; border-radius: 10px; font-size: 0.93rem;
  font-weight: 600; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  background: var(--accent-h); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,130,246,0.45);
}

.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border); padding: 13px 26px;
  border-radius: 10px; font-size: 0.93rem; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px; font-family: inherit;
  transition: border-color 0.15s, color 0.15s, background 0.15s, transform 0.15s;
}
.btn-secondary:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-faint); transform: translateY(-2px);
}

.btn-white {
  background: #fff; color: var(--accent); border: none;
  padding: 13px 26px; border-radius: 10px; font-size: 0.93rem;
  font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

/* ─── Hero ──────────────────────────────────── */
.hero {
  padding: 140px 0 100px; background: var(--bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -160px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(59,130,246,0.11) 0%, transparent 68%);
  pointer-events: none; animation: float 10s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(96,165,250,0.07) 0%, transparent 65%);
  pointer-events: none; animation: float 13s ease-in-out infinite reverse;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-faint); color: var(--accent);
  font-size: 0.77rem; font-weight: 700; padding: 5px 13px;
  border-radius: 999px; margin-bottom: 22px; letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 22px; max-width: 700px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted); max-width: 500px;
  margin-bottom: 38px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 52px; display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: var(--text-muted); font-weight: 500;
}
.hero-trust-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-faint); display: flex; align-items: center;
  justify-content: center; color: var(--accent);
}
.hero-trust-divider { width: 1px; height: 20px; background: var(--border); }

/* ─── Sections ──────────────────────────────── */
section { padding: 96px 0; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.028em; line-height: 1.18; margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted); max-width: 520px; line-height: 1.75;
}

/* ─── Benefits ──────────────────────────────── */
.benefits-section { background: var(--bg-alt); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; margin-top: 52px;
}
.benefit-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
}
.benefit-card:nth-child(2).fade-up { transition-delay: 0.07s; }
.benefit-card:nth-child(3).fade-up { transition-delay: 0.14s; }
.benefit-card:nth-child(4).fade-up { transition-delay: 0.21s; }
.benefit-icon {
  width: 42px; height: 42px; background: var(--accent-faint);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; color: var(--accent);
}
.benefit-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Process ───────────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 52px; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 27px;
  left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 1px; background: var(--border); z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-number {
  width: 54px; height: 54px; background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.05rem; font-weight: 700;
  margin: 0 auto 18px; position: relative; z-index: 1;
}
.process-step h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }
.process-cta-wrap { text-align: center; margin-top: 48px; }

/* ─── FAQ ───────────────────────────────────── */
.faq-section { background: var(--bg-alt); }
.faq-list { margin-top: 52px; display: flex; flex-direction: column; gap: 10px; max-width: 720px; }

details.faq-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--rs); overflow: hidden; transition: border-color 0.2s;
}
details.faq-item[open] { border-color: rgba(59,130,246,0.3); }
details.faq-item summary {
  padding: 18px 22px; font-size: 0.93rem; font-weight: 600;
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transition: transform 0.2s;
}
[data-theme="dark"] details.faq-item summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}
details.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px 18px; font-size: 0.88rem;
  color: var(--text-muted); line-height: 1.72;
}

/* ─── CTA Banner ────────────────────────────── */
.cta-section { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); padding: 80px 0; }
.cta-inner { text-align: center; }
.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: #fff; margin-bottom: 14px; letter-spacing: -0.028em;
}
.cta-section p { color: rgba(255,255,255,0.82); font-size: 1rem; margin-bottom: 30px; }

/* ─── Footer ────────────────────────────────── */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 60px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 44px;
}
.footer-brand h3 {
  font-size: 1.05rem; font-weight: 800; margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.footer-brand h3 span { color: var(--accent); }
.footer-brand p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.72; max-width: 250px; }
.footer-col h4 {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--text-muted); text-decoration: none; font-size: 0.86rem;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.81rem; color: var(--text-muted); }

/* ─── Cookie Banner ─────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 40px); max-width: 660px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  padding: 18px 22px; z-index: 999; display: none;
  gap: 16px; align-items: flex-start;
}
.cookie-banner.visible { display: flex; }
.cookie-text { flex: 1; }
.cookie-text h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.cookie-text p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; align-items: center; }
.btn-cookie-accept {
  background: var(--accent); color: #fff; border: none; padding: 8px 15px;
  border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: background 0.15s;
}
.btn-cookie-accept:hover { background: var(--accent-h); }
.btn-cookie-reject {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); padding: 8px 12px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  font-family: inherit; transition: color 0.15s;
}
.btn-cookie-reject:hover { color: var(--text); }

/* ─── Page Header ───────────────────────────── */
.page-header {
  padding: 120px 0 60px; background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -0.035em; margin-bottom: 12px;
}
.page-header p { font-size: 1.02rem; color: var(--text-muted); max-width: 460px; line-height: 1.75; }

/* ─── Packages ──────────────────────────────── */
.packages-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin-top: 48px;
}
.package-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 36px; position: relative;
  display: flex; flex-direction: column;
}
.package-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(59,130,246,0.06) 0%, var(--bg) 55%);
}
.package-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent); color: #fff; font-size: 0.7rem;
  font-weight: 700; padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.package-eyebrow { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
.package-price {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -0.045em; margin-bottom: 6px;
}
.package-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.package-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.package-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.package-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.package-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: var(--text-muted); }
.check-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* Redesign section */
.redesign-section { background: var(--bg-alt); }
.redesign-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 40px; margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.redesign-mockup {
  border: 1px solid var(--border); border-radius: var(--rs);
  overflow: hidden; box-shadow: var(--shadow);
}
.mockup-bar {
  background: var(--bg-card); padding: 8px 12px;
  display: flex; gap: 6px; align-items: center; border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; }
.mockup-body { padding: 20px; min-height: 130px; }
.mockup-line {
  height: 10px; border-radius: 4px; background: var(--bg-card);
  margin-bottom: 10px;
}
.redesign-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-faint); color: var(--accent);
  font-size: 0.75rem; font-weight: 700; padding: 4px 11px;
  border-radius: 999px; margin-bottom: 14px; letter-spacing: 0.02em;
}
.redesign-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.redesign-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }

/* ─── Contact ───────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 60px; margin-top: 48px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; background: var(--accent-faint);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--accent); flex-shrink: 0;
}
.contact-item-text h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 3px; }
.contact-item-text p, .contact-item-text a {
  font-size: 0.87rem; color: var(--text-muted); text-decoration: none; line-height: 1.5;
}
.contact-item-text a:hover { color: var(--accent); }
.contact-form {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--rs); padding: 10px 13px; font-size: 0.88rem;
  font-family: inherit; color: var(--text); outline: none; resize: vertical;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.11);
}
.form-group textarea { min-height: 110px; }
.form-success {
  display: none; text-align: center; padding: 48px 20px;
}
.form-success-icon {
  width: 56px; height: 56px; background: var(--accent-faint);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin: 0 auto 18px;
}
.form-success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 0.88rem; color: var(--text-muted); }

/* ─── Team ──────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.team-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px; text-align: center;
}
.team-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--accent-faint); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
  font-size: 1.1rem; font-weight: 800; color: var(--accent);
}
.team-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.team-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.value-item {
  padding: 26px; border: 1px solid var(--border);
  border-radius: var(--rs); background: var(--bg);
}
.value-icon { color: var(--accent); margin-bottom: 12px; }
.value-item h4 { font-size: 0.93rem; font-weight: 700; margin-bottom: 8px; }
.value-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Legal ─────────────────────────────────── */
.legal-content { max-width: 720px; margin-top: 48px; }
.legal-content h2 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 12px; }
.legal-content p, .legal-content li {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 10px;
}
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ─── Scroll animations ─────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ─── Responsive ────────────────────────────── */
@media (max-width: 900px) {
  .benefits-grid, .team-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .redesign-card { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .values-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-reject { flex: 1; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* ─── Comparison Slider ─────────────────────── */
.compare-wrap { margin-top: 48px; max-width: 1000px; margin-left: auto; margin-right: auto; }

.compare-slider {
  position: relative; overflow: hidden; border-radius: var(--r);
  cursor: ew-resize; user-select: none; -webkit-user-select: none;
  touch-action: none; aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.compare-slider .compare-base-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; display: block;
}

.compare-after {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 50%; overflow: hidden;
}

.compare-after img {
  position: absolute; top: 0; left: 0;
  height: 100%; object-fit: cover; pointer-events: none;
}

.compare-chip {
  position: absolute; top: 14px; z-index: 2;
  font-size: 0.69rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; background: rgba(0,0,0,0.58); color: #fff;
  padding: 4px 11px; border-radius: 999px; pointer-events: none;
}
.compare-chip-before { left: 14px; }
.compare-chip-after  { right: 14px; }

.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 3px; z-index: 3;
  background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

.compare-handle-btn {
  width: 42px; height: 42px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 18px rgba(0,0,0,0.18); color: #0f172a;
  flex-shrink: 0; gap: 1px;
}

.compare-note {
  margin-top: 10px; font-size: 0.78rem; color: var(--text-muted);
  text-align: center;
}

@media (max-width: 600px) {
  .compare-slider { aspect-ratio: 4/3; }
  .compare-wrap { margin-top: 32px; }
}

/* ─── Animations ────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

.package-card:nth-child(2).fade-up { transition-delay: 0.1s; }
