/* ============================================================
   GERBIZIN — GLOBAL STYLESHEET
   Digital Brutalism Lite | 2026
   ============================================================ */


:root {
  --color-bg: #f5f3ef;
  --color-bg-dark: #1a1814;
  --color-bg-mid: #2c2822;
  --color-surface: #eeebe4;
  --color-border: #d6d0c4;
  --color-border-dark: #3a342c;
  --color-text: #1e1b16;
  --color-text-muted: #6b6358;
  --color-text-light: #f5f3ef;
  --color-text-light-muted: #b8b0a4;
  --color-accent: #c8622a;
  --color-accent-hover: #b05520;
  --color-accent-soft: rgba(200,98,42,0.12);
  --color-yellow: #d4a829;
  --color-yellow-soft: rgba(212,168,41,0.15);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'Courier New', monospace;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(30,27,22,0.08), 0 1px 2px rgba(30,27,22,0.04);
  --shadow-md: 0 4px 12px rgba(30,27,22,0.10), 0 2px 4px rgba(30,27,22,0.06);
  --shadow-lg: 0 12px 32px rgba(30,27,22,0.14), 0 4px 8px rgba(30,27,22,0.08);
  --shadow-accent: 0 6px 24px rgba(200,98,42,0.22), 0 2px 6px rgba(200,98,42,0.12);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.45s cubic-bezier(0.4,0,0.2,1);
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container: 1200px;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }


h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

p { color: var(--color-text-muted); line-height: 1.75; }


.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}

.section-label--light { color: var(--color-yellow); }

.section-heading { color: var(--color-text); margin-bottom: 1.2rem; }
.section-heading--light { color: var(--color-text-light); }


.global-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
  min-height: 48px;
}

.global-cta--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}
.global-cta--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,98,42,0.30);
}

.global-cta--ghost {
  background: transparent;
  color: var(--color-text-light);
  border-color: rgba(245,243,239,0.35);
}
.global-cta--ghost:hover {
  background: rgba(245,243,239,0.1);
  border-color: rgba(245,243,239,0.65);
}

.global-cta--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.global-cta--outline:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

/* ============================================================
   GLOBAL HEADER
   ============================================================ */
.global-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  background: transparent;
}

.global-header.is-light {
  background: rgba(245,243,239,0.97);
  box-shadow: 0 1px 0 var(--color-border), 0 2px 12px rgba(30,27,22,0.06);
}

.global-header.is-dark {
  background: rgba(26,24,20,0.97);
  box-shadow: 0 1px 0 var(--color-border-dark);
}

.global-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.global-header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.global-header__logo:hover { opacity: 0.8; }
.global-header__logo-img { width: 32px; height: 32px; }
.global-header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: inherit;
}

.global-header__nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.global-header__nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  color: inherit;
  transition: all var(--transition);
  position: relative;
}
.global-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.85rem; right: 0.85rem;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.global-header__nav-link:hover::after,
.global-header__nav-link.active::after { transform: scaleX(1); }
.global-header__nav-link:hover { color: var(--color-accent); }
.global-header__nav-link.active { color: var(--color-accent); font-weight: 600; }

.global-header__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.3rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  flex-shrink: 0;
  min-height: 44px;
}
.global-header__cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.global-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.global-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: all var(--transition);
}


.global-header--on-light { color: var(--color-text); }
.global-header--on-dark { color: var(--color-text-light); }

/* ============================================================
   MOBILE MENU — Diagonal Clip-Path Wipe
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
}

.mobile-menu.is-open { pointer-events: all; }

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0.6);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }

.mobile-menu__nav {
  position: absolute;
  top: 0; right: 0;
  width: min(380px, 92vw);
  height: 100%;
  background: var(--color-bg-dark);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.5s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 0.4rem;
}

.mobile-menu.is-open .mobile-menu__nav {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
  margin-bottom: 1rem;
}
.mobile-menu__close:hover { background: var(--color-border-dark); color: var(--color-accent); }

.mobile-menu__link {
  color: var(--color-text-light);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--color-border-dark);
  transition: color var(--transition), padding-left var(--transition);
  opacity: 0;
  transform: translateX(20px);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
  transition: color var(--transition), padding-left var(--transition),
              opacity 0.35s ease calc(var(--i, 0) * 0.06s + 0.3s),
              transform 0.35s ease calc(var(--i, 0) * 0.06s + 0.3s);
}

.mobile-menu__link:hover { color: var(--color-accent); padding-left: 0.75rem; }

.mobile-menu__link--cta {
  margin-top: 1.5rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  justify-content: center;
  border-bottom: none;
  font-weight: 600;
}
.mobile-menu__link--cta:hover {
  background: var(--color-accent-hover);
  padding-left: 0.5rem;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.home-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 45% 55%;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 3rem 5rem 4rem;
  position: relative;
  z-index: 2;
}

.home-hero__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 1.8rem;
}

.home-hero__label-dot {
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.home-hero__heading {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--color-text-light);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.home-hero__heading em {
  font-style: normal;
  color: var(--color-accent);
}

.home-hero__sub {
  font-size: 1.05rem;
  color: var(--color-text-light-muted);
  max-width: 380px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.home-hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-dark);
}

.home-hero__stat { display: flex; flex-direction: column; gap: 0.15rem; }

.home-hero__stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1;
}

.home-hero__stat-label {
  font-size: 0.72rem;
  color: var(--color-text-light-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border-dark);
  flex-shrink: 0;
}

.home-hero__visual {
  position: relative;
  overflow: hidden;
}

.home-hero__img-wrap {
  position: absolute;
  inset: 0;
}

.home-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.75) saturate(0.85);
  transition: filter var(--transition-slow);
}
.home-hero__img-wrap:hover .home-hero__img { filter: brightness(0.85) saturate(1); }

.home-hero__img-border {
  position: absolute;
  inset: 0;
  border-left: 2px solid var(--color-border-dark);
}

.home-hero__accent-card {
  position: absolute;
  bottom: 3rem;
  left: -1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  min-width: 220px;
}

.home-hero__accent-icon {
  width: 40px; height: 40px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.home-hero__accent-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.home-hero__accent-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}
.home-hero__accent-text span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.home-hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,98,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,98,42,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ============================================================
   HOME BENEFITS
   ============================================================ */
.home-benefits { padding: var(--section-pad) 2rem; background: var(--color-bg); }

.home-benefits__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.home-benefits__header { margin-bottom: 3.5rem; }

.home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.home-benefits__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.home-benefits__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.home-benefits__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.home-benefits__card:hover::before { transform: scaleX(1); }

.home-benefits__card-icon {
  width: 48px; height: 48px;
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.home-benefits__card h3 {
  color: var(--color-text);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.home-benefits__card p { font-size: 0.93rem; }

/* ============================================================
   HOME SERVICES
   ============================================================ */
.home-services {
  padding: var(--section-pad) 2rem;
  background: var(--color-bg-dark);
  position: relative;
}

.home-services__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.home-services__header { margin-bottom: 3.5rem; }

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.home-services__card {
  background: var(--color-bg-mid);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.home-services__card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,98,42,0.15);
}

.home-services__card-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.home-services__card-icon {
  width: 44px; height: 44px;
  background: rgba(200,98,42,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.home-services__card h3 {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.home-services__card p {
  color: var(--color-text-light-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.home-services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition), opacity var(--transition);
}
.home-services__card-link:hover { gap: 0.7rem; }

.home-services__card--accent {
  background: rgba(200,98,42,0.08);
  border-color: rgba(200,98,42,0.3);
}

/* ============================================================
   HOME ABOUT
   ============================================================ */
.home-about { padding: var(--section-pad) 2rem; background: var(--color-bg); }

.home-about__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.home-about__visual { position: relative; }

.home-about__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.home-about__visual-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-accent);
}

.home-about__content p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

/* ============================================================
   HOME COUNTERS
   ============================================================ */
.home-counters {
  padding: 5rem 2rem;
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
}

.home-counters__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.home-counters__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  border-right: 1px solid var(--color-border-dark);
}
.home-counters__item:last-child { border-right: none; }

.home-counters__num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.home-counters__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light-muted);
}

/* ============================================================
   HOME PROCESS
   ============================================================ */
.home-process { padding: var(--section-pad) 2rem; background: var(--color-bg); }

.home-process__inner { max-width: var(--container); margin: 0 auto; }

.home-process__header { margin-bottom: 4rem; }

.home-process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}

.home-process__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition);
}
.home-process__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.home-process__step-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.35;
  line-height: 1;
}

.home-process__step-content h3 {
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.home-process__step-content p { font-size: 0.93rem; }

/* ============================================================
   HOME GALLERY
   ============================================================ */
.home-gallery { padding: var(--section-pad) 2rem; background: var(--color-surface); }

.home-gallery__inner { max-width: var(--container); margin: 0 auto; }

.home-gallery__header { margin-bottom: 3rem; }

.home-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

.home-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
}

.home-gallery__item--large {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.home-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home-gallery__item:hover img { transform: scale(1.06); }

.home-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.home-gallery__item:hover .home-gallery__overlay { opacity: 1; }

/* ============================================================
   HOME FAQ
   ============================================================ */
.home-faq { padding: var(--section-pad) 2rem; background: var(--color-bg); }

.home-faq__inner { max-width: var(--container); margin: 0 auto; }

.home-faq__header { margin-bottom: 3.5rem; }

.home-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.home-faq__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.home-faq__card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.home-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
  min-height: 60px;
}
.home-faq__question:hover { color: var(--color-accent); }

.home-faq__question i {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition);
  font-size: 0.9rem;
}
.home-faq__question[aria-expanded="true"] i { transform: rotate(45deg); }

.home-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.home-faq__answer p {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.home-faq__more { text-align: center; }

/* ============================================================
   HOME CTA
   ============================================================ */
.home-cta {
  padding: var(--section-pad) 2rem;
  background: var(--color-bg-mid);
  position: relative;
  overflow: hidden;
}

.home-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.home-cta__grid-accent {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,98,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,98,42,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.home-cta__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.home-cta__sub {
  color: var(--color-text-light-muted);
  margin-bottom: 2.5rem;
}

/* ============================================================
   GLOBAL FOOTER
   ============================================================ */
.global-footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);
  padding: 4rem 2rem 0;
}

.global-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.global-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  transition: opacity var(--transition);
}
.global-footer__logo:hover { opacity: 0.8; }
.global-footer__logo-img { width: 28px; height: 28px; }

.global-footer__brand p {
  font-size: 0.88rem;
  color: var(--color-text-light-muted);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.global-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.global-footer__contact a,
.global-footer__contact span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  transition: color var(--transition);
}
.global-footer__contact a:hover { color: var(--color-accent); }
.global-footer__contact i { color: var(--color-accent); width: 14px; }

.global-footer__nav h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 1.2rem;
}

.global-footer__nav a {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text-light-muted);
  margin-bottom: 0.6rem;
  transition: color var(--transition), padding-left var(--transition);
}
.global-footer__nav a:hover { color: var(--color-accent); padding-left: 4px; }

.global-footer__bottom {
  border-top: 1px solid var(--color-border-dark);
  padding: 1.2rem 0;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.global-footer__bottom span {
  font-size: 0.8rem;
  color: var(--color-text-light-muted);
  font-family: var(--font-mono);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--color-bg-dark);
  padding: 8rem 2rem 5rem;
}

.about-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
}

.about-hero__heading {
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
}
.about-hero__heading em { font-style: normal; color: var(--color-accent); }

.about-hero__sub {
  color: var(--color-text-light-muted);
  font-size: 1.05rem;
  max-width: 440px;
}

.about-hero__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-dark);
  box-shadow: var(--shadow-lg);
}

.about-story { padding: var(--section-pad) 2rem; background: var(--color-bg); }

.about-story__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 5rem;
  align-items: start;
}

.about-story__text p { margin-bottom: 1.2rem; }

.about-story__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.about-story__quote {
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about-story__quote i { color: var(--color-accent); margin-bottom: 0.6rem; display: block; }
.about-story__quote p { font-size: 0.92rem; color: var(--color-text); font-style: italic; }

.about-values { padding: var(--section-pad) 2rem; background: var(--color-surface); }

.about-values__inner { max-width: var(--container); margin: 0 auto; }

.about-values__header { margin-bottom: 3rem; }

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.about-values__item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: all var(--transition);
}
.about-values__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.about-values__icon {
  width: 48px; height: 48px;
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.about-values__item h3 { margin-bottom: 0.5rem; }

.about-team { padding: var(--section-pad) 2rem; background: var(--color-bg-dark); }

.about-team__inner { max-width: var(--container); margin: 0 auto; }

.about-team__header { margin-bottom: 3.5rem; }

.about-team__sub {
  color: var(--color-text-light-muted);
  font-size: 1rem;
  max-width: 500px;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-team__card {
  background: var(--color-bg-mid);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}
.about-team__card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-team__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.about-team__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-team__card:hover .about-team__img-wrap img { transform: scale(1.05); }

.about-team__info { padding: 1.5rem; }

.about-team__info h3 {
  color: var(--color-text-light);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.about-team__info span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.about-team__info p { font-size: 0.88rem; color: var(--color-text-light-muted); }

.about-cta {
  padding: var(--section-pad) 2rem;
  background: var(--color-bg);
  text-align: center;
}

.about-cta__inner { max-width: 600px; margin: 0 auto; }

.about-cta__inner p { margin-bottom: 2rem; }

.about-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PROGRAMS PAGE
   ============================================================ */
.programs-hero {
  background: var(--color-bg-dark);
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.programs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,98,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,98,42,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.programs-hero__inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 2; }

.programs-hero__heading {
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
}
.programs-hero__heading em { font-style: normal; color: var(--color-accent); }

.programs-hero__sub {
  color: var(--color-text-light-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.programs-list { padding: var(--section-pad) 2rem; background: var(--color-bg); }

.programs-list__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.programs-detail__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.programs-detail__item--reverse { direction: rtl; }
.programs-detail__item--reverse > * { direction: ltr; }

.programs-detail__badge {
  position: absolute;
  top: -1.5rem;
  left: 0;
  font-family: var(--font-mono);
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.programs-detail__content { position: relative; z-index: 1; }

.programs-detail__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.programs-detail__icon {
  width: 52px; height: 52px;
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.programs-detail__content h2 { margin-bottom: 0.2rem; font-size: 1.8rem; }

.programs-detail__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.programs-detail__desc {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.programs-detail__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.programs-detail__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text);
}
.programs-detail__feature i { color: var(--color-accent); font-size: 0.8rem; }

.programs-detail__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.programs-detail__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.programs-detail__visual:hover img { transform: scale(1.04); }

.programs-cta {
  padding: var(--section-pad) 2rem;
  background: var(--color-bg-dark);
  text-align: center;
}

.programs-cta__inner { max-width: 600px; margin: 0 auto; }
.programs-cta__inner p { color: var(--color-text-light-muted); margin-bottom: 2rem; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-hero {
  background: var(--color-bg-dark);
  padding: 8rem 2rem 5rem;
  text-align: center;
}

.faq-hero__inner { max-width: var(--container); margin: 0 auto; }

.faq-hero__heading { color: var(--color-text-light); margin-bottom: 1rem; }

.faq-hero__sub { color: var(--color-text-light-muted); font-size: 1.05rem; }

.faq-content { padding: var(--section-pad) 2rem; background: var(--color-bg); }

.faq-content__inner { max-width: var(--container); margin: 0 auto; }

.faq-category { margin-bottom: 4rem; }

.faq-category__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-border);
  position: relative;
}
.faq-category__title::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: var(--color-accent);
}

.faq-category__items { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-cta {
  padding: var(--section-pad) 2rem;
  background: var(--color-bg-dark);
  text-align: center;
}

.faq-cta__inner { max-width: 600px; margin: 0 auto; }
.faq-cta__inner p { color: var(--color-text-light-muted); margin-bottom: 2rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: var(--color-bg-dark);
  padding: 8rem 2rem 5rem;
}

.contact-hero__inner { max-width: var(--container); margin: 0 auto; }

.contact-hero__heading {
  color: var(--color-text-light);
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.contact-hero__heading em { font-style: normal; color: var(--color-accent); }

.contact-form-section { padding: var(--section-pad) 2rem; background: var(--color-bg); }

.contact-form-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-form-section__info h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  color: var(--color-accent);
  font-size: 1rem;
  margin-top: 0.2rem;
  width: 20px;
  flex-shrink: 0;
}

.contact-info-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-info-item strong {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--color-accent); }


.contact-form-section__form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-section__steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.contact-form-section__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
}

.contact-form-section__step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}

.contact-form-section__step-item.active .contact-form-section__step-num,
.contact-form-section__step-item.done .contact-form-section__step-num {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.contact-form-section__step-label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-form-section__step-item.active .contact-form-section__step-label {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-form-section__step-line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
  margin-bottom: 1.2rem;
}

.contact-form-section__step-panel {
  display: none;
  animation: fadeInPanel 0.3s ease;
}
.contact-form-section__step-panel.active { display: block; }

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.contact-form-section__field {
  margin-bottom: 1.3rem;
}

.contact-form-section__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.contact-form-section__field label span { color: var(--color-accent); }

.contact-form-section__field input,
.contact-form-section__field select,
.contact-form-section__field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
  outline: none;
}

.contact-form-section__field input:focus,
.contact-form-section__field select:focus,
.contact-form-section__field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,98,42,0.12);
}

.contact-form-section__field textarea { resize: vertical; min-height: 120px; }

.contact-form-section__field--check label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  cursor: pointer;
}

.contact-form-section__field--check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--color-accent);
  min-height: unset;
}

.contact-form-section__field--check a { color: var(--color-accent); text-decoration: underline; }

.contact-form-section__nav {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}


.contact-news { padding: var(--section-pad) 2rem; background: var(--color-surface); }

.contact-news__inner { max-width: var(--container); margin: 0 auto; }

.contact-news__header { margin-bottom: 3rem; }

.contact-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.contact-news__item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  gap: 1.5rem;
  transition: all var(--transition);
}
.contact-news__item:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-news__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 48px;
}

.contact-news__day {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.contact-news__month {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-news__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.contact-news__content h3 {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.contact-news__content p { font-size: 0.88rem; }


.contact-map { padding: var(--section-pad) 2rem; background: var(--color-bg); }

.contact-map__inner { max-width: var(--container); margin: 0 auto; }

.contact-map__label { margin-bottom: 2rem; }
.contact-map__label p { color: var(--color-text-muted); }

.contact-map__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  background: var(--color-bg);
}

.thanks-content {
  text-align: center;
  max-width: 520px;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.thanks-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.thanks-sub {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-main { padding-top: 72px; }

.legal-toc-mobile {
  display: none;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 72px;
  z-index: 100;
}

.legal-toc-mobile__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
}

.legal-toc-mobile__toggle i { transition: transform var(--transition); }
.legal-toc-mobile__toggle.is-open i { transform: rotate(180deg); }

.legal-toc-mobile__list {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1rem;
  gap: 0.2rem;
  max-height: 60vh;
  overflow-y: auto;
}

.legal-toc-mobile__list.is-open { display: flex; }

.legal-toc-mobile__list a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}
.legal-toc-mobile__list a:hover { color: var(--color-accent); }

.legal-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 3rem 2rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(72px + 1rem);
}

.legal-sidebar__inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.legal-sidebar__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.legal-sidebar__nav { display: flex; flex-direction: column; gap: 0.1rem; }

.legal-sidebar__link {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border-left: 2px solid transparent;
}
.legal-sidebar__link:hover { color: var(--color-text); background: var(--color-bg); }
.legal-sidebar__link.active {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
  background: var(--color-accent-soft);
  font-weight: 600;
}

.legal-content__header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--color-border); }

.legal-content__header h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

.legal-content__meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

.legal-content__intro {
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.legal-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}

.legal-section h2 {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.8rem;
  padding-top: 0.5rem;
}

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

.legal-section ul {
  margin: 0.6rem 0 1rem 1rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-section ul li {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.legal-section a { color: var(--color-accent); text-decoration: underline; }

.legal-table-wrap { overflow-x: auto; margin: 1rem 0; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th {
  background: var(--color-surface);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
}

.legal-table td {
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.legal-table tr:nth-child(even) td { background: var(--color-surface); }

/* ============================================================
   COOKIE CONSENT — Bell / Notification pattern
   ============================================================ */
.cookie-bell {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}

.cookie-bell__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  border: 1.5px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  position: relative;
}
.cookie-bell__btn:hover { background: var(--color-accent); border-color: var(--color-accent); }

.cookie-bell__badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 14px; height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  animation: pulse 2s infinite;
}

.cookie-panel {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 340px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: bottom right;
}

.cookie-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.cookie-panel__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.cookie-panel__text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.cookie-panel__text a { color: var(--color-accent); text-decoration: underline; }

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-top: 1px solid var(--color-border);
}

.cookie-toggle-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.cookie-toggle-sublabel {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: block;
}

.cookie-toggle {
  position: relative;
  width: 40px; height: 22px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 11px;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--color-accent); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }

.cookie-panel__actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.cookie-btn {
  flex: 1;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  min-height: 44px;
}
.cookie-btn:hover { border-color: var(--color-text); }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .home-hero__visual { display: none; }
  .home-hero__content { padding: 8rem 2rem 5rem; }

  .home-about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .home-about__visual { order: -1; }

  .home-counters__inner { grid-template-columns: repeat(2, 1fr); }
  .home-counters__item { border-right: none; border-bottom: 1px solid var(--color-border-dark); }
  .home-counters__item:nth-child(2n) { border-bottom: 1px solid var(--color-border-dark); }
  .home-counters__item:nth-last-child(-n+2) { border-bottom: none; }

  .about-hero__inner { grid-template-columns: 1fr; }
  .about-story__inner { grid-template-columns: 1fr; }

  .programs-detail__item { grid-template-columns: 1fr; direction: ltr; }
  .programs-detail__item--reverse { direction: ltr; }
  .programs-detail__badge { display: none; }

  .contact-form-section__inner { grid-template-columns: 1fr; }

  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { display: none; }
  .legal-toc-mobile { display: block; }

  .global-footer__inner { grid-template-columns: 1fr 1fr; }
  .global-footer__brand { grid-column: 1 / -1; }

  .home-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .home-gallery__item--large { grid-column: 1; grid-row: 1; }
}

@media (max-width: 768px) {
  .global-header__nav { display: none; }
  .global-header__cta { display: none; }
  .global-header__burger { display: flex; }

  .home-hero__stats { flex-wrap: wrap; gap: 1rem; }
  .home-hero__stat-divider { display: none; }

  .home-faq__grid { grid-template-columns: 1fr; }

  .home-benefits__grid { grid-template-columns: 1fr; }
  .home-services__grid { grid-template-columns: 1fr; }
  .home-process__steps { grid-template-columns: 1fr; }
  .home-gallery__grid { grid-template-columns: 1fr; }
  .home-gallery__item--large { grid-row: auto; }

  .home-counters__inner { grid-template-columns: repeat(2, 1fr); }

  .about-team__grid { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }

  .contact-news__grid { grid-template-columns: 1fr; }

  .global-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .global-footer__bottom { flex-direction: column; text-align: center; }

  .programs-hero { text-align: left; }

  .cookie-panel { width: calc(100vw - 3rem); right: 0; }

  .contact-form-section__steps { gap: 0; }
  .contact-form-section__step-label { display: none; }
}

@media (max-width: 480px) {
  :root { --section-pad: 3rem; }

  .home-hero__actions { flex-direction: column; }
  .global-cta { width: 100%; justify-content: center; }
  .about-cta__actions { flex-direction: column; align-items: center; }

  .home-counters__inner { grid-template-columns: 1fr 1fr; }

  .contact-news__item { flex-direction: column; gap: 0.8rem; }

  .legal-layout { padding: 1.5rem 1rem; }
}


.mobile-menu__link:nth-child(2) { --i: 1; }
.mobile-menu__link:nth-child(3) { --i: 2; }
.mobile-menu__link:nth-child(4) { --i: 3; }
.mobile-menu__link:nth-child(5) { --i: 4; }
.mobile-menu__link:nth-child(6) { --i: 5; }
.mobile-menu__link:nth-child(7) { --i: 6; }