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

:root {
  --color-bg: #f5f1eb;
  --color-bg-alt: #ede8e0;
  --color-dark: #1e1a14;
  --color-dark-alt: #2c2519;
  --color-text: #3a3228;
  --color-text-muted: #7a6e62;
  --color-primary: #c8813a;
  --color-primary-dark: #a8662a;
  --color-primary-light: #e8a86a;
  --color-accent: #d4a76a;
  --color-accent-light: #f0d4a8;
  --color-white: #faf8f4;
  --color-border: #d8d0c4;
  --color-border-light: #e8e2d8;

  --shadow-sm: 0 1px 3px rgba(30,26,20,0.08), 0 1px 2px rgba(30,26,20,0.06);
  --shadow-md: 0 4px 12px rgba(30,26,20,0.10), 0 2px 6px rgba(30,26,20,0.07);
  --shadow-lg: 0 8px 24px rgba(30,26,20,0.12), 0 4px 10px rgba(30,26,20,0.08);
  --shadow-xl: 0 16px 40px rgba(30,26,20,0.14), 0 6px 16px rgba(30,26,20,0.09);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

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

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), scale var(--transition);
}

.page-wrapper main {
  flex: 1;
}

.page-wrapper.menu-open {
  transform: translateX(-280px);
  scale: 0.95;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ── BUTTONS ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--outline-light {
  color: var(--color-accent-light);
  border-color: var(--color-accent-light);
}

.btn--outline-light:hover {
  background: var(--color-accent-light);
  color: var(--color-dark);
}

.btn--cookie-outline {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  min-height: 36px;
}

.btn--cookie-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--cookie-accept {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  min-height: 36px;
}

.btn--cookie-accept:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

/* ── HEADER & NAV ─────────────────────────────────────────── */

.site-header {
  position: relative;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  padding: 0;
}

.site-header .container {
  padding-top: 0;
  padding-bottom: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__links {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--color-primary);
}

.nav__link--active::after {
  width: 100%;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ── MOBILE MENU ──────────────────────────────────────────── */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--color-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.mobile-menu__close:hover {
  color: var(--color-accent);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.mobile-menu__links li a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-menu__links li a:hover {
  color: var(--color-accent);
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.mobile-menu__footer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

/* ── COOKIE BANNER ────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--color-dark);
  border-bottom: 2px solid var(--color-primary);
  transform: translateY(-100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.75rem var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-banner__text {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--color-accent);
}

.cookie-banner__text a:hover {
  color: var(--color-accent-light);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ── COOKIE MODAL ─────────────────────────────────────────── */

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,26,20,0.6);
  backdrop-filter: blur(4px);
}

.cookie-modal__box {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 440px;
  width: calc(100% - 2rem);
  box-shadow: var(--shadow-xl);
}

.cookie-modal__box h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.cookie-modal__box p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.cookie-modal__item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.cookie-modal__item label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
}

.cookie-modal__item label span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.cookie-modal__item label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.cookie-modal__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

/* ── SECTIONS ─────────────────────────────────────────────── */

.section {
  padding: var(--space-xl) 0;
}

.section--dark {
  background: var(--color-dark) !important;
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,129,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__header--left {
  text-align: left;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section__label--light {
  color: var(--color-accent);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__title--light {
  color: var(--color-white);
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section__subtitle--light {
  color: rgba(255,255,255,0.7);
}

/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 72px);
  position: relative;
  overflow: hidden;
}

.hero__image-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}

.hero__img:hover {
  transform: scale(1.03);
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,26,20,0.55) 0%, rgba(30,26,20,0.2) 50%, rgba(200,129,58,0.15) 100%);
}

.hero__animated-accent {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 160px;
  height: 160px;
  opacity: 0.7;
}

.hero__accent-svg {
  width: 100%;
  height: 100%;
}

.hero__content-panel {
  background: var(--color-bg);
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
}

.hero__content-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.hero__content {
  max-width: 480px;
}

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: heroFadeUp 0.8s ease forwards;
}

.hero__desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  animation: heroFadeUp 0.8s 0.15s ease forwards;
  opacity: 0;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
  animation: heroFadeUp 0.8s 0.3s ease forwards;
  opacity: 0;
}

.hero__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s 0.45s ease forwards;
  opacity: 0;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.hero__tag i {
  color: var(--color-primary);
  font-size: 0.75rem;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── ACCENT ANIMATIONS ────────────────────────────────────── */

.accent-circle--1 {
  transform-origin: center;
  animation: rotateSlow 20s linear infinite;
}

.accent-circle--2 {
  transform-origin: center;
  animation: rotateSlow 14s linear infinite reverse;
}

.accent-circle--3 {
  transform-origin: center;
  animation: pulse 3s ease-in-out infinite;
}

.accent-line {
  animation: fadeInOut 4s ease-in-out infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.4; }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.4; }
}

/* ── SERVICES ─────────────────────────────────────────────── */

.section--services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

/* ── CARDS ────────────────────────────────────────────────── */

.card {
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.card--service {
  background: var(--color-white);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.card--service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.card--service:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-accent-light);
}

.card--service:hover::before {
  transform: scaleX(1);
}

.card--service.card--featured {
  background: var(--color-dark);
}

.card--service.card--featured .card__title {
  color: var(--color-white);
}

.card--service.card--featured .card__text {
  color: rgba(255,255,255,0.7);
}

.card--service.card--featured .card__icon-wrap {
  background: rgba(200,129,58,0.2);
  color: var(--color-accent);
}

.card--service.card--featured .card__link {
  color: var(--color-accent);
}

.card--service.card--featured .card__link:hover {
  color: var(--color-accent-light);
}

.card__icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  transition: all var(--transition);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition);
}

.card__link:hover {
  gap: 0.6rem;
}

.card--feature {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.card--feature:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card--feature h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.card--feature p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.card__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.card__icon {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: block;
}

/* ── HORIZONTAL SCROLL ────────────────────────────────────── */

.section--features-scroll {
  background: var(--color-bg-alt);
  overflow: hidden;
  padding-bottom: var(--space-md);
}

.h-scroll-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  padding: var(--space-md) var(--space-md) var(--space-lg);
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
  cursor: grab;
}

.h-scroll-wrapper:active {
  cursor: grabbing;
}

.h-scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}

.h-scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.h-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 2px;
}

.h-scroll-track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  padding: var(--space-xs) var(--space-xs);
}

.h-scroll-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0 var(--space-md) var(--space-md);
}

.h-scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.h-scroll-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

/* ── PROCESS ──────────────────────────────────────────────── */

.section--process {
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.process-step {
  position: relative;
  padding: var(--space-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.process-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,167,106,0.3);
}

.process-step__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step__content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.process-step__content p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.process-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-height: 400px;
}

.process-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── ABOUT ────────────────────────────────────────────────── */

.section--about {
  background: var(--color-bg);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-split__img {
  position: relative;
}

.about-split__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.about-split__text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── BENEFITS ─────────────────────────────────────────────── */

.section--benefits {
  background: var(--color-bg-alt);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.benefit-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.benefits-img-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.benefits-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--transition);
}

.benefits-img:hover {
  transform: scale(1.02);
}

/* ── GALLERY ──────────────────────────────────────────────── */

.section--gallery {
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  transition: all var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ── FAQ ──────────────────────────────────────────────────── */

.section--faq {
  position: relative;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(212,167,106,0.3);
}

.faq-item.is-open {
  border-color: rgba(212,167,106,0.5);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255,255,255,0.04);
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  transition: background var(--transition);
  min-height: 44px;
}

.faq-item__q:hover {
  background: rgba(255,255,255,0.07);
}

.faq-item__q i {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--color-accent);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-item__q i {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__a p {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.faq-item.is-open .faq-item__a {
  max-height: 300px;
}

/* ── CTA ──────────────────────────────────────────────────── */

.section--cta {
  background: var(--color-bg);
}

.cta-block {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.cta-block__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.cta-block__text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.cta-block__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
  padding-top: var(--space-sm);
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.cta-form__row--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-form__input {
  width: 100%;
  padding: 0.6875rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.cta-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200,129,58,0.12);
}

.cta-form__input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.cta-form__input--textarea {
  resize: vertical;
  min-height: 72px;
}

.cta-form__privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.cta-form__privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.cta-form__privacy a {
  color: var(--color-primary);
}

/* ── FOOTER ───────────────────────────────────────────────── */

.site-footer {
  background: var(--color-dark-alt);
  color: rgba(255,255,255,0.75);
  padding: var(--space-xl) 0 0;
  margin-top: auto;
}

.site-footer address p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.6);
}

.site-footer address p i {
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.site-footer address p a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.site-footer address p a:hover {
  color: var(--color-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer-col p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: block;
  padding: 0.1875rem 0;
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-col--brand img {
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-news {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-news__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-news__item:last-child {
  border-bottom: none;
}

.footer-news__item:hover .footer-news__title {
  color: var(--color-accent);
}

.footer-news__date {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-news__title {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  transition: color var(--transition);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom__links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom__links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom__links a:hover {
  color: var(--color-accent);
}

/* ── BACK TO TOP ──────────────────────────────────────────── */

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 500;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ── MOBILE BOTTOM NAV ────────────────────────────────────── */

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  z-index: 400;
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  color: rgba(255,255,255,0.45);
  font-size: 0.625rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 56px;
}

.mobile-bottom-nav__item i {
  font-size: 1.125rem;
}

.mobile-bottom-nav__item--active {
  color: var(--color-accent);
}

.mobile-bottom-nav__item:hover {
  color: var(--color-accent);
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */

.page-hero {
  background: var(--color-bg);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.page-hero--compact {
  padding: var(--space-lg) 0;
}

.page-hero__content {
  max-width: 720px;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero__desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ── REVEAL ANIMATION ─────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── STORY ────────────────────────────────────────────────── */

.section--story {
  background: var(--color-bg);
}

.story-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story-split__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.story-split__text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.story-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── VALUES ───────────────────────────────────────────────── */

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.value-card {
  padding: var(--space-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,167,106,0.25);
  transform: translateY(-3px);
}

.value-card i {
  font-size: 1.75rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: block;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── APPROACH ─────────────────────────────────────────────── */

.section--approach {
  background: var(--color-bg-alt);
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.approach-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
  align-items: start;
}

.approach-item:last-child {
  border-bottom: none;
}

.approach-item__num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.5;
  padding-top: 4px;
}

.approach-item__content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.approach-item__content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ── DIRECTION DETAIL ─────────────────────────────────────── */

.section--dir-detail {
  background: var(--color-bg);
}

.dir-block {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.dir-block:last-child {
  border-bottom: none;
}

.dir-block__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.dir-block__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.dir-block__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.dir-block__title {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--color-dark);
}

.dir-block__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.dir-block__text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.dir-block__text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.dir-block__text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dir-block__text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.dir-block__text ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.dir-block__aside {
  padding-top: var(--space-sm);
}

.dir-block__card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
}

.dir-block__card h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.dir-block__card ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.dir-block__card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.dir-block__card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}

/* ── START STEPS ──────────────────────────────────────────── */

.section--start-steps {
  background: var(--color-bg);
}

.start-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.start-step {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.start-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.start-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.start-step:hover::after {
  transform: scaleX(1);
}

.start-step__icon {
  width: 52px;
  height: 52px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.start-step__num {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.start-step h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.start-step p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.start-step p:last-child {
  margin-bottom: 0;
}

/* ── FORMATS ──────────────────────────────────────────────── */

.section--formats {
  position: relative;
}

.formats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.format-card {
  padding: var(--space-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.format-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,167,106,0.3);
  transform: translateY(-3px);
}

.format-card i {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: block;
}

.format-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.format-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── CONTACT ──────────────────────────────────────────────── */

.section--contact-main {
  background: var(--color-bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-info h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-info p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-info p a {
  color: var(--color-primary);
}

.contact-info p a:hover {
  color: var(--color-primary-dark);
}

.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contact-form__field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.contact-form__field input,
.contact-form__field textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200,129,58,0.12);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.contact-form__field textarea {
  resize: vertical;
}

.contact-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.contact-form__privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.contact-form__privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.contact-form__privacy a {
  color: var(--color-primary);
}

/* ── MAP ──────────────────────────────────────────────────── */

.section--map {
  background: var(--color-bg-alt);
  padding-top: 0;
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
}

/* ── THANKS PAGE ──────────────────────────────────────────── */

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0;
}

.thanks-center {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thanks-quote-card {
  background: var(--color-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  box-shadow: var(--shadow-xl);
}

.thanks-quote-card__mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--color-primary);
  opacity: 0.4;
  margin-bottom: var(--space-md);
}

.thanks-quote-card__text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  font-style: normal;
}

.thanks-quote-card__source {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.thanks-content .thanks-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.thanks-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.thanks-content p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* ── LEGAL ────────────────────────────────────────────────── */

.section--legal {
  background: var(--color-bg);
}

.legal-content {
  max-width: 760px;
}

.legal-content .legal-intro {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.legal-content .legal-intro p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-content .legal-intro p:last-child {
  margin-bottom: 0;
}

.legal-section {
  margin-bottom: var(--space-xl);
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border-light);
}

.legal-section p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section p a {
  color: var(--color-primary);
}

.legal-section p a:hover {
  color: var(--color-primary-dark);
}

.legal-section ul {
  margin: var(--space-sm) 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.legal-section ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.legal-content--terms .legal-intro-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.terms-block {
  margin-bottom: var(--space-xl);
}

.terms-block h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.terms-block h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.25rem;
  background: var(--color-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.terms-block p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.terms-block p:last-child {
  margin-bottom: 0;
}

.terms-block ul {
  margin: var(--space-sm) 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terms-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.terms-block ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.legal-content--cookies {
  max-width: 860px;
}

.cookies-intro-box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  margin-bottom: var(--space-xl);
}

.cookies-intro-box i {
  font-size: 2.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.cookies-intro-box h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.cookies-intro-box p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.cookies-table-section {
  margin-bottom: var(--space-xl);
}

.cookies-table-section h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border-light);
}

.cookies-table-section p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.cookies-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.cookies-table thead {
  background: var(--color-bg-alt);
}

.cookies-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--color-border-light);
}

.cookies-table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition);
}

.cookies-table tbody tr:last-child {
  border-bottom: none;
}

.cookies-table tbody tr:hover {
  background: var(--color-bg-alt);
}

.cookies-table tbody td {
  padding: 0.75rem 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cookies-table tbody td:first-child {
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
}

.cookies-manage-section {
  margin-bottom: var(--space-xl);
}

.cookies-manage-section h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border-light);
}

.cookies-manage-section h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: var(--space-md) 0 0.5rem;
}

.cookies-manage-section p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.cookies-manage-section ul {
  margin: var(--space-sm) 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookies-manage-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.cookies-manage-section ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── CTA DARK VARIANT ─────────────────────────────────────── */

.section--cta.section--dark .cta-block {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}

.section--cta.section--dark .cta-block .cta-block__text h2 {
  color: var(--color-white);
}

.section--cta.section--dark .cta-block .cta-block__text p {
  color: rgba(255,255,255,0.65);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-img-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-form__row {
    grid-template-columns: 1fr 1fr;
  }
  .cta-form__input--textarea {
    grid-column: span 2;
  }
  .contact-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .start-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-split__badge {
    bottom: -12px;
    right: -8px;
    font-size: 0.8125rem;
  }
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-img-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-split {
    grid-template-columns: 6fr 5fr;
  }
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }
  .nav__burger {
    display: none;
  }
  .hero {
    grid-template-columns: 3fr 2fr;
  }
  .hero__image-panel {
    min-height: auto;
  }
  .hero__animated-accent {
    width: 220px;
    height: 220px;
  }
  .hero__content-panel {
    padding: var(--space-2xl) var(--space-xl);
  }
  .hero__content-panel::before {
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: 4px;
    height: auto;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-split {
    grid-template-columns: 5fr 6fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-block {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
  .contact-layout {
    grid-template-columns: 2fr 3fr;
  }
  .dir-block__body {
    grid-template-columns: 3fr 2fr;
  }
  .mobile-bottom-nav {
    display: none;
  }
  .back-to-top {
    bottom: 30px;
  }
  main {
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .start-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

@media (min-width: 1100px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 899px) {
  .mobile-bottom-nav {
    display: flex;
  }
  main {
    padding-bottom: 70px;
  }
}

@media (max-width: 639px) {
  .container {
    padding: 0 var(--space-sm);
  }
  .hero__content-panel {
    padding: var(--space-lg) var(--space-md);
  }
  .cta-block {
    padding: var(--space-lg) var(--space-md);
  }
  .process-step {
    padding: var(--space-md);
  }
  .dir-block__header {
    flex-direction: column;
  }
  .approach-item {
    grid-template-columns: 60px 1fr;
    gap: var(--space-md);
  }
  .footer-grid {
    gap: var(--space-lg);
  }
  .thanks-quote-card {
    padding: var(--space-lg);
  }
  .cookies-intro-box {
    flex-direction: column;
  }
}

@media (min-width: 640px) {
  .gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 16/7;
  }
}