/* ============================================
   SKJ-Consulting Design System
   Scandinavian × Apple — Cool, Minimal, Editorial
   ============================================ */

/* --- Self-Hosted Inter Font --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
}

/* --- Custom Properties --- */
:root {
  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-light: #F5F5F7;
  --bg-alt: #EBEBED;
  --bg-dark: #1D1D1F;
  --bg-footer: #161617;

  /* Text */
  --text-primary: #1D1D1F;
  --text-secondary: #6E6E73;
  --text-tertiary: #86868B;
  --text-light: #F5F5F7;
  --text-muted: #AEAEB2;

  /* Borders & Lines */
  --border: #D2D2D7;
  --border-light: #E8E8ED;
  --divider: #D2D2D7;

  /* Buttons */
  --btn-bg: #1D1D1F;
  --btn-text: #FFFFFF;
  --btn-hover: #333336;
  --btn-outline-border: #1D1D1F;
  --btn-outline-hover-bg: #1D1D1F;
  --btn-outline-hover-text: #FFFFFF;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);

  /* Spacing */
  --section-padding: 120px 0;
  --section-padding-sm: 80px 0;
  --container-max: 1200px;
  --container-narrow: 900px;
  --gap-lg: 80px;
  --gap-md: 48px;
  --gap-sm: 24px;

  /* Typography Scale */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --fs-display: clamp(3rem, 5vw, 4.5rem);
  --fs-h1: clamp(2.25rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1.0625rem;
  --fs-body-lg: 1.1875rem;
  --fs-small: 0.875rem;
  --fs-caption: 0.8125rem;
  --fs-number: clamp(3rem, 5vw, 5rem);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
  --duration-slow: 0.6s;
}


/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  background-color: var(--bg-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--text-tertiary);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* --- Typography --- */
h1,
h2,
h3,
h4 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
}

.display-text {
  font-size: var(--fs-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  overflow-wrap: break-word;
  word-break: break-word;
}

.subtitle {
  font-size: var(--fs-body-lg);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

.overline {
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.number-label {
  font-size: var(--fs-number);
  font-weight: 200;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
}


/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding);
}

.section--light {
  background: var(--bg-light);
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section--dark h2,
.section--dark h3 {
  color: var(--text-light);
}

.section--dark .subtitle {
  color: var(--text-muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 100px;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--btn-bg);
  color: var(--btn-text);
}

.btn--primary:hover {
  background: var(--btn-hover);
  color: var(--btn-text);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--btn-outline-border);
}

.btn--outline:hover {
  background: var(--btn-outline-hover-bg);
  color: var(--btn-outline-hover-text);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 8px 0;
  border-radius: 0;
  font-weight: 500;
  position: relative;
}

.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-primary);
  transition: width var(--duration) var(--ease);
}

.btn--ghost:hover::after {
  width: 100%;
}

.btn--ghost:hover {
  color: var(--text-primary);
}

.btn .arrow {
  transition: transform var(--duration) var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo img {
  height: 56px;
  width: auto;
  transform: scale(3.5);
  transform-origin: left center;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-primary);
}

.navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--text-primary);
}

.navbar__links a.nav-highlight {
  background: #000000;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  margin-left: 8px;
}

.navbar__links a.nav-highlight:hover {
  background: #222222;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.navbar__links a.nav-highlight::after {
  display: none;
}

/* Navbar Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown__chevron {
  display: inline-block;
  width: 8px;
  height: 5px;
  position: relative;
  top: 1px;
  opacity: 0.45;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
  flex-shrink: 0;
}

.nav-dropdown__chevron::before,
.nav-dropdown__chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--duration) var(--ease);
}

.nav-dropdown__chevron::before {
  left: 0;
  transform: translateY(-50%) rotate(40deg);
}

.nav-dropdown__chevron::after {
  right: 0;
  transform: translateY(-50%) rotate(-40deg);
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown.open .nav-dropdown__chevron {
  opacity: 1;
}

.nav-dropdown:hover .nav-dropdown__chevron::before,
.nav-dropdown.open .nav-dropdown__chevron::before {
  transform: translateY(-50%) rotate(-40deg);
}

.nav-dropdown:hover .nav-dropdown__chevron::after,
.nav-dropdown.open .nav-dropdown__chevron::after {
  transform: translateY(-50%) rotate(40deg);
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 22px;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 6px;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              visibility var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.nav-dropdown__active {
  background: var(--bg-light);
  color: var(--text-primary);
}

.nav-dropdown__menu a::after {
  display: none !important;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  font-size: var(--fs-caption);
  font-weight: 600;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all var(--duration) var(--ease);
  background: transparent;
  letter-spacing: 0.04em;
}

.lang-toggle:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--duration) var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}


/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 180px 0 var(--gap-lg);
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--bg-white);
}

.hero__content {
  max-width: 720px;
}

.hero__overline {
  margin-bottom: var(--gap-sm);
}

.hero__title {
  margin-bottom: var(--gap-sm);
}

.hero__subtitle {
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}


/* ============================================
   PAGE HEADER (subpages)
   ============================================ */
.page-header {
  padding: 180px 0 80px;
  background: var(--bg-white);
}

.page-header__overline {
  margin-bottom: 16px;
}

.page-header__title {
  margin-bottom: 20px;
}

.page-header__subtitle {
  max-width: 640px;
}


/* ============================================
   PILLARS (numbered editorial columns)
   ============================================ */
.pillars {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.pillar {
  position: relative;
}

.pillar__number {
  margin-bottom: 16px;
}

.pillar__title {
  margin-bottom: 12px;
}

.pillar__text {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Vertical divider between pillars */
.pillars .grid-3 {
  position: relative;
}

.pillar+.pillar {
  padding-left: var(--gap-md);
}

.pillar+.pillar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-light);
}


/* ============================================
   SERVICE LIST (editorial numbered list)
   ============================================ */
.service-list {
  list-style: none;
  padding: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: var(--gap-sm);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}

.service-item:first-child {
  border-top: 1px solid var(--border-light);
}

.service-item__number {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 200;
  color: var(--border);
  line-height: 1;
}

.service-item__content {
  padding-right: var(--gap-sm);
}

.service-item__title {
  margin-bottom: 8px;
}

.service-item__text {
  color: var(--text-secondary);
  max-width: 560px;
}

.service-item__link {
  align-self: center;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--duration) var(--ease);
}

.service-item__link:hover {
  gap: 10px;
  color: var(--text-primary);
}


/* ============================================
   TIMELINE (approach page)
   ============================================ */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 80px;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

/* Dot on timeline */
.timeline__item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--text-primary);
  transform: translateX(-50%);
  z-index: 2;
}

/* Alternating layout */
.timeline__item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + 48px);
  text-align: right;
}

.timeline__item:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + 48px);
  text-align: left;
}

.timeline__content {
  max-width: 460px;
}

.timeline__number {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 200;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
}

.timeline__title {
  margin-bottom: 12px;
}

.timeline__text {
  color: var(--text-secondary);
}

/* After-care dashed */
.timeline__item--aftercare::before {
  border-style: dashed;
  border-width: 2px;
  background: var(--bg-light);
}

.timeline__item--aftercare .timeline__title {
  color: var(--text-tertiary);
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: var(--container-narrow);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: var(--fs-body-lg);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  gap: 24px;
  transition: color var(--duration) var(--ease);
}

.faq-question:hover {
  color: var(--text-tertiary);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--duration) var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-primary);
  transition: transform var(--duration) var(--ease);
}

.faq-icon::before {
  width: 20px;
  height: 1.5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 20px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer__inner {
  padding: 0 0 24px 0;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}


/* ============================================
   CONTACT FORM
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
  max-width: 720px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.form-label span {
  font-weight: 400;
  color: var(--text-tertiary);
}

.form-input,
.form-textarea {
  font-family: inherit;
  font-size: var(--fs-body);
  color: var(--text-primary);
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 8px;
  transition: border-color var(--duration) var(--ease);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--text-primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-color: var(--text-primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  width: 100%;
}

.form-submit {
  margin-top: 16px;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--text-primary);
  flex-shrink: 0;
}

.checkbox-text {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--text-primary);
  text-decoration: underline;
}

/* Status messages */
.form-status {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: var(--fs-small);
  font-weight: 500;
  margin-bottom: var(--gap-sm);
}

.form-status--success {
  background: #f0f8f0;
  color: #2d6a2e;
  border: 1px solid #c8e6c8;
}

.form-status--error {
  background: #fdf0f0;
  color: #8b2525;
  border: 1px solid #f0c8c8;
}


/* ============================================
   INFO GRID (ISO page, about page)
   ============================================ */
.info-block {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}

.info-block:last-child {
  border-bottom: none;
}

.info-block__label {
  margin-bottom: 16px;
}

.info-block__title {
  margin-bottom: 16px;
}

.info-block__text {
  max-width: 680px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.info-block__text p+p {
  margin-top: 16px;
}


/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 80px 0;
  background: var(--bg-dark);
  text-align: center;
}

.cta-band h2 {
  color: var(--text-light);
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn--primary {
  background: var(--bg-white);
  color: var(--text-primary);
}

.cta-band .btn--primary:hover {
  background: var(--bg-light);
}


/* ============================================
   COMING SOON PAGE
   ============================================ */
.coming-soon {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 0 120px;
}

.coming-soon__tag {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: var(--gap-sm);
}

.coming-soon h1 {
  margin-bottom: 16px;
}

.coming-soon p {
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================
   LEGAL PAGE
   ============================================ */
.legal {
  padding: 160px 0 80px;
}

.legal h1 {
  margin-bottom: 40px;
}

.legal h2 {
  font-size: var(--fs-h3);
  margin: 40px 0 12px;
}

.legal p {
  margin-bottom: 12px;
  max-width: 720px;
  line-height: 1.8;
}

.legal .placeholder {
  background: var(--bg-light);
  border: 1px dashed var(--border);
  padding: 12px 18px;
  border-radius: 6px;
  color: var(--text-tertiary);
  font-style: italic;
  display: inline-block;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-footer);
  color: var(--text-muted);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap-md);
  margin-bottom: 60px;
}

.footer__brand p {
  margin-top: 20px;
  font-size: var(--fs-small);
  max-width: 300px;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer__brand img {
  height: 56px;
  width: auto;
  filter: invert(1) brightness(2);
  transform: scale(3.5);
  transform-origin: left center;
  margin-top: 16px;
  margin-bottom: 32px;
}

.footer__heading {
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: var(--fs-small);
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
  color: var(--text-light);
}

.footer__partner-badge {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  opacity: 0.6;
  margin-left: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-caption);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: var(--fs-caption);
  color: var(--text-muted);
}

.footer__bottom-links a:hover {
  color: var(--text-light);
}


/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-sm);
}

.cookie-banner__text {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.6;
}

.cookie-banner__text a {
  text-decoration: underline;
  color: var(--text-primary);
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  padding: 10px 24px;
  font-size: var(--fs-caption);
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease),
    transform var(--duration-slow) var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}


/* ============================================
   LIFECYCLE LINKS (homepage)
   ============================================ */
.lc-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--text-primary);
  transition: color var(--duration) var(--ease);
}

.lc-link:last-child {
  border-bottom: none;
}

.lc-link:hover {
  color: var(--text-tertiary);
}

.lc-link .lc-number {
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
  min-width: 32px;
  flex-shrink: 0;
}

.lc-link .lc-title {
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  color: var(--text-primary);
  transition: color var(--duration) var(--ease);
}

.lc-link:hover .lc-title {
  color: var(--text-tertiary);
}

.lc-link .lc-subtitle {
  font-size: var(--fs-small);
  color: var(--text-secondary);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
    --gap-lg: 48px;
    --gap-md: 32px;
  }

  /* Mobile Nav */
  .navbar__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px clamp(24px, 4vw, 48px);
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--duration) var(--ease);
  }

  .navbar__links.open {
    transform: translateX(0);
  }

  .navbar__links a {
    font-size: var(--fs-body-lg);
  }

  /* Mobile dropdown: stacked, always visible */
  .nav-dropdown {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .nav-dropdown__chevron {
    display: none;
  }

  .nav-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 20px;
    min-width: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-left: 1.5px solid var(--border-light);
    gap: 14px;
  }

  .nav-dropdown__menu a {
    font-size: var(--fs-body);
    padding: 0;
    border-radius: 0;
  }

  .nav-dropdown__menu a:hover {
    background: transparent;
  }

  .hamburger {
    display: flex;
  }

  /* Grids */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Pillar dividers */
  .pillar+.pillar {
    padding-left: 0;
    padding-top: 32px;
    margin-top: 32px;
  }

  .pillar+.pillar::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: 100%;
    height: 1px;
  }

  /* Hero */
  .hero {
    padding: 140px 0 60px;
    min-height: auto;
  }

  /* Timeline */
  .timeline::before {
    left: 20px;
  }

  .timeline__item::before {
    left: 20px;
  }

  .timeline__item:nth-child(odd),
  .timeline__item:nth-child(even) {
    padding-left: 56px;
    padding-right: 0;
    text-align: left;
    justify-content: flex-start;
  }

  /* Services */
  .service-item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .service-item__link {
    grid-column: 2;
    margin-top: 8px;
  }

  /* Form */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Cookie banner */
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }

  /* Page header */
  .page-header {
    padding: 140px 0 60px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px 0;
    --gap-md: 24px;
    --fs-display: clamp(1.75rem, 7.5vw, 2.4rem);
  }

  .display-text {
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}