


@layer base, layout, components, utilities;


:root {
  
  --primary:   #5C4FE8;
  --secondary: #E85C8A;
  --accent:    #F5A623;
  --dark-base: #0F0E1A;

  
  --primary-light:    color-mix(in oklch, var(--primary), white 45%);
  --primary-xlight:   color-mix(in oklch, var(--primary), white 80%);
  --primary-dark:     color-mix(in oklch, var(--primary), black 25%);
  --primary-glow:     color-mix(in oklch, var(--primary), transparent 50%);

  --secondary-light:  color-mix(in oklch, var(--secondary), white 50%);
  --secondary-xlight: color-mix(in oklch, var(--secondary), white 82%);
  --secondary-dark:   color-mix(in oklch, var(--secondary), black 20%);

  --accent-light:     color-mix(in oklch, var(--accent), white 55%);
  --accent-xlight:    color-mix(in oklch, var(--accent), white 85%);
  --accent-dark:      color-mix(in oklch, var(--accent), black 20%);

  
  --bg:         #F8F7FF;
  --bg-tinted:  color-mix(in oklch, var(--primary), white 93%);
  --bg-dark:    #13111F;
  --surface:    #FFFFFF;
  --surface-2:  color-mix(in oklch, var(--primary), white 96%);

  
  --text:       #1A1728;
  --text-muted: #5A5470;
  --text-light: #8B84A8;
  --text-dark:  #F0EEF8;
  --text-muted-dark: #A09BC0;

  
  --border:     color-mix(in oklch, var(--primary), white 82%);
  --border-strong: color-mix(in oklch, var(--primary), white 65%);

  
  --shadow-xs:  0 1px 2px color-mix(in oklch, var(--primary), transparent 88%);
  --shadow-sm:  0 2px 8px color-mix(in oklch, var(--primary), transparent 82%), 0 1px 2px color-mix(in oklch, var(--primary), transparent 90%);
  --shadow-md:  0 4px 20px color-mix(in oklch, var(--primary), transparent 78%), 0 2px 6px color-mix(in oklch, var(--primary), transparent 88%);
  --shadow-lg:  0 8px 40px color-mix(in oklch, var(--primary), transparent 72%), 0 4px 12px color-mix(in oklch, var(--primary), transparent 84%);
  --shadow-glow: 0 0 30px color-mix(in oklch, var(--primary), transparent 60%), 0 4px 20px color-mix(in oklch, var(--primary), transparent 75%);

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

  
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 999px;

  
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s ease;

  
  --nav-h: 68px;
}


body.dark-mode {
  --bg:         #13111F;
  --bg-tinted:  color-mix(in oklch, var(--primary), black 75%);
  --bg-dark:    #0A0914;
  --surface:    #1E1B2E;
  --surface-2:  #261F3A;
  --text:       #EDE9FF;
  --text-muted: #A09BC0;
  --text-light: #6E6888;
  --border:     color-mix(in oklch, var(--primary), black 55%);
  --border-strong: color-mix(in oklch, var(--primary), black 40%);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.35), 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.35);
}


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

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

  body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    transition: background var(--t-slow), color var(--t-slow);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  main { flex: 1; }

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

  a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--t-fast), opacity var(--t-fast);
  }

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

  ul { list-style: none; }

  address { font-style: normal; }

  h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    transition: color var(--t-slow);
  }

  p { color: var(--text-muted); transition: color var(--t-slow); }

  em { font-style: italic; color: var(--primary); }
}


@layer layout {
  .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
  }

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

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

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

  .section--wide .container {
    max-width: 1380px;
  }

  .section--angled-top {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    padding-top: calc(var(--sp-2xl) + 4rem);
    margin-top: -3rem;
  }
}


@layer components {


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-base), background var(--t-slow);
}

.nav--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--sp-lg);
  max-width: 1380px;
  margin: 0 auto;
}

.nav__logo img { display: block; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}

.nav__hamburger:hover { background: var(--bg-tinted); }

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), background var(--t-slow);
}

.nav__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__dark-btn {
  position: fixed;
  top: calc(var(--nav-h) + 12px);
  right: 20px;
  z-index: 800;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
}

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


.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(15, 14, 26, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--t-base);
}

.menu-overlay.is-visible {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 340px;
  height: 100%;
  z-index: 960;
  background: var(--surface);
  transform: translateX(-100%);
  transition: transform var(--t-slow) cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

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

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) var(--sp-md);
  border-bottom: 1px solid var(--border);
  min-height: var(--nav-h);
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--t-fast);
}

.mobile-menu__close:hover {
  background: var(--bg-tinted);
  color: var(--text);
}

.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--sp-md) 0;
}

.mobile-menu__link {
  display: block;
  padding: 14px var(--sp-md);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-left: 3px solid transparent;
  transition: all var(--t-base);
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
  transition: all var(--t-base) calc(var(--i) * 0.07s + 0.1s);
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
  color: var(--primary);
  border-left-color: var(--primary);
  background: var(--bg-tinted);
}

.mobile-menu__footer {
  padding: var(--sp-md);
  border-top: 1px solid var(--border);
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-base);
  white-space: nowrap;
  text-decoration: none;
  min-height: 48px;
  justify-content: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), color-mix(in oklch, var(--primary), var(--secondary) 35%));
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-sm), 0 0 0 0 var(--primary-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 20px var(--primary-glow);
  color: white;
  filter: brightness(1.08);
}

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

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

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--bg-tinted);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: var(--r-lg);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
  min-height: 40px;
}

.btn--full { width: 100%; }


.section--dark .btn--ghost {
  color: var(--text-dark);
  border-color: color-mix(in oklch, white, transparent 70%);
}

.section--dark .btn--ghost:hover {
  background: color-mix(in oklch, white, transparent 85%);
  border-color: color-mix(in oklch, white, transparent 55%);
}


.label--subtle {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-sm);
}

.label--light {
  color: var(--primary-light);
  background: color-mix(in oklch, var(--primary), transparent 75%);
}


.section__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: var(--sp-md);
  color: var(--text);
  transition: color var(--t-slow);
}

.section__heading--light {
  color: var(--text-dark);
}


.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, color-mix(in oklch, var(--primary), transparent 85%) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 30% 80%, color-mix(in oklch, var(--secondary), transparent 90%) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  padding: var(--sp-xl) var(--sp-xl) var(--sp-xl) clamp(var(--sp-md), 6vw, var(--sp-2xl));
  position: relative;
  z-index: 2;
}

.hero__label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  background: var(--secondary-xlight);
  padding: 4px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-md);
}

.hero__heading {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--sp-md);
  background: linear-gradient(135deg, var(--text) 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: var(--sp-lg);
}

.hero__actions {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}


.hero__mosaic {
  position: relative;
  height: 100%;
  min-height: 600px;
  padding: var(--sp-xl) var(--sp-lg);
}

.hero__img-wrap {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}

.hero__img-wrap:hover {
  transform: scale(1.03) rotate(0deg) !important;
  box-shadow: var(--shadow-glow);
  z-index: 10;
}

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

.hero__img-wrap--a {
  width: 52%;
  height: 42%;
  top: 8%;
  left: 5%;
  transform: rotate(-2.5deg);
  border-radius: var(--r-xl);
}

.hero__img-wrap--b {
  width: 38%;
  height: 32%;
  top: 18%;
  right: 4%;
  transform: rotate(3deg);
  z-index: 2;
  border-radius: var(--r-lg);
}

.hero__img-wrap--c {
  width: 44%;
  height: 38%;
  bottom: 12%;
  left: 12%;
  transform: rotate(1.5deg);
  z-index: 3;
  border-radius: var(--r-xl);
}

.hero__img-wrap--d {
  width: 34%;
  height: 28%;
  bottom: 8%;
  right: 6%;
  transform: rotate(-2deg);
  z-index: 2;
  border-radius: var(--r-lg);
}

.hero__mosaic-accent {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-xlight), var(--secondary-xlight));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(40px);
  opacity: 0.6;
}


.intro-strip {
  background: linear-gradient(135deg, var(--primary-xlight) 0%, var(--secondary-xlight) 100%);
}

.intro-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 60% 40%;
  gap: var(--sp-xl);
  align-items: center;
}

.intro-strip__text h2 { margin-bottom: var(--sp-md); }
.intro-strip__text p { margin-bottom: var(--sp-sm); }
.intro-strip__text p:last-child { margin-bottom: 0; }

.intro-strip__visual {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.intro-strip__card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

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

.intro-strip__card--offset {
  margin-left: var(--sp-lg);
}

.intro-strip__icon {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.intro-strip__card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}


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

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

.tabs {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.tabs__nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--surface-2);
}

.tabs__nav::-webkit-scrollbar { display: none; }

.tabs__btn {
  flex: 1;
  min-width: 120px;
  padding: 16px var(--sp-md);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
}

.tabs__btn:hover {
  color: var(--primary);
  background: var(--primary-xlight);
}

.tabs__btn--active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--surface);
}

.tabs__content { position: relative; }

.tabs__panel {
  display: none;
  animation: fadeSlideIn 0.3s ease;
}

.tabs__panel--active { display: block; }

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

.tabs__panel-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  min-height: 360px;
}

.tabs__panel-text {
  padding: var(--sp-xl);
}

.tabs__panel-text h3 {
  font-size: 1.4rem;
  margin-bottom: var(--sp-md);
}

.tabs__panel-text p {
  margin-bottom: var(--sp-sm);
  font-size: 0.95rem;
}

.tabs__panel-text p:last-of-type { margin-bottom: var(--sp-md); }

.tabs__panel-img {
  overflow: hidden;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}

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


.carousel-section {
  background: var(--bg-dark);
}

.carousel-section__header {
  margin-bottom: var(--sp-xl);
}

.principle-card {
  background: color-mix(in oklch, var(--primary), transparent 80%);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 70%);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  height: 100%;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.principle-card:hover {
  background: color-mix(in oklch, var(--primary), transparent 70%);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.principle-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px var(--primary-glow);
  flex-shrink: 0;
}

.principle-card__title {
  font-size: 1.05rem;
  color: var(--text-dark);
}

.principle-card__text {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}


.splide__pagination__page.is-active { background: var(--primary); }
.splide__arrow { background: var(--surface); }
.splide__arrow svg { fill: var(--primary); }


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

.cta-split__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-md);
  display: grid;
  grid-template-columns: 60% 40%;
  gap: var(--sp-xl);
  align-items: center;
}

.cta-split__text .section__heading { margin-bottom: var(--sp-md); }
.cta-split__text p { max-width: 520px; }

.cta-split__action {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  align-items: flex-start;
}

.cta-split__note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}


.changes-preview {
  background: var(--bg-tinted);
}

.changes-preview__grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: var(--sp-xl);
  align-items: start;
}

.changes-preview__intro {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.changes-preview__intro .section__heading { margin-bottom: var(--sp-md); }
.changes-preview__intro p { margin-bottom: var(--sp-lg); }

.changes-preview__items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.change-item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--t-base);
}

.change-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.change-item__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-xlight);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
  -webkit-text-stroke: 1px var(--primary-light);
}

.change-item__body h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.change-item__body p {
  font-size: 0.9rem;
  margin: 0;
}


.contact-home {
  background: var(--bg);
}

.contact-home__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-md);
  display: grid;
  grid-template-columns: 40% 60%;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-home__text .section__heading { margin-bottom: var(--sp-md); }
.contact-home__text p { margin-bottom: var(--sp-lg); }

.contact-home__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-detail i {
  color: var(--primary);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.contact-detail a { color: var(--text-muted); }
.contact-detail a:hover { color: var(--primary); }


.form {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form__group {
  margin-bottom: var(--sp-md);
}

.form__group--check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form__label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  transition: color var(--t-slow);
}

.form__input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--t-base);
  outline: none;
  min-height: 48px;
}

.form__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-xlight);
  background: var(--surface);
}

.form__input::placeholder { color: var(--text-light); }

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

.form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form__check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form__link { color: var(--primary); }
.form__link:hover { text-decoration: underline; }

.form__error {
  color: #C0392B;
  font-size: 0.85rem;
  margin-bottom: var(--sp-sm);
  min-height: 20px;
}


.page-hero {
  padding-top: calc(var(--nav-h) + var(--sp-xl));
  padding-bottom: var(--sp-xl);
  padding-left: clamp(var(--sp-md), 6vw, var(--sp-2xl));
  padding-right: var(--sp-md);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-hero__content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.page-hero__heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: var(--sp-md);
  background: linear-gradient(135deg, var(--text) 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.page-hero__accent {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--primary), transparent 80%) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__accent--alt {
  background: radial-gradient(circle, color-mix(in oklch, var(--secondary), transparent 78%) 0%, transparent 70%);
}


.story-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 65% 35%;
  gap: var(--sp-xl);
  align-items: start;
}

.story-layout__main h2 { margin-bottom: var(--sp-md); }
.story-layout__main p { margin-bottom: var(--sp-md); }
.story-layout__main p:last-child { margin-bottom: 0; }

.story-quote {
  background: linear-gradient(135deg, var(--primary-xlight), var(--secondary-xlight));
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.story-quote blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

.story-approach__grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: var(--sp-xl);
  align-items: center;
}

.story-approach__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.story-approach__text .section__heading { margin-bottom: var(--sp-md); }
.story-approach__text p { margin-bottom: var(--sp-md); }
.story-approach__text p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

.value-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.value-card__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-xlight);
  -webkit-text-stroke: 1.5px var(--primary-light);
  margin-bottom: var(--sp-sm);
  line-height: 1;
}

.value-card__title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.value-card p { font-size: 0.9rem; margin: 0; }


.modules-overview__intro {
  max-width: 760px;
  margin: 0 auto var(--sp-xl);
  text-align: center;
}

.modules-overview__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.module-block {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: box-shadow var(--t-base);
}

.module-block:hover { box-shadow: var(--shadow-lg); }

.module-block--alt {
  border-color: color-mix(in oklch, var(--secondary), transparent 70%);
}

.module-block__header {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-lg);
  background: linear-gradient(90deg, var(--primary-xlight), transparent);
  border-bottom: 1px solid var(--border);
}

.module-block--alt .module-block__header {
  background: linear-gradient(90deg, var(--secondary-xlight), transparent);
}

.module-block__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.module-block--alt .module-block__num { color: var(--secondary); }

.module-block__tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 2px 10px;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.module-block__body {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 0;
}

.module-block__text {
  padding: var(--sp-xl);
}

.module-block__title {
  font-size: 1.5rem;
  margin-bottom: var(--sp-md);
}

.module-block__text p {
  margin-bottom: var(--sp-md);
  font-size: 0.95rem;
}

.module-block__sub {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-sm);
  margin-top: var(--sp-md);
}

.module-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.module-block__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 7px;
}

.module-block--alt .module-block__list li::before {
  background: var(--secondary);
}

.module-block__aside {
  padding: var(--sp-xl) var(--sp-lg) var(--sp-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  justify-content: flex-start;
}

.module-block__card {
  background: var(--bg-tinted);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.module-block__card--accent {
  background: linear-gradient(135deg, var(--primary-xlight), var(--secondary-xlight));
  border-color: var(--primary-light);
}

.module-block__card-icon {
  font-size: 1.4rem;
  color: var(--primary);
}

.module-block__card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}


.changes-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--sp-xl);
  align-items: center;
}

.changes-intro__text h2 { margin-bottom: var(--sp-md); }
.changes-intro__text p { margin-bottom: var(--sp-md); }
.changes-intro__text p:last-child { margin-bottom: 0; }

.changes-intro__visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.changes-timeline__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: var(--sp-xl);
  line-height: 1.7;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--sp-md);
}

.timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline__dot {
  width: 16px;
  height: 16px;
  min-height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 12px var(--primary-glow);
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline__line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--primary-light), var(--border));
  margin: 4px 0;
  min-height: 40px;
}

.timeline__content {
  padding-bottom: var(--sp-xl);
}

.timeline__label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline__title {
  font-size: 1.15rem;
  margin-bottom: var(--sp-sm);
}

.timeline__content p { font-size: 0.95rem; margin: 0; }

.changes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

.change-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
}

.change-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.change-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--primary-xlight), var(--secondary-xlight));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: var(--sp-md);
}

.change-card__title {
  font-size: 1rem;
  margin-bottom: 8px;
}

.change-card p { font-size: 0.875rem; margin: 0; }


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

.contact-main__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 40% 60%;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-main__info h2 { margin-bottom: var(--sp-md); }
.contact-main__info > p { margin-bottom: var(--sp-lg); }

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.contact-info-item {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--primary-xlight), var(--secondary-xlight));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
}

.contact-info-item__label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-item__value {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.5;
}

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

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

.map-wrap iframe { display: block; }

.service-area {
  background: var(--bg);
}

.service-area__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 50% 50%;
  gap: var(--sp-xl);
  align-items: start;
}

.service-area__text .section__heading { margin-bottom: var(--sp-md); }
.service-area__text p { margin-bottom: var(--sp-md); }

.service-area__cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.service-area__card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  transition: all var(--t-base);
}

.service-area__card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.service-area__card i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 2px;
  width: 24px;
  flex-shrink: 0;
}

.service-area__card h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.service-area__card p {
  font-size: 0.875rem;
  margin: 0;
}


.thanks-page {
  background: linear-gradient(135deg, var(--primary-xlight) 0%, var(--secondary-xlight) 100%);
}

.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--sp-xl)) var(--sp-md) var(--sp-2xl);
  min-height: 70vh;
}

.thanks-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

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

.thanks-card__icon i {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-card__heading {
  font-size: 1.8rem;
  margin-bottom: var(--sp-md);
}

.thanks-card__text {
  color: var(--text-muted);
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
}

.thanks-card__actions {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
}


.legal-hero {
  padding-top: calc(var(--nav-h) + var(--sp-xl));
  padding-bottom: var(--sp-lg);
  background: linear-gradient(135deg, var(--primary-xlight) 0%, var(--bg) 100%);
}

.legal-hero--terms {
  background: linear-gradient(135deg, var(--secondary-xlight) 0%, var(--bg) 100%);
}

.legal-hero--cookies {
  background: linear-gradient(135deg, var(--accent-xlight) 0%, var(--bg) 100%);
}

.legal-hero__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: var(--sp-sm) 0 var(--sp-xs);
}

.legal-hero__date {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}


.legal-body {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-md);
}

.legal-timeline {
  position: relative;
}

.legal-timeline__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.legal-timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.legal-timeline__dot {
  width: 14px;
  height: 14px;
  min-height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
  flex-shrink: 0;
}

.legal-timeline__line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 6px 0 0;
  min-height: 30px;
}

.legal-timeline__content h2 {
  font-size: 1.2rem;
  margin-bottom: var(--sp-sm);
}

.legal-timeline__content p,
.legal-timeline__content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}

.legal-timeline__content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: var(--sp-sm);
}

.legal-timeline__content li { margin-bottom: 6px; }


.legal-body--terms {
  max-width: 900px;
}

.terms-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--border);
}

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

.terms-block__letter {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-xlight);
  -webkit-text-stroke: 1.5px var(--primary-light);
  line-height: 1;
  padding-top: 4px;
  text-align: center;
}

.terms-block__content h2 {
  font-size: 1.2rem;
  margin-bottom: var(--sp-sm);
}

.terms-block__content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}

.terms-block__content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: var(--sp-sm);
}

.terms-block__content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}


.legal-body--cookies { max-width: 900px; }

.cookie-section {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--border);
}

.cookie-section:last-child { border-bottom: none; }

.cookie-section h2 {
  font-size: 1.3rem;
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-section p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}

.cookie-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: var(--sp-sm);
}

.cookie-section li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cookie-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  margin-top: var(--sp-md);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookie-table th {
  background: var(--bg-tinted);
  padding: 12px 16px;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}

.cookie-table tr:last-child td { border-bottom: none; }

.cookie-table code {
  background: var(--bg-tinted);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--primary);
  font-family: monospace;
}


.footer {
  background: var(--dark-base);
  color: var(--text-dark);
  margin-top: auto;
}

.footer__cta {
  background: linear-gradient(135deg, var(--primary), color-mix(in oklch, var(--primary), var(--secondary) 50%));
  padding: var(--sp-2xl) var(--sp-md);
}

.footer__cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.footer__cta-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: var(--sp-sm);
}

.footer__cta-sub {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-lg);
  font-size: 1.05rem;
}

.footer__cta .btn--primary {
  background: white;
  color: var(--primary);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.footer__cta .btn--primary:hover {
  background: var(--primary-xlight);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.footer__body {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-xl);
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-md);
}

.footer__logo { opacity: 0.9; }

.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  margin-top: var(--sp-sm);
}

.footer__col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-bottom: var(--sp-md);
}

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  color: color-mix(in oklch, white, transparent 35%);
  font-size: 0.9rem;
  transition: color var(--t-fast);
}

.footer__links a:hover { color: white; }

.footer__address p {
  font-size: 0.875rem;
  color: color-mix(in oklch, white, transparent 40%);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer__address a {
  color: color-mix(in oklch, white, transparent 35%);
  transition: color var(--t-fast);
}

.footer__address a:hover { color: white; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-md) var(--sp-md);
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid color-mix(in oklch, white, transparent 85%);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: color-mix(in oklch, white, transparent 55%);
  margin: 0;
}


.dark-toggle.btn--outline {
  border-color: var(--border);
  color: var(--text-muted);
  width: 100%;
  justify-content: center;
  gap: 8px;
}


@layer utilities {
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
}


@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: var(--sp-2xl);
  }

  .hero__mosaic {
    min-height: 400px;
    order: -1;
  }

  .hero__content {
    padding: var(--sp-xl) var(--sp-md) var(--sp-lg);
  }

  .intro-strip__inner { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .intro-strip__card--offset { margin-left: 0; }
  .intro-strip__visual { flex-direction: row; }

  .tabs__panel-inner { grid-template-columns: 1fr; }
  .tabs__panel-img { display: none; }

  .cta-split__inner { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .cta-split__action { flex-direction: row; align-items: center; }

  .changes-preview__grid { grid-template-columns: 1fr; }
  .changes-preview__intro { position: static; }

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

  .story-layout { grid-template-columns: 1fr; }
  .story-approach__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .module-block__body { grid-template-columns: 1fr; }
  .module-block__aside { padding: 0 var(--sp-lg) var(--sp-lg); flex-direction: row; flex-wrap: wrap; }
  .module-block__card { flex: 1; min-width: 200px; }

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

  .contact-main__grid { grid-template-columns: 1fr; }
  .service-area__inner { grid-template-columns: 1fr; }

  .footer__body { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
}


@media (max-width: 768px) {
  :root {
    --sp-xl: 3rem;
    --sp-2xl: 4rem;
    --sp-3xl: 5rem;
  }

  .hero__mosaic { min-height: 300px; }

  .hero__img-wrap--a { width: 55%; height: 45%; }
  .hero__img-wrap--b { width: 42%; height: 35%; }
  .hero__img-wrap--c { width: 48%; height: 40%; }
  .hero__img-wrap--d { width: 38%; height: 30%; }

  .tabs__nav { flex-wrap: nowrap; }
  .tabs__btn { min-width: 100px; font-size: 0.8rem; padding: 12px; }

  .changes-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }

  .footer__body { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }

  .legal-timeline__item { grid-template-columns: 30px 1fr; }
  .terms-block { grid-template-columns: 40px 1fr; }
  .terms-block__letter { font-size: 1.8rem; }

  .cta-split__action { flex-direction: column; }

  .section--angled-top {
    clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 100%);
    padding-top: calc(var(--sp-xl) + 2rem);
  }

  .nav__inner { padding: 0 var(--sp-md); }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .thanks-card { padding: var(--sp-lg); }
  .thanks-card__actions { flex-direction: column; }

  .module-block__aside { flex-direction: column; }
  .module-block__card { min-width: unset; }

  .intro-strip__visual { flex-direction: column; }
}
}