


:root {
  
  --color-bg: #faf8f5;
  --color-bg-alt: #f0ece6;
  --color-dark: #1a2332;
  --color-dark-mid: #2d3f52;
  --color-text: #2d3f52;
  --color-text-muted: #637080;
  --color-primary: #3a7d6f;
  --color-primary-dark: #2b5e53;
  --color-primary-light: #e8f5f2;
  --color-accent: #e07b3f;
  --color-accent-light: #fef3eb;
  --color-white: #fdfcfa;
  --color-border: #e0d9d0;

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

  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-blob: 60% 40% 70% 30% / 50% 60% 40% 50%;

  
  --shadow-sm: 0 1px 3px rgba(26,35,50,0.06), 0 1px 2px rgba(26,35,50,0.04);
  --shadow-md: 0 4px 12px rgba(26,35,50,0.08), 0 2px 4px rgba(26,35,50,0.05);
  --shadow-lg: 0 10px 30px rgba(26,35,50,0.10), 0 4px 8px rgba(26,35,50,0.06);
  --shadow-xl: 0 20px 50px rgba(26,35,50,0.14), 0 8px 16px rgba(26,35,50,0.08);
  --shadow-accent: 0 8px 24px rgba(58,125,111,0.25), 0 2px 6px rgba(58,125,111,0.15);

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

  
  --transition-fast: 150ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


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

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

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

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

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}


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

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: var(--space-sm);
  max-width: 68ch;
}

p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }


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

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

.global-eyebrow--light {
  color: rgba(255,255,255,0.75);
}

.global-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.global-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  transition: gap var(--transition-base), color var(--transition-fast);
}

.global-link-arrow::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.global-link-arrow:hover {
  gap: 0.85rem;
  color: var(--color-primary-dark);
}

.global-link-arrow:hover::after {
  width: 100%;
}


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

.global-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: inherit;
}

.global-btn:hover::before { opacity: 1; }

.global-btn:active {
  transform: translateY(1px) scale(0.98);
}

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

.global-btn--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: 0 12px 32px rgba(58,125,111,0.35), 0 4px 8px rgba(58,125,111,0.2);
  transform: translateY(-2px);
}

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

.global-btn--ghost:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.global-btn--light {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.global-btn--light:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.global-btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.global-btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: var(--color-white);
  transform: translateY(-2px);
}


.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--transition-base), box-shadow var(--transition-base), color var(--transition-base);
  padding: 0;
}

.global-header.is-light {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
}

.global-header.is-dark {
  background: rgba(26,35,50,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.global-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

.global-header__logo-img {
  height: 36px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.global-header__logo:hover .global-header__logo-img {
  opacity: 0.8;
}

.global-header__nav {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

.global-header__nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.global-header.is-light .global-header__nav-link {
  color: var(--color-text);
}

.global-header.is-dark .global-header__nav-link {
  color: rgba(255,255,255,0.85);
}

.global-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.global-header.is-dark .global-header__nav-link::after {
  background: rgba(255,255,255,0.7);
}

.global-header__nav-link:hover::after,
.global-header__nav-link.active::after {
  width: 100%;
}

.global-header.is-light .global-header__nav-link:hover,
.global-header.is-light .global-header__nav-link.active {
  color: var(--color-primary);
}

.global-header.is-dark .global-header__nav-link:hover,
.global-header.is-dark .global-header__nav-link.active {
  color: #fff;
}

.global-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
}

.global-header__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.global-header.is-dark .global-header__hamburger span {
  background: #fff;
}

.global-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.global-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.global-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.global-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  pointer-events: none;
}

.global-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

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

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

.global-mobile-menu__nav {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl);
}

.global-mobile-menu__link {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700;
  color: rgba(255,255,255,0);
  transition: color var(--transition-base), transform var(--transition-base);
  transform: translateY(20px);
}

.global-mobile-menu.is-open .global-mobile-menu__link {
  color: rgba(255,255,255,0.9);
  transform: translateY(0);
}

.global-mobile-menu.is-open .global-mobile-menu__link:nth-child(1) { transition-delay: 0.3s; }
.global-mobile-menu.is-open .global-mobile-menu__link:nth-child(2) { transition-delay: 0.36s; }
.global-mobile-menu.is-open .global-mobile-menu__link:nth-child(3) { transition-delay: 0.42s; }
.global-mobile-menu.is-open .global-mobile-menu__link:nth-child(4) { transition-delay: 0.48s; }
.global-mobile-menu.is-open .global-mobile-menu__link:nth-child(5) { transition-delay: 0.54s; }

.global-mobile-menu__link:hover {
  color: #fff;
}


.global-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  position: relative;
}

.global-footer__accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.global-footer .global-container {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}

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

.global-footer__brand .global-footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.global-footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: var(--space-md);
}

.global-footer__address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.global-footer__address a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.global-footer__address a:hover {
  color: var(--color-white);
}

.global-footer__col h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
  font-weight: 600;
}

.global-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.global-footer__col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.global-footer__col ul a:hover {
  color: rgba(255,255,255,0.9);
  padding-left: 4px;
}

.global-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  text-align: center;
}

.global-footer__bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 0;
  max-width: none;
}


.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--space-xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.home-hero__blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  pointer-events: none;
  z-index: 0;
}

.home-hero__blob--1 {
  width: clamp(300px, 50vw, 700px);
  height: clamp(300px, 50vw, 700px);
  background: radial-gradient(ellipse, rgba(58,125,111,0.12) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: blobFloat 12s ease-in-out infinite alternate;
}

.home-hero__blob--2 {
  width: clamp(200px, 35vw, 450px);
  height: clamp(200px, 35vw, 450px);
  background: radial-gradient(ellipse, rgba(224,123,63,0.1) 0%, transparent 70%);
  bottom: 5%;
  left: -5%;
  animation: blobFloat 9s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
  from { transform: translate(0, 0) rotate(0deg) scale(1); }
  to   { transform: translate(20px, -20px) rotate(8deg) scale(1.05); }
}

.home-hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.home-hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.home-hero__heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.home-hero__heading em {
  font-style: italic;
  color: var(--color-primary);
  position: relative;
}

.home-hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.home-hero__stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

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

.home-hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}

.home-hero__stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.home-hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.home-hero__image {
  width: 100%;
  height: clamp(280px, 40vw, 520px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.home-hero__accent-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 200px;
  z-index: 2;
}

.home-hero__accent-card i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.home-hero__accent-card strong {
  color: var(--color-dark);
}


.home-intro {
  background: var(--color-dark);
  position: relative;
  padding: var(--space-2xl) 0;
}

.home-intro__wave-top,
.home-intro__wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.home-intro__wave-top { top: -1px; }
.home-intro__wave-bottom { bottom: -1px; }

.home-intro .global-container {
  position: relative;
  z-index: 2;
}

.home-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.home-intro__left .global-eyebrow {
  color: rgba(255,255,255,0.6);
}

.home-intro__heading {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.home-intro__right p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 60ch;
}

.home-intro__right .global-link-arrow {
  color: rgba(255,255,255,0.85);
  margin-top: var(--space-sm);
}

.home-intro__right .global-link-arrow::after {
  background: rgba(255,255,255,0.6);
}

.home-intro__right .global-link-arrow:hover {
  color: #fff;
}


.home-features {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

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

.home-features__heading {
  margin-bottom: var(--space-sm);
}

.home-features__subtext {
  color: var(--color-text-muted);
  max-width: 55ch;
  margin: 0 auto;
}

.home-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.home-features__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base);
}

.home-features__item:last-child {
  border-bottom: none;
}

.home-features__item:has(:hover) {
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.home-features__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50% 40% 60% 30% / 40% 50% 50% 40%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-base), transform var(--transition-base);
}

.home-features__item:hover .home-features__icon-wrap {
  background: var(--color-primary);
  transform: scale(1.1) rotate(-5deg);
}

.home-features__icon-wrap i {
  color: var(--color-primary);
  font-size: 1.3rem;
  transition: color var(--transition-fast);
}

.home-features__item:hover .home-features__icon-wrap i {
  color: #fff;
}

.home-features__text h3 {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.home-features__text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: 60ch;
}


.home-gradient-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1a4a40 40%, var(--color-dark) 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.home-gradient-section__blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(ellipse, rgba(224,123,63,0.15) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite alternate;
}

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

.home-gradient-section__content .global-eyebrow {
  color: rgba(255,255,255,0.65);
}

.home-gradient-section__heading {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-md);
}

.home-gradient-section__content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 55ch;
}

.home-gradient-section__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.home-gradient-section__image {
  width: 100%;
  height: clamp(250px, 35vw, 420px);
  object-fit: cover;
  display: block;
}


.home-process {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;
  position: relative;
}

.home-process__wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

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

.home-process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
}

.home-process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.home-process__step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
  min-width: 56px;
}

.home-process__step-content h3 {
  margin-bottom: 0.5rem;
}

.home-process__step-content p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.95rem;
}


.home-carousel {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-alt);
  overflow: hidden;
}

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

.home-carousel__swiper {
  overflow: hidden;
}

.home-carousel__slide {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.home-carousel__slide:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.home-carousel__slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.home-carousel__slide-body {
  padding: var(--space-md);
}

.home-carousel__slide-body h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.home-carousel__slide-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-primary);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
}


.home-cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-mid) 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.home-cta__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 70% 30% 50% 50% / 30% 70% 40% 60%;
  background: radial-gradient(ellipse, rgba(58,125,111,0.2) 0%, transparent 70%);
  bottom: -20%;
  left: -10%;
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite alternate;
}

.home-cta__inner {
  position: relative;
  z-index: 1;
}

.home-cta__heading {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: var(--space-md);
}

.home-cta__text {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 55ch;
  margin: 0 auto var(--space-xl);
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}


.about-hero,
.start-hero,
.approach-hero,
.contact-hero {
  padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.about-hero__blob,
.start-hero__blob,
.approach-hero__blob,
.contact-hero__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(ellipse, rgba(58,125,111,0.1) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite alternate;
}

.about-hero__inner,
.start-hero__inner,
.approach-hero__inner,
.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-hero__heading,
.start-hero__heading,
.approach-hero__heading,
.contact-hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: var(--space-md);
}

.about-hero__lead,
.start-hero__lead,
.approach-hero__lead,
.contact-hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 55ch;
  line-height: 1.75;
}


.about-story {
  background: var(--color-dark);
  padding: var(--space-2xl) 0;
  position: relative;
}

.about-story__wave-top,
.about-story__wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.about-story__wave-top { top: -1px; }
.about-story__wave-bottom { bottom: -1px; }

.about-story .global-container {
  position: relative;
  z-index: 2;
}

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

.about-story__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-story__image-wrap img {
  width: 100%;
  height: clamp(250px, 35vw, 420px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-story__image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: var(--color-accent);
  opacity: 0.4;
  z-index: -1;
}

.about-story__content h2,
.about-story__content p {
  color: rgba(255,255,255,0.85);
}

.about-story__content h2 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.about-story__content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}


.about-values {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

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

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

.about-values__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.about-values__icon {
  width: 52px;
  height: 52px;
  border-radius: 50% 40% 60% 30% / 40% 50% 50% 40%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: background var(--transition-base);
}

.about-values__card:hover .about-values__icon {
  background: var(--color-primary);
}

.about-values__icon i {
  color: var(--color-primary);
  font-size: 1.3rem;
  transition: color var(--transition-fast);
}

.about-values__card:hover .about-values__icon i {
  color: #fff;
}

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

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


.about-team {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-alt);
}

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

.about-team__header p {
  color: var(--color-text-muted);
  max-width: 55ch;
  margin: var(--space-sm) auto 0;
}

.about-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.about-team__member {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.about-team__member-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
}

.about-team__member-info {
  padding: var(--space-md) var(--space-lg);
}

.about-team__member-info h3 {
  margin-bottom: 0.25rem;
}

.about-team__member-role {
  display: block;
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.about-team__member-info p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}


.about-cta,
.approach-cta {
  padding: var(--space-3xl) 0;
  background: var(--color-primary-light);
  text-align: center;
}

.about-cta__inner,
.approach-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.about-cta__inner h2,
.approach-cta__inner h2 {
  margin-bottom: var(--space-md);
}

.about-cta__inner p,
.approach-cta__inner p {
  color: var(--color-text-muted);
  margin: 0 auto var(--space-lg);
}


.start-options {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

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

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

.start-options__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.start-options__card--featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-accent);
  position: relative;
}

.start-options__card--featured::before {
  content: 'Polecane';
  position: absolute;
  top: -12px;
  left: var(--space-lg);
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
}

.start-options__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50% 40% 60% 30% / 40% 50% 50% 40%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: background var(--transition-base);
}

.start-options__card:hover .start-options__card-icon {
  background: var(--color-primary);
}

.start-options__card-icon i {
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: color var(--transition-fast);
}

.start-options__card:hover .start-options__card-icon i {
  color: #fff;
}

.start-options__card h3 {
  margin-bottom: var(--space-sm);
}

.start-options__card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.start-options__list {
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.start-options__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.start-options__list li i {
  color: var(--color-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}


.start-faq {
  background: var(--color-dark);
  padding: var(--space-2xl) 0;
  position: relative;
}

.start-faq__wave-top,
.start-faq__wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.start-faq__wave-top { top: -1px; }
.start-faq__wave-bottom { bottom: -1px; }

.start-faq .global-container {
  position: relative;
  z-index: 2;
}

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

.start-faq__header h2 {
  color: #fff;
}

.start-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.start-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.start-faq__question {
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: var(--space-md) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: color var(--transition-fast);
  min-height: 44px;
}

.start-faq__question:hover {
  color: #fff;
}

.start-faq__question i {
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-primary);
  font-size: 0.85rem;
}

.start-faq__question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.start-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.start-faq__answer.is-open {
  max-height: 400px;
}

.start-faq__answer p {
  color: rgba(255,255,255,0.65);
  padding-bottom: var(--space-md);
  font-size: 0.95rem;
}


.start-cta {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

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

.start-cta__content h2 {
  margin-bottom: var(--space-sm);
}

.start-cta__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.start-cta__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.start-cta__image-wrap img {
  width: 100%;
  height: clamp(250px, 35vw, 400px);
  object-fit: cover;
}


.approach-pillars {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

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

.approach-pillars__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

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

.approach-pillars__item-num {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.approach-pillars__item-content h3 {
  margin-bottom: var(--space-md);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.approach-pillars__item-content p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.approach-pillars__item-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.approach-pillars__item-image img {
  width: 100%;
  height: clamp(220px, 30vw, 360px);
  object-fit: cover;
}


.approach-contrast {
  background: var(--color-dark);
  padding: var(--space-2xl) 0;
  position: relative;
}

.approach-contrast__wave-top,
.approach-contrast__wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.approach-contrast__wave-top { top: -1px; }
.approach-contrast__wave-bottom { bottom: -1px; }

.approach-contrast .global-container {
  position: relative;
  z-index: 2;
}

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

.approach-contrast__header h2 {
  color: #fff;
}

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

.approach-contrast__col {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(255,255,255,0.1);
}

.approach-contrast__col--new {
  border-color: rgba(58,125,111,0.4);
  background: rgba(58,125,111,0.08);
}

.approach-contrast__col h3 {
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.approach-contrast__col--old h3 i {
  color: rgba(255,255,255,0.4);
}

.approach-contrast__col--new h3 i {
  color: var(--color-primary);
}

.approach-contrast__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.approach-contrast__col li {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  padding-left: 1rem;
  position: relative;
}

.approach-contrast__col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.approach-contrast__col--new li {
  color: rgba(255,255,255,0.8);
}

.approach-contrast__col--new li::before {
  background: var(--color-primary);
}


.contact-facts-strip {
  background: var(--color-dark);
  padding: var(--space-xl) 0;
  position: relative;
}

.contact-facts-strip__wave-top,
.contact-facts-strip__wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.contact-facts-strip__wave-top { top: -1px; }
.contact-facts-strip__wave-bottom { bottom: -1px; }

.contact-facts-strip .global-container {
  position: relative;
  z-index: 2;
}

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

.contact-facts-strip__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-facts-strip__item i {
  color: var(--color-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-facts-strip__item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-facts-strip__item strong {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-facts-strip__item span {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.contact-facts-strip__item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}

.contact-facts-strip__item a:hover {
  color: #fff;
}


.contact-form-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

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

.contact-form-section__form-wrap h2,
.contact-form-section__map-wrap h2 {
  margin-bottom: var(--space-sm);
}

.contact-form-section__intro {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

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

.contact-form-section__chat-bubble {
  max-width: 90%;
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
}

.contact-form-section__chat-bubble--company {
  background: var(--color-primary-light);
  border-bottom-left-radius: var(--radius-sm);
  align-self: flex-start;
}

.contact-form-section__chat-bubble--company p {
  color: var(--color-primary-dark);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

.contact-form-section__chat-bubble--user {
  background: transparent;
  padding: 0;
  max-width: 100%;
  align-self: stretch;
}

.contact-form-section__chat-bubble--user input,
.contact-form-section__chat-bubble--user textarea {
  width: 100%;
  padding: 0.85rem var(--space-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  resize: vertical;
  min-height: 44px;
}

.contact-form-section__chat-bubble--user input:focus,
.contact-form-section__chat-bubble--user textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(58,125,111,0.15);
}

.contact-form-section__chat-form:has(:focus) .contact-form-section__chat-bubble--user input:not(:focus),
.contact-form-section__chat-form:has(:focus) .contact-form-section__chat-bubble--user textarea:not(:focus) {
  border-color: var(--color-border);
  opacity: 0.8;
}

.contact-form-section__privacy-wrap {
  padding: var(--space-sm) 0;
}

.contact-form-section__privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

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

.contact-form-section__submit {
  align-self: flex-start;
}

.contact-form-section__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-md);
}

.contact-form-section__map iframe {
  display: block;
  border-radius: var(--radius-lg);
}


.thanks-main {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
}

.thanks-section {
  flex: 1;
  padding: calc(80px + var(--space-xl)) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.thanks-section__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(ellipse, rgba(58,125,111,0.1) 0%, transparent 70%);
  top: 0;
  right: -10%;
  pointer-events: none;
}

.thanks-section__inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.thanks-section__icon {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.thanks-section__heading {
  margin-bottom: var(--space-sm);
}

.thanks-section__lead {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
}

.thanks-section__next {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}

.thanks-section__next h2 {
  font-size: 1.3rem;
  margin-bottom: var(--space-lg);
}

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

.thanks-section__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.thanks-section__step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thanks-section__step-icon i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.thanks-section__step h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.thanks-section__step p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}


.legal-page {
  padding: calc(80px + var(--space-xl)) 0 var(--space-3xl);
  background: var(--color-bg);
}

.legal-page__inner {
  max-width: 800px;
}

.legal-page__header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 2px solid var(--color-border);
}

.legal-page__header h1 {
  margin-bottom: var(--space-xs);
}

.legal-page__meta {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.legal-page__body h2 {
  font-size: 1.3rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-page__body h3 {
  font-size: 1.1rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-page__body p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 70ch;
}

.legal-page__body ul,
.legal-page__body ol {
  margin: var(--space-sm) 0 var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-page__body ul li,
.legal-page__body ol li {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.65;
  list-style: disc;
}

.legal-page__body--clauses ul li {
  list-style: disc;
}

.legal-term {
  color: var(--color-primary-dark);
  border-bottom: 1px dashed var(--color-primary);
  cursor: help;
}

.legal-page__definition-box {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-md) 0 var(--space-lg);
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.65;
}

.legal-page__definition-box strong {
  color: var(--color-primary-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.legal-page__clause {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.legal-page__clause:last-child {
  border-bottom: none;
}

.legal-page__rights-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: var(--space-md) 0;
}

.legal-page__rights-list li {
  list-style: none !important;
  padding-left: 0 !important;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text);
}

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

.legal-page__cookie-table-wrap {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-page__cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--color-white);
}

.legal-page__cookie-table th,
.legal-page__cookie-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.legal-page__cookie-table th {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-page__cookie-table td {
  color: var(--color-text);
}

.legal-page__cookie-table code {
  background: var(--color-bg-alt);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--color-primary-dark);
}


.gc-consent-icon {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
}

.gc-consent-icon__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
  position: relative;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.gc-consent-icon__btn:hover {
  background: var(--color-primary-dark);
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(58,125,111,0.4);
}

.gc-consent-icon__btn i {
  color: #fff;
  font-size: 1.3rem;
}

.gc-consent-icon__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  transition: opacity var(--transition-fast);
}

.gc-consent-icon__badge.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.gc-consent-panel {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: min(380px, calc(100vw - 48px));
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(26,35,50,0.06);
  z-index: 9998;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
  overflow: hidden;
}

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

.gc-consent-panel__header {
  background: var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gc-consent-panel__header h3 {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.gc-consent-panel__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  min-height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.gc-consent-panel__close:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.gc-consent-panel__body {
  padding: var(--space-md) var(--space-lg);
}

.gc-consent-panel__body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  max-width: none;
}

.gc-consent-panel__toggles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.gc-consent-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.gc-consent-toggle__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.gc-consent-toggle__desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  display: block;
  font-weight: 400;
}

.gc-consent-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.gc-consent-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.gc-consent-switch__track {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition-base);
}

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

.gc-consent-switch input:checked + .gc-consent-switch__track {
  background: var(--color-primary);
}

.gc-consent-switch input:checked + .gc-consent-switch__track::before {
  transform: translateX(20px);
}

.gc-consent-switch input:disabled + .gc-consent-switch__track {
  background: var(--color-primary);
  opacity: 0.6;
  cursor: not-allowed;
}

.gc-consent-panel__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gc-consent-panel__actions .global-btn {
  flex: 1;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  min-height: 40px;
}

.gc-consent-panel__footer {
  padding: var(--space-sm) var(--space-lg);
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: var(--space-md);
}

.gc-consent-panel__footer a {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.gc-consent-panel__footer a:hover {
  color: var(--color-primary);
}


@media (min-width: 640px) {
  .home-hero__content {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .start-options__grid {
    grid-template-columns: 1fr 1fr;
  }

  .start-options__card--featured {
    grid-column: 1 / -1;
  }

  .contact-facts-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .approach-contrast__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .global-header__nav {
    display: flex;
  }

  .global-header__hamburger {
    display: none;
  }

  .home-hero__content {
    grid-template-columns: 45% 55%;
  }

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

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

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

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

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

  .start-options__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .start-options__card--featured {
    grid-column: auto;
  }

  .start-cta__inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .approach-pillars__item {
    grid-template-columns: 80px 1fr 1fr;
  }

  .approach-pillars__item--reverse {
    direction: rtl;
  }

  .approach-pillars__item--reverse > * {
    direction: ltr;
  }

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

@media (min-width: 1024px) {
  .home-hero__content {
    grid-template-columns: 45% 55%;
  }

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


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}