/* ═══════════════════════════════════════════════════════════
   WebMINSK Studio — Main Stylesheet
   Light, modern, minimalist design
═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --clr-bg:         #FAFAFA;
  --clr-surface:    #FFFFFF;
  --clr-surface-2:  #F4F5F7;
  --clr-border:     #E8EAED;
  --clr-accent:     #2563EB;      /* primary blue */
  --clr-accent-dk:  #1D4ED8;
  --clr-accent-lt:  #EFF6FF;
  --clr-text:       #111827;
  --clr-text-2:     #4B5563;
  --clr-text-3:     #9CA3AF;
  --clr-good:       #16A34A;
  --clr-bad:        #DC2626;
  --clr-neutral:    #6B7280;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Utility ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-accent-lt);
  padding: .3rem .75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--clr-text);
  margin-bottom: .75rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--clr-text-2);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--r-md);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-dk);
  border-color: var(--clr-accent-dk);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}

.btn-outline {
  background: transparent;
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}
.btn-outline:hover {
  background: var(--clr-accent-lt);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-text-2);
  border-color: var(--clr-border);
}
.btn-ghost:hover {
  background: var(--clr-surface-2);
  color: var(--clr-text);
}

.btn-full { width: 100%; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,250,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--clr-accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
}
.logo-accent { color: var(--clr-accent); }

.nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav a {
  padding: .45rem .75rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--clr-text-2);
  text-decoration: none;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav a:hover { color: var(--clr-text); background: var(--clr-surface-2); }
.nav-cta {
  background: var(--clr-accent) !important;
  color: #fff !important;
  padding: .45rem 1rem !important;
  margin-left: .5rem;
}
.nav-cta:hover { background: var(--clr-accent-dk) !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
}
.burger span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 68px 0 0;
  background: var(--clr-surface);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  gap: .5rem;
  transform: translateX(100%);
  transition: transform var(--t-base);
  border-top: 1px solid var(--clr-border);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__link {
  display: block;
  padding: .85rem 1rem;
  border-radius: var(--r-md);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--clr-text);
  text-decoration: none;
  transition: background var(--t-fast);
}
.mobile-nav__link:hover { background: var(--clr-surface-2); }
.mobile-nav__cta {
  background: var(--clr-accent);
  color: #fff !important;
  text-align: center;
  margin-top: .5rem;
}
.mobile-nav__cta:hover { background: var(--clr-accent-dk) !important; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--clr-text-2);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  padding: .3rem .75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--clr-good);
  border-radius: 50%;
}

.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--clr-text-2);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
}
.trust-label {
  font-size: .78rem;
  color: var(--clr-text-3);
  margin-top: .2rem;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--clr-border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 380px;
}

.hero-card {
  position: absolute;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.hero-card--main {
  top: 0; left: 0; right: 0;
  padding: 0;
  overflow: hidden;
}
.hc-header {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1rem;
  background: var(--clr-surface-2);
  border-bottom: 1px solid var(--clr-border);
}
.hc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hc-dot--red    { background: #FF5F57; }
.hc-dot--yellow { background: #FFBD2E; }
.hc-dot--green  { background: #28C840; }
.hc-title {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--clr-text-3);
  margin-left: .25rem;
}
.hc-body {
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  line-height: 1.8;
}
.hc-line { }
.hc-line--indent  { padding-left: 1.25rem; }
.hc-line--indent2 { padding-left: 2.5rem; }
.hc-kw   { color: #7C3AED; }
.hc-attr { color: #0891B2; }
.hc-str  { color: #16A34A; }
.hc-text { color: var(--clr-text-2); }
.hc-line--tag  { color: var(--clr-text-3); }
.hc-line--text { color: var(--clr-text-2); }

.hero-card--stat {
  bottom: 60px; right: -20px;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.1rem;
  border-radius: var(--r-md);
}
.stat-icon { font-size: 1.5rem; }
.stat-val {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-good);
  line-height: 1;
}
.stat-desc {
  font-size: .72rem;
  color: var(--clr-text-3);
  margin-top: .15rem;
}

.hero-card--speed {
  bottom: 0; left: 20px;
  padding: .85rem 1.25rem;
  border-radius: var(--r-md);
  text-align: center;
}
.speed-label {
  font-size: .7rem;
  color: var(--clr-text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.speed-score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-good);
  line-height: 1;
  margin-top: .2rem;
}

/* ── Niches ──────────────────────────────────────────────── */
.niches {
  padding: 1.5rem 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-surface);
}
.niches .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.niches-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--clr-text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.niches-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.niches-list span {
  font-size: .85rem;
  color: var(--clr-text-2);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  padding: .3rem .75rem;
  border-radius: 100px;
}

/* ── Advantages ──────────────────────────────────────────── */
.advantages {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.adv-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.adv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.adv-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
  display: block;
}
.adv-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--clr-text);
}
.adv-card p {
  font-size: .9rem;
  color: var(--clr-text-2);
  line-height: 1.6;
}

/* ── Services ────────────────────────────────────────────── */
.services {
  padding: var(--space-2xl) 0;
  background: var(--clr-surface-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card--featured {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 1px var(--clr-accent), var(--shadow-md);
}

.sc-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--clr-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  white-space: nowrap;
}
.sc-icon { font-size: 1.75rem; }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
}
.service-card > p {
  font-size: .88rem;
  color: var(--clr-text-2);
  line-height: 1.6;
}
.sc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
}
.sc-list li {
  font-size: .85rem;
  color: var(--clr-text-2);
  padding-left: 1.1rem;
  position: relative;
}
.sc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-good);
  font-weight: 700;
}
.sc-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-top: auto;
}

/* ── Packages ────────────────────────────────────────────── */
.packages {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: var(--space-xl);
}

.pkg-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.pkg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.pkg-card--featured {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}
.pkg-card--featured .pkg-name,
.pkg-card--featured .pkg-price,
.pkg-card--featured .pkg-economy { color: #fff; }
.pkg-card--featured .pkg-list li { color: rgba(255,255,255,.9); }

.pkg-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: #F59E0B;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pkg-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
}
.pkg-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1;
}
.pkg-price span {
  font-size: 1rem;
  font-weight: 600;
  opacity: .7;
}
.pkg-economy {
  font-size: .8rem;
  color: var(--clr-good);
  font-weight: 600;
}
.pkg-card--featured .pkg-economy { color: #A7F3D0; }

.pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.pkg-list li {
  font-size: .88rem;
  color: var(--clr-text-2);
}
.pkg-card--featured .pkg-list li { color: rgba(255,255,255,.9); }

.pkg-btn { margin-top: auto; }
.pkg-card--featured .pkg-btn {
  background: #fff;
  color: var(--clr-accent);
  border-color: #fff;
}
.pkg-card--featured .pkg-btn:hover {
  background: var(--clr-accent-lt);
}

/* Price table */
.price-table-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.price-table-title {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
}
.price-table { width: 100%; }
.pt-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  border-bottom: 1px solid var(--clr-border);
}
.pt-row:last-child { border-bottom: none; }
.pt-head {
  background: var(--clr-surface-2);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--clr-text-3);
}
.pt-cell {
  padding: .85rem 1.5rem;
  font-size: .9rem;
  color: var(--clr-text-2);
  border-right: 1px solid var(--clr-border);
}
.pt-cell:last-child { border-right: none; }
.pt-head .pt-cell { color: var(--clr-text-3); }
.pt-row:not(.pt-head):hover { background: var(--clr-accent-lt); }

.price-note {
  font-size: .8rem;
  color: var(--clr-text-3);
  padding: .75rem 1.5rem;
  border-top: 1px solid var(--clr-border);
}

/* ── Process ─────────────────────────────────────────────── */
.process {
  padding: var(--space-2xl) 0;
  background: var(--clr-surface-2);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--clr-border);
  z-index: 0;
}

.step {
  display: flex;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}
.step:last-child { padding-bottom: 0; }

.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--clr-surface);
  border: 2px solid var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: .03em;
}

.step-body {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  flex: 1;
}
.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--clr-text);
}
.step-body p {
  font-size: .9rem;
  color: var(--clr-text-2);
  line-height: 1.65;
}
.step-time {
  display: inline-block;
  margin-top: .75rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--clr-accent);
  background: var(--clr-accent-lt);
  padding: .2rem .6rem;
  border-radius: 100px;
}

/* ── Comparison ──────────────────────────────────────────── */
.comparison {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg);
}

.cmp-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
}
.cmp-table { width: 100%; min-width: 560px; }
.cmp-row {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--clr-border);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-head {
  background: var(--clr-surface-2);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.cmp-cell {
  padding: .9rem 1.25rem;
  font-size: .88rem;
  color: var(--clr-text-2);
  border-right: 1px solid var(--clr-border);
}
.cmp-cell:last-child { border-right: none; }
.cmp-cell--label { font-weight: 600; color: var(--clr-text); }
.cmp-cell--us {
  background: var(--clr-accent-lt);
  font-weight: 600;
}
.cmp-head .cmp-cell--us { color: var(--clr-accent); }
.cmp-good  { color: var(--clr-good); }
.cmp-bad   { color: var(--clr-bad); }
.cmp-neutral { color: var(--clr-neutral); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--clr-surface-2);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 780px;
}

.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--t-fast);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--clr-accent);
  flex-shrink: 0;
  transition: transform var(--t-base);
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { background: var(--clr-surface-2); }

.faq-a {
  padding: 0 1.25rem 1.1rem;
  font-size: .9rem;
  color: var(--clr-text-2);
  line-height: 1.7;
}
.faq-a p + p { margin-top: .5rem; }

/* ── Contact ─────────────────────────────────────────────── */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-title { margin-bottom: .75rem; }
.contact-info > p {
  font-size: .95rem;
  color: var(--clr-text-2);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.cd-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
}
.cd-icon { font-size: 1.1rem; flex-shrink: 0; }
.cd-item a {
  color: var(--clr-accent);
  text-decoration: none;
  font-weight: 500;
}
.cd-item a:hover { text-decoration: underline; }
.cd-item span { color: var(--clr-text-2); }

/* Form */
.contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--clr-text);
}
.req { color: var(--clr-bad); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  font-size: .9rem;
  font-family: var(--font-sans);
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  font-size: .78rem;
  color: var(--clr-text-3);
  text-align: center;
}
.form-note a { color: var(--clr-accent); }

.form-success {
  display: none;
  background: #DCFCE7;
  color: var(--clr-good);
  border: 1px solid #BBF7D0;
  border-radius: var(--r-md);
  padding: .85rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}
.form-success.visible { display: block; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
}

.footer-brand .logo { margin-bottom: .75rem; }
.footer-brand p {
  font-size: .88rem;
  color: var(--clr-text-3);
  line-height: 1.6;
  max-width: 260px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fn-col {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.fn-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--clr-text);
  margin-bottom: .25rem;
}
.fn-col a {
  font-size: .88rem;
  color: var(--clr-text-3);
  text-decoration: none;
  transition: color var(--t-fast);
}
.fn-col a:hover { color: var(--clr-accent); }

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 1.1rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: .8rem;
  color: var(--clr-text-3);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-h1 { font-size: 2.4rem; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 420px; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .cmp-row { grid-template-columns: 1.4fr 1.2fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .pt-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .pt-cell { padding: .75rem 1rem; font-size: .82rem; }
  .hero { padding: var(--space-lg) 0 var(--space-xl); }
  .hero-h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .pkg-grid { max-width: 100%; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .pt-row { grid-template-columns: 1.8fr 1fr; }
  .pt-cell:nth-child(3),
  .pt-cell:nth-child(4) { display: none; }
  .pt-head .pt-cell:nth-child(3),
  .pt-head .pt-cell:nth-child(4) { display: none; }
  .cmp-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .cmp-cell:last-child { display: none; }
  .cmp-head .cmp-cell:last-child { display: none; }
  .hero-trust { gap: 1rem; }
  .trust-num { font-size: 1.25rem; }
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeUp .6s ease both; }
.hero-badge   { animation: fadeUp .5s ease .1s both; }

/* Intersection observer fade-in */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Hero metrics cards (new) ─────────────────────────── */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.hm-card { background: #fff; border: 1px solid #e8eaf0; border-radius: 18px; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.hm-card--wide { display: flex; align-items: center; gap: 18px; padding: 22px 24px; }
.hm-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.hm-info { display: flex; flex-direction: column; gap: 4px; }
.hm-val { font-size: 1.5rem; font-weight: 800; color: #1a1d2e; line-height: 1; }
.hm-val--green { color: #16a34a; }
.hm-desc { font-size: 0.82rem; color: #6b7280; }
.hm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hm-card--half { padding: 22px 24px; }
.hm-big { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.hm-big--green { color: #16a34a; }
.hm-big--blue { color: #2563eb; }
.hm-label { font-size: 0.65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #9ca3af; margin-top: 5px; }
.hm-sub { font-size: 0.75rem; color: #9ca3af; margin-top: 3px; }
