/* ================================================
   DESIGN SYSTEM — VARIABLES
================================================ */
:root {
  --bg: #0F1117;
  --bg-alt: #1A1D2E;
  --text: #F1F5F9;
  --text-2: #94A3B8;
  --text-3: #64748B;
  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --accent-light: rgba(59, 130, 246, 0.15);
  --accent-border: rgba(59, 130, 246, 0.3);
  --border: #252A3F;
  --border-dark: #323856;
  --green: #22C55E;
  --yellow: #F59E0B;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
  --shadow-xl: 0 20px 60px rgba(59,130,246,0.2), 0 8px 24px rgba(0,0,0,0.4);
  --t: 0.18s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; }
ul { list-style: none; }

/* ================================================
   LAYOUT
================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================
   TYPOGRAPHY
================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

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

/* ================================================
   BUTTONS
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all var(--t);
  letter-spacing: -0.01em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(59,130,246,0.35);
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(59,130,246,0.50);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--sm { padding: 9px 20px; font-size: 14px; }

.btn--full {
  width: 100%;
  padding: 15px 24px;
  font-size: 16px;
}

.btn__loader { display: inline-flex; align-items: center; gap: 8px; }

/* ================================================
   HEADER
================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.header.scrolled {
  background: rgba(15, 17, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--t);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  transition: width var(--t);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.nav__cta { margin-left: 8px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  margin-left: auto;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================
   MOBILE MENU
================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-alt);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 32px 32px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__link {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  padding: 12px 0;
  transition: color var(--t);
}
.mobile-menu__link:hover { color: var(--accent); }
.mobile-menu__cta { margin-top: 24px; }

/* ================================================
   HERO
================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.blob--1 {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(59,130,246,0.22) 0%, transparent 70%);
  top: -120px;
  right: -80px;
}
.blob--2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(124,58,237,0.16) 0%, transparent 70%);
  bottom: -60px;
  left: -80px;
}
.blob--3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  top: 35%;
  left: 32%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}

.hero__badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: dot-pulse 2.2s infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.hero__title {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 22px;
}
.hero__title-accent { color: var(--accent); }

.hero__subtitle {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--t), gap var(--t);
}
.hero__secondary-link:hover {
  color: var(--text);
  gap: 10px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat-number {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}
.hero__stat-number--accent { color: var(--accent); }
.hero__stat-plus {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 400;
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ================================================
   BROWSER MOCKUP (Hero Visual)
================================================ */
.hero__visual {
  position: relative;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.browser-mockup {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.browser-bar {
  background: #252A3F;
  border-bottom: 1px solid var(--border);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.browser-bar__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.browser-bar__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-dark);
}
.browser-bar__dots span:nth-child(1) { background: #FC8181; }
.browser-bar__dots span:nth-child(2) { background: #F6C90E; }
.browser-bar__dots span:nth-child(3) { background: #68D391; }

.browser-bar__url {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--text-2);
  justify-content: center;
  white-space: nowrap;
}

.browser-content {
  padding: 20px;
  background: linear-gradient(160deg, #0F1117 0%, #151929 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-section { background: var(--bg-alt); border-radius: var(--r-md); padding: 20px; border: 1px solid var(--border); }

.mockup-tag {
  width: 72px;
  height: 18px;
  background: var(--accent-light);
  border-radius: 99px;
  margin-bottom: 12px;
}
.mockup-line {
  height: 10px;
  border-radius: 99px;
  background: var(--border-dark);
  margin-bottom: 8px;
}
.mockup-line--h1 { height: 16px; width: 80%; background: #3D4263; }
.mockup-line--h1.mockup-line--short { width: 52%; }
.mockup-line--body { width: 95%; background: #2D3148; }
.mockup-line--xs { width: 60% !important; }
.mockup-cta {
  width: 96px;
  height: 28px;
  background: var(--accent);
  border-radius: 8px;
  margin-top: 14px;
}

.mockup-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mockup-card {
  background: var(--bg-alt);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  padding: 14px 12px;
}
.mockup-card--accent {
  background: var(--accent);
  border-color: var(--accent);
}
.mockup-card__icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--accent-light);
  margin-bottom: 10px;
}
.mockup-card__icon--white { background: rgba(255,255,255,0.2); }
.mockup-line--card-h { height: 10px; width: 70%; }
.mockup-line--card-body { height: 8px; width: 90%; }
.mockup-line--white { background: rgba(255,255,255,0.7); }
.mockup-line--white-dim { background: rgba(255,255,255,0.35); }

/* ================================================
   FLOATING BADGES
================================================ */
.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 9px 15px;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}
.float-badge--top {
  top: -14px;
  right: -14px;
  color: var(--accent);
  animation: float-a 4.5s ease-in-out infinite;
  animation-delay: -1.5s;
}
.float-badge--bottom {
  bottom: -18px;
  left: -18px;
  color: #059669;
  animation: float-a 4.5s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ================================================
   SERVICES
================================================ */
.services {
  padding: 120px 0;
  background: var(--bg-alt);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: transparent;
  transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-lg);
  transition-delay: 0s;
}
.service-card:hover::before {
  background: linear-gradient(90deg, var(--accent) 0%, #7C3AED 100%);
}

.service-card--featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.service-card--featured:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 20px 48px rgba(59,130,246,0.45);
  transition-delay: 0s;
}

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 4px 10px;
  border-radius: 99px;
}

.service-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  margin-bottom: 22px;
}
.service-card--featured .service-card__icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.service-card__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card--featured .service-card__title { color: #fff; }

.service-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 20px;
}
.service-card--featured .service-card__text { color: rgba(255,255,255,0.78); }

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 20px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.service-card__price-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
}
.service-card__price-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.service-card__tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 3px 11px;
  border-radius: 99px;
}
.service-card--featured .service-card__tags span {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
}
.tag--addon {
  background: rgba(245, 158, 11, 0.15) !important;
  border-color: rgba(245, 158, 11, 0.35) !important;
  color: #FCD34D !important;
}

/* ================================================
   PROCESS
================================================ */
.process {
  padding: 120px 0;
  background: var(--bg);
}

.process__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.process__steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 20px;
  padding-bottom: 44px;
  position: relative;
}
.step--last { padding-bottom: 0; }
.step:not(.step--last)::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 50px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(59,130,246,0.5) 0%, rgba(59,130,246,0.05) 100%);
}

.step__number {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(59,130,246,0.35);
}

.step__body { padding-top: 10px; }
.step__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 7px;
}
.step__text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ================================================
   TESTIMONIAL
================================================ */
.testimonial {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  position: sticky;
  top: 96px;
  overflow: hidden;
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--yellow);
  margin-bottom: 20px;
}

.testimonial__text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 28px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.testimonial__role {
  font-size: 12px;
  color: var(--text-2);
}

.testimonial__decoration {
  position: absolute;
  bottom: -20px;
  right: 24px;
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

/* ================================================
   CONTACT
================================================ */
.contact {
  padding: 120px 0;
  background: var(--bg-alt);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact__title { text-align: left !important; }
.contact__subtitle {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact__perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__perk {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: var(--text-2);
}
.contact__perk svg { color: #16A34A; flex-shrink: 0; }

/* ================================================
   FORM
================================================ */
.contact__form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form__label span { color: var(--accent); }

.form__input {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 15px;
  width: 100%;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.form__input::placeholder { color: var(--text-3); }
.form__input:hover:not(:focus) { border-color: var(--border-dark); }
.form__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3.5px rgba(37,99,235,0.1);
}
.form__input.is-invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 3.5px rgba(239,68,68,0.09);
}

.form__textarea { min-height: 110px; resize: vertical; line-height: 1.6; }

.form__error {
  font-size: 12px;
  color: #EF4444;
  min-height: 16px;
  font-weight: 500;
}

.form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 14px;
  text-align: center;
}
.form__privacy svg { flex-shrink: 0; color: var(--text-2); }

/* ================================================
   FORM SUCCESS STATE
================================================ */
.form-success {
  padding: 48px 24px;
  text-align: center;
}
.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
}
.form-success__text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ================================================
   FOOTER
================================================ */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 13px; color: var(--text-2); }
.footer__links { display: flex; gap: 14px; }
.footer__link {
  color: var(--text-3);
  transition: color var(--t);
  padding: 4px;
}
.footer__link:hover { color: var(--accent); }

.footer__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
  transition: color var(--t);
}
.footer__contact-link:hover { color: var(--accent); }

/* ================================================
   SCROLL REVEAL ANIMATION
================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   LOADING SPINNER
================================================ */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.9s linear infinite; }

/* ================================================
   RESPONSIVE — TABLET
================================================ */
@media (max-width: 1024px) {
  .hero__inner { gap: 48px; }
  .process__grid { gap: 48px; }
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ================================================
   RESPONSIVE — MOBILE
================================================ */
@media (max-width: 768px) {
  .nav, .nav__cta { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }

  .hero {
    padding: 110px 0 64px;
    min-height: auto;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero__visual { display: none; }
  .hero__actions { gap: 16px; }
  .hero__stats { gap: 20px; }

  .services { padding: 80px 0; }
  .process { padding: 80px 0; }
  .contact { padding: 80px 0; }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .testimonial { position: static; }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form__row { grid-template-columns: 1fr; gap: 0; }
  .contact__form-wrap { padding: 28px 20px; }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer__contacts {
    justify-content: center;
  }

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

@media (max-width: 480px) {
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .hero__stat-divider { display: none; }
  .hero__title { font-size: 32px; }
  .hero__subtitle { font-size: 15px; }
  .btn--primary { padding: 12px 22px; font-size: 14px; }
}

/* ── Cookie Consent Banner ─────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 720px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  padding: 16px 20px;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
  min-width: 200px;
}

.cookie-banner__link {
  color: var(--accent);
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--t), border-color var(--t), color var(--t);
  font-family: var(--font);
}

.cookie-banner__btn--decline {
  background: transparent;
  border-color: var(--border-dark);
  color: var(--text-2);
}

.cookie-banner__btn--decline:hover {
  border-color: var(--text-3);
  color: var(--text);
}

.cookie-banner__btn--accept {
  background: var(--accent);
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: var(--accent-hover);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
