/* ============================================================
   ARLEN VIX HUB — MAIN STYLESHEET
   Digital Brutalism Lite · Scandinavian Warmth
   ============================================================ */


:root {
  
  --color-bg:          #F5F3EF;
  --color-bg-alt:      #EDEAE3;
  --color-bg-dark:     #1C1C1A;
  --color-bg-mid:      #2A2A27;
  --color-concrete:    #D9D5CC;
  --color-yellow:      #E8D84A;
  --color-yellow-dark: #C9BA2A;
  --color-accent:      #2C5F4A;
  --color-accent-lt:   #3A7A60;
  --color-text:        #1C1C1A;
  --color-text-mid:    #4A4A46;
  --color-text-light:  #7A7A74;
  --color-border:      #C8C4BB;
  --color-white:       #FAFAF8;

  
  --font-heading: 'Bitter', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'Courier New', Courier, monospace;

  
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  clamp(2rem, 4vw, 2.75rem);
  --text-5xl:  clamp(2.5rem, 5.5vw, 3.75rem);
  --text-hero: clamp(3rem, 8vw, 6rem);

  
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 999px;

  
  --shadow-sm:  0 1px 3px rgba(28,28,26,0.08), 0 1px 2px rgba(28,28,26,0.04);
  --shadow-md:  0 4px 12px rgba(28,28,26,0.10), 0 2px 4px rgba(28,28,26,0.06);
  --shadow-lg:  0 8px 24px rgba(28,28,26,0.12), 0 4px 8px rgba(28,28,26,0.06);
  --shadow-xl:  0 16px 48px rgba(28,28,26,0.14), 0 6px 16px rgba(28,28,26,0.08);
  --shadow-accent: 0 4px 20px rgba(44,95,74,0.20), 0 2px 6px rgba(44,95,74,0.10);

  
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;
  --t-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  
  --max-w: 1200px;
  --header-h: 72px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  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;
  transition: color var(--t-base), opacity var(--t-base);
}

ul, ol { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}


.global-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
}

.global-cta--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}
.global-cta--primary:hover {
  background: var(--color-accent-lt);
  box-shadow: 0 6px 24px rgba(44,95,74,0.30), 0 3px 8px rgba(44,95,74,0.15);
  transform: translateY(-1px);
  color: var(--color-white);
}

.global-cta--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.global-cta--ghost:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
}

.global-cta--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.global-cta--outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}


.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.global-header--scrolled {
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
}

.global-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.global-header__logo img {
  transition: opacity var(--t-base);
}
.global-header__logo:hover img { opacity: 0.8; }

.global-header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.global-header__pill {
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--t-base);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.global-header__pill:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}
.global-header__pill--active {
  background: var(--color-bg-alt);
  color: var(--color-accent);
  font-weight: 600;
}
.global-header__pill--cta {
  background: var(--color-accent);
  color: var(--color-white) !important;
  box-shadow: var(--shadow-accent);
}
.global-header__pill--cta:hover {
  background: var(--color-accent-lt);
  color: var(--color-white) !important;
  transform: translateY(-1px);
}

.global-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  transition: background var(--t-base);
}
.global-header__burger:hover { background: var(--color-bg-alt); }
.global-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--t-base);
}


.global-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,28,26,0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
  backdrop-filter: blur(2px);
}
.global-mobile-overlay--visible {
  opacity: 1;
  pointer-events: all;
}

.global-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: var(--color-bg-dark);
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  padding: var(--sp-8) var(--sp-8) var(--sp-12);
  overflow-y: auto;
}
.global-mobile-panel--open {
  transform: translateX(0);
}

.global-mobile-panel__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--text-xl);
  border-radius: var(--r-md);
  transition: background var(--t-base);
  margin-bottom: var(--sp-8);
}
.global-mobile-panel__close:hover { background: rgba(255,255,255,0.1); }

.global-mobile-panel__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

.global-mobile-panel__link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--t-base);
}
.global-mobile-panel__link:hover,
.global-mobile-panel__link--active {
  color: var(--color-yellow);
}

.global-mobile-panel__footer {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.global-mobile-panel__footer p {
  color: rgba(255,255,255,0.4);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-1);
}


.home-hero {
  min-height: 100vh;
  background: var(--color-bg-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.home-hero__grid-lines {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
}
.home-hero__grid-lines span {
  border-right: 1px solid rgba(255,255,255,0.04);
}

.home-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-20) var(--sp-6);
  position: relative;
  z-index: 2;
  width: 100%;
}

.home-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-8);
}

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

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

.home-hero__heading {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FAFAF8 0%, #E8D84A 40%, #FAFAF8 70%, #3A7A60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-12);
  max-width: 700px;
}

.home-hero__heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: charReveal 0.6s forwards;
}

@keyframes charReveal {
  to { opacity: 1; transform: translateY(0); }
}

.home-hero__sub {
  max-width: 520px;
}

.home-hero__sub p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

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

.home-hero__scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


.home-intro {
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--color-border);
}

.home-intro__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.home-intro__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  padding-top: 0.3em;
}

.home-intro__text p {
  font-size: var(--text-xl);
  line-height: 1.7;
  color: var(--color-text-mid);
  max-width: 700px;
}
.home-intro__text em {
  font-style: italic;
  color: var(--color-accent);
}


.home-benefits {
  padding: var(--sp-24) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.home-benefits__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.home-benefits__header {
  margin-bottom: var(--sp-16);
}

.home-benefits__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-4);
}

.home-benefits__heading {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
  max-width: 600px;
  color: var(--color-text);
}

.home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}

.home-benefits__item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}
.home-benefits__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.home-benefits__icon {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: var(--shadow-accent);
}

.home-benefits__content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--color-text);
}

.home-benefits__content p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-mid);
}


.home-features {
  padding: var(--sp-24) 0;
}

.home-features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.home-features__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-16);
}

.home-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  margin-bottom: var(--sp-24);
  padding-bottom: var(--sp-24);
  border-bottom: 1px solid var(--color-border);
}
.home-features__row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.home-features__row--reversed .home-features__visual {
  order: 2;
}
.home-features__row--reversed .home-features__text {
  order: 1;
}

.home-features__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.home-features__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.home-features__img-wrap:hover img {
  transform: scale(1.03);
}

.home-features__visual {
  position: relative;
}

.home-features__badge {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  background: var(--color-yellow);
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
}

.home-features__text h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-6);
  color: var(--color-text);
}

.home-features__text p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-mid);
  margin-bottom: var(--sp-4);
}

.home-features__text .global-cta {
  margin-top: var(--sp-4);
}


.home-visual-break {
  padding: var(--sp-16) 0;
  background: var(--color-bg-dark);
}

.home-visual-break__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-12);
  align-items: center;
}

.home-visual-break__inner img {
  width: 100%;
  max-width: 700px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

.home-visual-break__caption {
  max-width: 280px;
}

.home-visual-break__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-yellow);
  display: block;
  margin-bottom: var(--sp-4);
}

.home-visual-break__caption p {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
}


.home-process {
  padding: var(--sp-24) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.home-process__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.home-process__header {
  margin-bottom: var(--sp-16);
}

.home-process__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-4);
}

.home-process__header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-text);
}

.home-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

.home-process__step {
  padding: var(--sp-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}
.home-process__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.home-process__step-num {
  font-family: var(--font-mono);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-concrete);
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.home-process__step h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--color-text);
}

.home-process__step p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-mid);
}

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


.home-about-teaser {
  padding: var(--sp-24) 0;
  border-top: 1px solid var(--color-border);
}

.home-about-teaser__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.home-about-teaser__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-xl);
}
.home-about-teaser__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.home-about-teaser__img:hover img { transform: scale(1.03); }

.home-about-teaser__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-4);
}

.home-about-teaser__content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-6);
  color: var(--color-text);
}

.home-about-teaser__content p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-mid);
  margin-bottom: var(--sp-4);
}

.home-about-teaser__content .global-cta {
  margin-top: var(--sp-4);
}


.home-cta-band {
  padding: var(--sp-20) 0;
  background: var(--color-accent);
}

.home-cta-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.home-cta-band__text h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--sp-2);
}

.home-cta-band__text p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-base);
}

.home-cta-band__actions {
  display: flex;
  gap: var(--sp-4);
  flex-shrink: 0;
}

.home-cta-band .global-cta--primary {
  background: var(--color-yellow);
  color: var(--color-text);
  box-shadow: 0 4px 16px rgba(232,216,74,0.4);
}
.home-cta-band .global-cta--primary:hover {
  background: var(--color-yellow-dark);
  color: var(--color-text);
}


.global-footer {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding-top: var(--sp-16);
}

.global-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6) var(--sp-16);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-16);
}

.global-footer__brand img {
  margin-bottom: var(--sp-6);
  opacity: 0.9;
}

.global-footer__brand p {
  color: rgba(255,255,255,0.55);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 340px;
}

.global-footer__cta {
  background: var(--color-yellow) !important;
  color: var(--color-text) !important;
  box-shadow: 0 4px 16px rgba(232,216,74,0.25) !important;
}
.global-footer__cta:hover {
  background: var(--color-yellow-dark) !important;
  color: var(--color-text) !important;
}

.global-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.global-footer__col h4 {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}

.global-footer__col a,
.global-footer__col p {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-3);
  line-height: 1.5;
  transition: color var(--t-base);
}
.global-footer__col a:hover { color: var(--color-yellow); }

.global-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-5) var(--sp-6);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.global-footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  font-family: var(--font-mono);
}


.about-hero,
.services-hero,
.process-hero,
.contact-hero {
  padding: calc(var(--header-h) + var(--sp-16)) var(--sp-6) var(--sp-16);
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.about-hero::before,
.services-hero::before,
.process-hero::before,
.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(44,95,74,0.15) 100%);
  pointer-events: none;
}

.about-hero__inner,
.services-hero__inner,
.process-hero__inner,
.contact-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-hero__label,
.services-hero__label,
.process-hero__label,
.contact-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-6);
}

.about-hero__label-dot,
.services-hero__label-dot,
.process-hero__label-dot,
.contact-hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-yellow);
}

.about-hero__heading,
.services-hero__heading,
.process-hero__heading,
.contact-hero__heading {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--sp-6);
  max-width: 700px;
}

.about-hero__sub,
.services-hero__sub,
.process-hero__sub,
.contact-hero__sub {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
}


.about-story {
  padding: var(--sp-24) 0;
  border-bottom: 1px solid var(--color-border);
}

.about-story__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.about-story__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-10);
}

.about-story__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

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

.about-story__text h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-6);
  color: var(--color-text);
}

.about-story__text p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-mid);
  margin-bottom: var(--sp-4);
}


.about-approach {
  padding: var(--sp-24) 0;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.about-approach__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.about-approach__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-4);
}

.about-approach__heading {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--sp-12);
  color: var(--color-text);
}

.about-approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.about-approach__card {
  padding: var(--sp-8);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}
.about-approach__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.about-approach__card-icon {
  width: 44px;
  height: 44px;
  background: var(--color-yellow);
  color: var(--color-text);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  margin-bottom: var(--sp-5);
  box-shadow: 0 2px 8px rgba(232,216,74,0.3);
}

.about-approach__card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--color-text);
}

.about-approach__card p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-mid);
}


.about-for-whom {
  padding: var(--sp-24) 0;
  border-bottom: 1px solid var(--color-border);
}

.about-for-whom__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.about-for-whom__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-10);
}

.about-for-whom__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-for-whom__text h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-8);
  color: var(--color-text);
}

.about-for-whom__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.about-for-whom__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-mid);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--color-border);
}
.about-for-whom__list li:last-child { border-bottom: none; }

.about-for-whom__list li i {
  color: var(--color-accent);
  font-size: var(--text-sm);
  margin-top: 4px;
  flex-shrink: 0;
}

.about-for-whom__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.about-for-whom__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.about-cta-band,
.process-cta-band {
  padding: var(--sp-20) 0;
  background: var(--color-accent);
}

.about-cta-band__inner,
.process-cta-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  text-align: center;
}

.about-cta-band__inner h2,
.process-cta-band__inner h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--sp-4);
}

.about-cta-band__inner p,
.process-cta-band__inner p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-8);
}

.about-cta-band__actions,
.process-cta-band__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-band .global-cta--primary,
.process-cta-band .global-cta--primary {
  background: var(--color-yellow);
  color: var(--color-text);
  box-shadow: 0 4px 16px rgba(232,216,74,0.35);
}
.about-cta-band .global-cta--primary:hover,
.process-cta-band .global-cta--primary:hover {
  background: var(--color-yellow-dark);
  color: var(--color-text);
}


.services-grid {
  padding: var(--sp-24) 0;
}

.services-grid__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.services-grid__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-12);
}

.services-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.services-grid__card {
  padding: var(--sp-8);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}
.services-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.services-grid__card--featured {
  background: var(--color-bg-dark);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-accent);
}
.services-grid__card--featured h2 { color: var(--color-white); }
.services-grid__card--featured .services-grid__card-desc { color: rgba(255,255,255,0.65); }
.services-grid__card--featured .services-grid__card-list li { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.1); }
.services-grid__card--featured .services-grid__card-list li i { color: var(--color-yellow); }
.services-grid__card--featured .services-grid__card-label { color: var(--color-yellow); border-color: rgba(232,216,74,0.3); }

.services-grid__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.services-grid__card-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  box-shadow: var(--shadow-accent);
  flex-shrink: 0;
}

.services-grid__card-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-pill);
}

.services-grid__card h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.services-grid__card-desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-mid);
}

.services-grid__card-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.services-grid__card-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-text-mid);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--color-border);
}
.services-grid__card-list li:last-child { border-bottom: none; }
.services-grid__card-list li i {
  color: var(--color-accent);
  font-size: 0.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.services-grid__card-footer {
  margin-top: auto;
  padding-top: var(--sp-4);
}

.services-grid__card-footer .global-cta {
  width: 100%;
  justify-content: center;
}


.services-note {
  padding: var(--sp-12) 0;
  background: rgba(232,216,74,0.12);
  border-top: 2px solid var(--color-yellow);
  border-bottom: 1px solid var(--color-border);
}

.services-note__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  gap: var(--sp-8);
  align-items: flex-start;
}

.services-note__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}

.services-note__inner p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-mid);
}


.services-faq {
  padding: var(--sp-24) 0;
  background: var(--color-bg-alt);
}

.services-faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.services-faq__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-4);
}

.services-faq__inner h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--sp-12);
  color: var(--color-text);
}

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

.services-faq__item {
  border-bottom: 1px solid var(--color-border);
}

.services-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: color var(--t-base);
  cursor: pointer;
}
.services-faq__q:hover { color: var(--color-accent); }
.services-faq__q i {
  transition: transform var(--t-base);
  color: var(--color-text-light);
  flex-shrink: 0;
}
.services-faq__q[aria-expanded="true"] i {
  transform: rotate(45deg);
  color: var(--color-accent);
}

.services-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-base);
}
.services-faq__a.open {
  max-height: 300px;
  padding-bottom: var(--sp-6);
}

.services-faq__a p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-mid);
}


.process-steps {
  padding: var(--sp-24) 0;
  border-bottom: 1px solid var(--color-border);
}

.process-steps__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.process-steps__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-16);
}

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

.process-steps__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--sp-8);
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--t-base);
}
.process-steps__item:last-child { border-bottom: none; }
.process-steps__item:hover { background: var(--color-bg-alt); margin: 0 calc(-1 * var(--sp-6)); padding-left: var(--sp-6); padding-right: var(--sp-6); border-radius: var(--r-md); }

.process-steps__item-num {
  font-family: var(--font-mono);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-concrete);
  line-height: 1;
  padding-top: 6px;
}

.process-steps__item-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-4);
  color: var(--color-text);
}

.process-steps__item-content p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-mid);
  margin-bottom: var(--sp-3);
}

.process-steps__item-content .global-cta {
  margin-top: var(--sp-4);
}


.process-visual {
  padding: var(--sp-16) 0;
  background: var(--color-bg-dark);
}

.process-visual__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.process-visual__inner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}


.process-what-to-expect {
  padding: var(--sp-24) 0;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.process-what-to-expect__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.process-what-to-expect__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-4);
}

.process-what-to-expect__inner h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--sp-12);
  color: var(--color-text);
}

.process-what-to-expect__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.process-what-to-expect__card {
  padding: var(--sp-8);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
}
.process-what-to-expect__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.process-what-to-expect__card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--color-text);
}

.process-what-to-expect__card p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-mid);
}


.contact-form-section {
  padding: var(--sp-24) 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-form-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-form-section__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  padding-top: var(--sp-4);
}

.contact-form-section__info-block {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.contact-form-section__info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}

.contact-form-section__info-block h3 {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--sp-1);
}

.contact-form-section__info-block p,
.contact-form-section__info-block a {
  font-size: var(--text-base);
  color: var(--color-text-mid);
  line-height: 1.5;
  transition: color var(--t-base);
}
.contact-form-section__info-block a:hover { color: var(--color-accent); }

.contact-form-section__form-wrap {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-lg);
}

.contact-form-section__steps-indicator {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.contact-form-section__step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-concrete);
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
  font-family: var(--font-mono);
}

.contact-form-section__step-dot--active {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.contact-form-section__step-line {
  flex: 1;
  height: 2px;
  background: var(--color-concrete);
  border-radius: 2px;
}

.contact-form-section__step h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--color-text);
}

.contact-form-section__step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--sp-8);
}

.contact-form-section__step--hidden { display: none; }


.contact-form-section__field {
  position: relative;
  margin-bottom: var(--sp-6);
}

.contact-form-section__field input,
.contact-form-section__field textarea {
  width: 100%;
  padding: 1.25rem 1rem 0.75rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none;
  resize: vertical;
}

.contact-form-section__field input:focus,
.contact-form-section__field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(44,95,74,0.12);
}

.contact-form-section__field label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: var(--text-base);
  color: var(--color-text-light);
  pointer-events: none;
  transition: all var(--t-base);
  transform-origin: left top;
}

.contact-form-section__field input:not(:placeholder-shown) ~ label,
.contact-form-section__field input:focus ~ label,
.contact-form-section__field textarea:not(:placeholder-shown) ~ label,
.contact-form-section__field textarea:focus ~ label {
  transform: translateY(-0.5rem) scale(0.75);
  color: var(--color-accent);
  font-weight: 600;
}

.contact-form-section__field--textarea label {
  top: 1.1rem;
}

.contact-form-section__privacy {
  margin-bottom: var(--sp-6);
}

.contact-form-section__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  line-height: 1.5;
}

.contact-form-section__checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-form-section__checkmark {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-sm);
  background: var(--color-bg);
  flex-shrink: 0;
  transition: all var(--t-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.contact-form-section__checkbox-label input:checked + .contact-form-section__checkmark {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.contact-form-section__checkbox-label input:checked + .contact-form-section__checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

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

.contact-form-section__form-actions {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}

.contact-form-section__next {
  width: 100%;
  justify-content: center;
}


.contact-tips {
  padding: var(--sp-24) 0;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.contact-tips__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.contact-tips__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-4);
}

.contact-tips__inner h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--sp-12);
  color: var(--color-text);
}

.contact-tips__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.contact-tips__tip {
  padding: var(--sp-8);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
}
.contact-tips__tip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-tips__tip-num {
  font-family: var(--font-mono);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-yellow);
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.contact-tips__tip h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--color-text);
}

.contact-tips__tip p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-mid);
}


.contact-map {
  padding: var(--sp-24) 0;
}

.contact-map__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.contact-map__mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--sp-4);
}

.contact-map__inner h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--color-text);
}

.contact-map__inner > p {
  font-size: var(--text-base);
  color: var(--color-text-mid);
  margin-bottom: var(--sp-8);
}

.contact-map__embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}


.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - 200px);
  padding: var(--sp-16) var(--sp-6);
}

.thanks-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
}

.thanks-dot {
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: thanksDot 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  box-shadow: var(--shadow-accent);
}

@keyframes thanksDot {
  0% { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}

.thanks-heading {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-text);
  opacity: 0;
  animation: thanksFade 0.6s ease 0.5s forwards;
  max-width: 600px;
  line-height: 1.2;
}

@keyframes thanksFade {
  to { opacity: 1; }
}

.thanks-link {
  font-size: var(--text-base);
  color: var(--color-accent);
  text-decoration: underline;
  opacity: 0;
  animation: thanksFade 0.6s ease 1s forwards;
  transition: color var(--t-base);
}
.thanks-link:hover { color: var(--color-accent-lt); }


.legal-page {
  padding: calc(var(--header-h) + var(--sp-16)) 0 var(--sp-24);
}

.legal-page__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.legal-page__header {
  margin-bottom: var(--sp-16);
  padding-bottom: var(--sp-12);
  border-bottom: 2px solid var(--color-border);
}

.legal-page__header h1 {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}

.legal-page__meta {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--sp-6);
}

.legal-page__intro {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-mid);
}

.legal-page__toc {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  margin-bottom: var(--sp-12);
}

.legal-page__toc h2 {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--sp-4);
}

.legal-page__toc ol {
  list-style: decimal;
  padding-left: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.legal-page__toc ol li a {
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-decoration: underline;
  transition: color var(--t-base);
}
.legal-page__toc ol li a:hover { color: var(--color-accent-lt); }

.legal-page__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.legal-page__section {
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--color-border);
}
.legal-page__section:last-child { border-bottom: none; }

.legal-page__summary {
  display: block;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-6);
}

.legal-page__summary--letter {
  background: var(--color-yellow);
  color: var(--color-text);
}

.legal-page__section h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-5);
  color: var(--color-text);
}

.legal-page__section p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text-mid);
  margin-bottom: var(--sp-4);
}
.legal-page__section p:last-child { margin-bottom: 0; }

.legal-page__section a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color var(--t-base);
}
.legal-page__section a:hover { color: var(--color-accent-lt); }

.legal-page__section--cookies-intro { }


.legal-page__cookie-table {
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: var(--sp-6);
}

.legal-page__cookie-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 2fr 1fr;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-mid);
}
.legal-page__cookie-row:last-child { border-bottom: none; }

.legal-page__cookie-row--header {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


.avh-cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-bg-dark);
  border-bottom: 2px solid var(--color-yellow);
  transform: translateY(-100%);
  transition: transform var(--t-slow);
  box-shadow: 0 4px 24px rgba(28,28,26,0.3);
}

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

.avh-cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.avh-cookie-banner__text {
  flex: 1;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  min-width: 200px;
}

.avh-cookie-banner__text a {
  color: var(--color-yellow);
  text-decoration: underline;
}

.avh-cookie-banner__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: center;
}

.avh-cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-base);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  min-height: 36px;
  white-space: nowrap;
}

.avh-cookie-btn--accept {
  background: var(--color-yellow);
  color: var(--color-text);
  border-color: var(--color-yellow);
}
.avh-cookie-btn--accept:hover {
  background: var(--color-yellow-dark);
  border-color: var(--color-yellow-dark);
}

.avh-cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}
.avh-cookie-btn--reject:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}

.avh-cookie-btn--customize {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border-color: transparent;
  text-decoration: underline;
  font-size: var(--text-xs);
}
.avh-cookie-btn--customize:hover { color: var(--color-white); }


.avh-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.avh-cookie-modal--visible {
  opacity: 1;
  pointer-events: all;
}

.avh-cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,26,0.7);
  backdrop-filter: blur(4px);
}

.avh-cookie-modal__box {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.avh-cookie-modal__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--color-text);
}

.avh-cookie-modal__desc {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}

.avh-cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.avh-cookie-cat {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
}

.avh-cookie-cat__info { flex: 1; }

.avh-cookie-cat__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--sp-1);
}

.avh-cookie-cat__desc {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  line-height: 1.5;
}

.avh-cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

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

.avh-cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--color-concrete);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background var(--t-base);
}
.avh-cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--t-base);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.avh-cookie-toggle input:checked + .avh-cookie-toggle__slider {
  background: var(--color-accent);
}
.avh-cookie-toggle input:checked + .avh-cookie-toggle__slider::before {
  transform: translateX(20px);
}
.avh-cookie-toggle input:disabled + .avh-cookie-toggle__slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.avh-cookie-modal__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.avh-cookie-modal__actions .avh-cookie-btn {
  flex: 1;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}


@media (max-width: 1024px) {
  .home-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid__cards {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

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

  .home-features__row,
  .home-about-teaser__inner,
  .about-story__content,
  .about-for-whom__layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .home-features__row--reversed .home-features__visual { order: 0; }
  .home-features__row--reversed .home-features__text { order: 0; }

  .home-visual-break__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .home-visual-break__caption { max-width: 100%; }
  .home-visual-break__inner img { max-width: 100%; }

  .home-cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

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

  .contact-form-section__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

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

  .global-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .global-footer__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-what-to-expect__grid {
    grid-template-columns: 1fr;
  }

  .process-steps__item {
    grid-template-columns: 60px 1fr;
    gap: var(--sp-5);
  }

  .legal-page__cookie-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
  }
  .legal-page__cookie-row--header { display: none; }

  .home-intro__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .home-hero__heading {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

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

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

  .global-footer__links {
    grid-template-columns: 1fr;
  }

  .global-footer__bottom {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }

  .home-cta-band__actions {
    flex-direction: column;
    width: 100%;
  }
  .home-cta-band__actions .global-cta {
    width: 100%;
    justify-content: center;
  }

  .about-cta-band__actions,
  .process-cta-band__actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-section__form-actions {
    flex-direction: column;
  }
  .contact-form-section__form-actions .global-cta {
    width: 100%;
    justify-content: center;
  }

  .avh-cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .avh-cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .legal-page__header h1 {
    font-size: var(--text-4xl);
  }

  .services-note__inner {
    flex-direction: column;
    gap: var(--sp-4);
  }
}


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


::selection {
  background: var(--color-yellow);
  color: var(--color-text);
}


::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--color-concrete); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-text-light); }