


:root {
  
  --c-primary: #1a6b8a;
  --c-secondary: #2d9c6e;
  --c-accent: #e8a020;
  --c-dark: #1c2b35;
  --c-surface: #f4f7f9;

  
  --c-primary-light: color-mix(in oklch, var(--c-primary), white 55%);
  --c-primary-xlight: color-mix(in oklch, var(--c-primary), white 82%);
  --c-primary-dark: color-mix(in oklch, var(--c-primary), black 25%);
  --c-primary-xdark: color-mix(in oklch, var(--c-primary), black 45%);
  --c-primary-glow: color-mix(in oklch, var(--c-primary), transparent 70%);

  
  --c-secondary-light: color-mix(in oklch, var(--c-secondary), white 55%);
  --c-secondary-xlight: color-mix(in oklch, var(--c-secondary), white 82%);
  --c-secondary-dark: color-mix(in oklch, var(--c-secondary), black 25%);

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

  
  --c-dark-light: color-mix(in oklch, var(--c-dark), white 30%);
  --c-dark-xlight: color-mix(in oklch, var(--c-dark), white 60%);

  
  --c-text: color-mix(in oklch, var(--c-dark), white 8%);
  --c-text-muted: color-mix(in oklch, var(--c-dark), white 45%);
  --c-bg: #f4f7f9;
  --c-bg-alt: color-mix(in oklch, var(--c-primary), white 92%);
  --c-border: color-mix(in oklch, var(--c-primary), white 80%);
  --c-white-tinted: #fafcfd;

  
  --shadow-0: none;
  --shadow-1: 0 1px 3px color-mix(in oklch, var(--c-dark), transparent 88%),
              0 1px 2px color-mix(in oklch, var(--c-dark), transparent 94%);
  --shadow-2: 0 3px 6px color-mix(in oklch, var(--c-dark), transparent 85%),
              0 2px 4px color-mix(in oklch, var(--c-dark), transparent 88%),
              0 0 0 1px color-mix(in oklch, var(--c-primary), transparent 94%);
  --shadow-3: 0 10px 24px color-mix(in oklch, var(--c-dark), transparent 80%),
              0 4px 8px color-mix(in oklch, var(--c-dark), transparent 88%),
              0 0 0 1px color-mix(in oklch, var(--c-primary), transparent 92%);
  --shadow-4: 0 20px 48px color-mix(in oklch, var(--c-dark), transparent 75%),
              0 8px 16px color-mix(in oklch, var(--c-dark), transparent 85%),
              0 0 0 1px color-mix(in oklch, var(--c-primary), transparent 90%);
  --shadow-primary: 0 8px 24px color-mix(in oklch, var(--c-primary), transparent 65%),
                    0 3px 8px color-mix(in oklch, var(--c-primary), transparent 75%);
  --shadow-accent: 0 8px 24px color-mix(in oklch, var(--c-accent), transparent 65%);

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

  
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;

  
  --header-h: 72px;
  --header-h-scrolled: 56px;
}


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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body.page-home { padding-top: 0; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }


.global-lang-badge {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  background: var(--c-white-tinted);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 3px 10px 3px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  box-shadow: var(--shadow-1);
  transition: var(--t-base);
  pointer-events: none;
}

.global-lang-flag { font-size: 1rem; }


.global-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: color-mix(in oklch, var(--c-white-tinted), transparent 8%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: padding var(--t-slow), background var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow);
  padding: 0;
}

.global-header.scrolled {
  background: color-mix(in oklch, var(--c-white-tinted), transparent 3%);
  border-color: var(--c-border);
  box-shadow: var(--shadow-2);
}

.page-home .global-header {
  background: color-mix(in oklch, var(--c-dark), transparent 20%);
  border-color: color-mix(in oklch, white, transparent 80%);
}

.page-home .global-header.scrolled {
  background: color-mix(in oklch, var(--c-white-tinted), transparent 3%);
  border-color: var(--c-border);
}

.global-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  transition: padding var(--t-slow);
}

.global-header.scrolled .global-header-inner { padding: 10px 24px; }

.global-header-logo img {
  transition: width var(--t-slow), height var(--t-slow);
  width: 90px; height: 36px;
}

.global-header.scrolled .global-header-logo img { width: 74px; height: 30px; }

.global-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  padding: 8px;
  transition: background var(--t-base);
}

.global-hamburger:hover { background: color-mix(in oklch, var(--c-primary), transparent 88%); }

.global-hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--c-primary);
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
}

.page-home .global-hamburger span { background: white; }
.page-home .global-header.scrolled .global-hamburger span { background: var(--c-primary); }

.global-hamburger span:last-child { width: 65%; }

.global-header-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-primary);
  color: white;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-primary);
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.global-header-cta:hover {
  background: var(--c-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-3);
}


.global-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: color-mix(in oklch, var(--c-dark), transparent 40%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
  backdrop-filter: blur(2px);
}

.global-drawer-overlay.active { opacity: 1; pointer-events: all; }

.global-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(320px, 88vw);
  z-index: 1100;
  background: var(--c-white-tinted);
  box-shadow: var(--shadow-4);
  transform: translateX(-100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.global-drawer.open { transform: translateX(0); }

.global-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--c-border);
}

.global-drawer-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: var(--c-text-muted);
  font-size: 1.1rem;
  transition: background var(--t-fast), color var(--t-fast);
}

.global-drawer-close:hover {
  background: var(--c-primary-xlight);
  color: var(--c-primary);
}

.global-drawer-links {
  flex: 1;
  padding: 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.global-drawer-links li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: background var(--t-fast), color var(--t-fast);
}

.global-drawer-links li a i {
  width: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--c-primary-light);
  transition: color var(--t-fast);
}

.global-drawer-links li a:hover,
.global-drawer-links li a.active {
  background: var(--c-primary-xlight);
  color: var(--c-primary-dark);
}

.global-drawer-links li a:hover i,
.global-drawer-links li a.active i { color: var(--c-primary); }

.global-drawer-contact {
  padding: 16px 16px 24px;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.global-drawer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.global-drawer-contact a:hover { color: var(--c-primary); background: var(--c-primary-xlight); }
.global-drawer-contact a i { color: var(--c-primary); width: 16px; }


.global-mobile-tabs {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--c-white-tinted);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 20px color-mix(in oklch, var(--c-dark), transparent 88%);
  padding: 0;
}

.global-mobile-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  min-height: 56px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-text-muted);
  transition: color var(--t-fast), background var(--t-fast);
  padding: 8px 4px;
}

.global-mobile-tab i { font-size: 1.1rem; transition: transform var(--t-fast); }
.global-mobile-tab.active { color: var(--c-primary); }
.global-mobile-tab.active i { transform: translateY(-2px); }
.global-mobile-tab:hover { color: var(--c-primary); background: var(--c-primary-xlight); }


.global-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.global-btn-primary {
  background: var(--c-primary);
  color: white;
  box-shadow: var(--shadow-primary);
  border-color: var(--c-primary);
}
.global-btn-primary:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-4);
}

.global-btn-outline {
  background: transparent;
  color: white;
  border-color: color-mix(in oklch, white, transparent 40%);
}
.global-btn-outline:hover {
  background: color-mix(in oklch, white, transparent 85%);
  border-color: white;
}

.global-btn-outline-dark {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.global-btn-outline-dark:hover {
  background: var(--c-primary-xlight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.global-btn-white {
  background: white;
  color: var(--c-primary);
  border-color: white;
  box-shadow: var(--shadow-2);
}
.global-btn-white:hover {
  background: var(--c-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}

.global-btn-outline-white {
  background: transparent;
  color: white;
  border-color: color-mix(in oklch, white, transparent 50%);
}
.global-btn-outline-white:hover {
  background: color-mix(in oklch, white, transparent 88%);
  border-color: white;
}


.global-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-xlight);
  padding: 4px 14px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}

.global-section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--c-dark);
  margin-bottom: 16px;
}

.global-section-sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.global-page-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  color: var(--c-dark);
  margin-bottom: 20px;
}

.global-page-intro {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  max-width: 620px;
}


.global-footer {
  background: var(--c-dark);
  color: color-mix(in oklch, white, transparent 20%);
  margin-top: auto;
}

.global-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-6) var(--sp-10);
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: var(--sp-10);
}

.global-footer-brand img { margin-bottom: 14px; filter: brightness(2); }

.global-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in oklch, white, transparent 40%);
  margin-bottom: 16px;
}

.global-footer-brand address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 2;
  color: color-mix(in oklch, white, transparent 35%);
}

.global-footer-brand address a {
  color: color-mix(in oklch, white, transparent 25%);
  transition: color var(--t-fast);
}
.global-footer-brand address a:hover { color: white; }
.global-footer-brand address i { width: 16px; margin-right: 4px; color: var(--c-primary-light); }

.global-footer-nav h4, .global-footer-legal h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in oklch, white, transparent 30%);
  margin-bottom: 16px;
}

.global-footer-nav ul li, .global-footer-legal ul li {
  margin-bottom: 8px;
}

.global-footer-nav ul li a, .global-footer-legal ul li a {
  font-size: 0.9rem;
  color: color-mix(in oklch, white, transparent 40%);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-block;
}
.global-footer-nav ul li a:hover, .global-footer-legal ul li a:hover {
  color: white;
  padding-left: 4px;
}

.global-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  border-top: 1px solid color-mix(in oklch, white, transparent 85%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: color-mix(in oklch, white, transparent 55%);
  flex-wrap: wrap;
  gap: 8px;
}




.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    color-mix(in oklch, var(--c-dark), transparent 20%) 0%,
    color-mix(in oklch, var(--c-primary-xdark), transparent 30%) 60%,
    color-mix(in oklch, var(--c-dark), transparent 5%) 100%
  );
}

.home-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: var(--sp-24) var(--sp-8) var(--sp-8);
  margin: 0 auto 0 6%;
}

.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  background: color-mix(in oklch, var(--c-accent), transparent 82%);
  border: 1px solid color-mix(in oklch, var(--c-accent), transparent 65%);
  padding: 5px 16px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}

.home-hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.08;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px color-mix(in oklch, var(--c-dark), transparent 60%);
}

.home-hero-title em {
  font-style: italic;
  color: var(--c-accent-light);
}

.home-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: color-mix(in oklch, white, transparent 18%);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.home-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}


.home-hero-cards {
  position: relative;
  z-index: 2;
  padding: 0 4% var(--sp-8);
}

.home-hero-cards-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.home-hero-cards-track::-webkit-scrollbar { display: none; }

.home-hero-minicard {
  display: flex;
  align-items: center;
  gap: 12px;
  background: color-mix(in oklch, var(--c-white-tinted), transparent 8%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in oklch, white, transparent 75%);
  border-radius: var(--r-md);
  padding: 14px 18px;
  min-width: 210px;
  flex-shrink: 0;
  box-shadow: var(--shadow-3);
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
  cursor: pointer;
}

.home-hero-minicard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-4);
  background: color-mix(in oklch, var(--c-white-tinted), transparent 3%);
}

.home-hero-minicard-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklch, var(--c-primary), transparent 75%);
  border-radius: var(--r-sm);
  color: var(--c-accent-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.home-hero-minicard-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.home-hero-minicard-text span {
  display: block;
  font-size: 0.75rem;
  color: color-mix(in oklch, white, transparent 35%);
  margin-top: 2px;
}


.home-services {
  padding: var(--sp-20) 0;
  background: var(--c-bg);
}

.home-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.home-services-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.home-services-header .global-section-sub { margin: 0 auto; }

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-services-card {
  background: var(--c-white-tinted);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}

.home-services-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
  opacity: 0;
  transition: opacity var(--t-base);
}

.home-services-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-4);
}

.home-services-card:hover::before { opacity: 1; }

.home-services-card--accent {
  background: linear-gradient(135deg, var(--c-primary-xlight), color-mix(in oklch, var(--c-secondary), white 88%));
}

.home-services-card--light {
  background: color-mix(in oklch, var(--c-secondary), white 90%);
}

.home-services-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  border-radius: var(--r-md);
  color: white;
  font-size: 1.3rem;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-primary);
  transition: transform var(--t-base);
}

.home-services-card:hover .home-services-card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.home-services-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--c-dark);
  margin-bottom: 10px;
}

.home-services-card p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.home-services-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-primary);
  transition: gap var(--t-fast), color var(--t-fast);
}

.home-services-card-link:hover { gap: 10px; color: var(--c-primary-dark); }


.home-howitworks {
  padding: var(--sp-20) 0;
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}

.home-howitworks::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, color-mix(in oklch, var(--c-primary), transparent 75%) 0%, transparent 70%);
  pointer-events: none;
}

.home-howitworks-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  position: relative;
  z-index: 1;
}

.home-howitworks-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.home-howitworks-header .global-section-label {
  background: color-mix(in oklch, var(--c-primary), transparent 75%);
  color: var(--c-primary-light);
}

.home-howitworks-header .global-section-title { color: white; }

.home-howitworks-header .global-section-sub {
  color: color-mix(in oklch, white, transparent 35%);
  margin: 0 auto;
}

.home-howitworks-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.home-howitworks-step {
  flex: 1;
  background: color-mix(in oklch, white, transparent 94%);
  border: 1px solid color-mix(in oklch, white, transparent 88%);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: 0 4px 24px color-mix(in oklch, var(--c-dark), transparent 60%),
              0 0 0 1px color-mix(in oklch, var(--c-primary), transparent 85%);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}

.home-howitworks-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px color-mix(in oklch, var(--c-dark), transparent 50%),
              0 0 0 1px color-mix(in oklch, var(--c-primary), transparent 75%),
              0 0 40px color-mix(in oklch, var(--c-primary), transparent 85%);
}

.home-howitworks-step-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: color-mix(in oklch, var(--c-primary), transparent 70%);
  margin-bottom: 12px;
}

.home-howitworks-step-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  border-radius: var(--r-md);
  color: white;
  font-size: 1.4rem;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-primary);
}

.home-howitworks-step h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 10px;
}

.home-howitworks-step p {
  font-size: 0.9rem;
  color: color-mix(in oklch, white, transparent 35%);
  line-height: 1.7;
}

.home-howitworks-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: color-mix(in oklch, var(--c-primary), transparent 50%);
  font-size: 1.2rem;
  margin-top: 80px;
}


.home-visual {
  padding: var(--sp-20) 0;
  background: var(--c-bg-alt);
}

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

.home-visual-text .global-section-title { margin-bottom: 20px; }
.home-visual-text p {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.home-visual-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.home-visual-img-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.home-visual-img-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-4);
}

.home-visual-img-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.home-visual-img-card--before { margin-top: 32px; }
.home-visual-img-card--after { margin-bottom: 32px; }

.home-visual-img-label {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--c-dark);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}

.home-visual-img-card--after .home-visual-img-label {
  background: var(--c-secondary);
}


.home-journey {
  padding: var(--sp-20) 0;
  background: var(--c-bg);
  position: relative;
}

.home-journey-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.home-journey-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.home-journey-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-journey-line {
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-primary), var(--c-secondary));
  opacity: 0.3;
}

.home-journey-step {
  display: flex;
  gap: 24px;
  padding: 0 0 36px 0;
  align-items: flex-start;
}

.home-journey-dot {
  width: 56px; height: 56px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  box-shadow: var(--shadow-primary);
  z-index: 1;
  transition: transform var(--t-base);
}

.home-journey-step:hover .home-journey-dot { transform: scale(1.1); }

.home-journey-card {
  flex: 1;
  background: var(--c-white-tinted);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-8);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.home-journey-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-3);
}

.home-journey-stage {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 6px;
}

.home-journey-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--c-dark);
  margin-bottom: 8px;
}

.home-journey-card p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}


.home-packages {
  padding: var(--sp-20) 0;
  background: linear-gradient(160deg, var(--c-bg-alt) 0%, var(--c-bg) 100%);
}

.home-packages-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.home-packages-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.home-packages-header .global-section-sub { margin: 0 auto; }

.home-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.home-packages-card {
  background: var(--c-white-tinted);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}

.home-packages-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-4);
}

.home-packages-card--featured {
  background: linear-gradient(160deg, var(--c-primary-xdark), var(--c-primary-dark));
  border-color: var(--c-primary);
  box-shadow: var(--shadow-primary), var(--shadow-3);
  transform: scale(1.03);
}

.home-packages-card--featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: var(--shadow-primary), var(--shadow-4);
}

.home-packages-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}

.home-packages-card-season {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.home-packages-card-season i {
  font-size: 1.4rem;
  color: var(--c-secondary);
}

.home-packages-card--featured .home-packages-card-season i { color: var(--c-accent-light); }

.home-packages-card-season span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.home-packages-card--featured .home-packages-card-season span {
  color: color-mix(in oklch, white, transparent 30%);
}

.home-packages-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--c-dark);
  margin-bottom: var(--sp-4);
}

.home-packages-card--featured h3 { color: white; }

.home-packages-list {
  margin-bottom: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-packages-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.home-packages-card--featured .home-packages-list li {
  color: color-mix(in oklch, white, transparent 25%);
}

.home-packages-list li i {
  color: var(--c-secondary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.home-packages-card--featured .home-packages-list li i { color: var(--c-accent-light); }


.home-about {
  padding: var(--sp-20) 0;
  background: var(--c-bg);
}

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

.home-about-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-4);
  position: relative;
}

.home-about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  border: 2px solid color-mix(in oklch, var(--c-primary), transparent 80%);
  pointer-events: none;
}

.home-about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.home-about-image:hover img { transform: scale(1.03); }

.home-about-content p {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}


.home-cta-band {
  background: linear-gradient(135deg, var(--c-primary-xdark), var(--c-primary-dark));
  padding: var(--sp-16) 0;
}

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

.home-cta-band-text h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: white;
  margin-bottom: 8px;
}

.home-cta-band-text p {
  font-size: 1rem;
  color: color-mix(in oklch, white, transparent 30%);
}

.home-cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


.team-main { padding-bottom: var(--sp-20); }

.team-hero {
  background: var(--c-bg-alt);
  padding: var(--sp-16) 0 var(--sp-20);
  border-bottom: 1px solid var(--c-border);
}

.team-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.team-hero-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-4);
}

.team-hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.team-values {
  padding: var(--sp-20) 0;
  background: var(--c-bg);
}

.team-values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.team-values-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.team-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-values-card {
  background: var(--c-white-tinted);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.team-values-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-4);
}

.team-values-card i {
  font-size: 1.8rem;
  color: var(--c-primary);
  margin-bottom: var(--sp-4);
  display: block;
}

.team-values-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--c-dark);
  margin-bottom: 10px;
}

.team-values-card p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.team-equipment {
  padding: var(--sp-20) 0;
  background: var(--c-bg-alt);
}

.team-equipment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.team-equipment-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-4);
}

.team-equipment-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.team-equipment-content p {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.team-equipment-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--sp-6);
}

.team-equipment-spec {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  padding: 10px 14px;
  background: var(--c-white-tinted);
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-1);
}

.team-equipment-spec i { color: var(--c-primary); width: 18px; }

.team-area {
  padding: var(--sp-20) 0;
  background: var(--c-bg);
}

.team-area-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.team-area-content p {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.team-area-map {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-area-map-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--c-white-tinted);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.team-area-map-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-3);
}

.team-area-map-card > i {
  font-size: 1.3rem;
  color: var(--c-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.team-area-map-card div { display: flex; flex-direction: column; gap: 2px; }
.team-area-map-card strong { font-size: 0.9rem; font-weight: 700; color: var(--c-dark); }
.team-area-map-card span { font-size: 0.875rem; color: var(--c-text-muted); }


.services-main { padding-bottom: var(--sp-20); }

.services-hero {
  background: linear-gradient(135deg, var(--c-bg-alt) 0%, var(--c-bg) 100%);
  padding: var(--sp-16) 0 var(--sp-12);
  border-bottom: 1px solid var(--c-border);
}

.services-hero-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  text-align: center;
}

.services-detail {
  padding: var(--sp-16) 0;
}

.services-detail:nth-child(even) { background: var(--c-bg-alt); }
.services-detail:nth-child(odd) { background: var(--c-bg); }

.services-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.services-detail--reverse .services-detail-container {
  direction: rtl;
}

.services-detail--reverse .services-detail-container > * {
  direction: ltr;
}

.services-detail-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  border-radius: var(--r-md);
  color: white;
  font-size: 1.5rem;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-primary);
}

.services-detail-content h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--c-dark);
  margin-bottom: 16px;
}

.services-detail-content p {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.services-detail-surfaces { margin-top: var(--sp-6); }

.services-detail-surfaces h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}

.services-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-detail-tags span {
  background: var(--c-primary-xlight);
  color: var(--c-primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--c-primary-light);
  transition: background var(--t-fast), transform var(--t-fast);
}

.services-detail-tags span:hover {
  background: var(--c-primary-light);
  transform: translateY(-2px);
}

.services-detail-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-4);
  transition: transform var(--t-slow);
}

.services-detail-image:hover { transform: scale(1.01); }

.services-detail-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.services-packages {
  padding: var(--sp-20) 0;
  background: var(--c-dark);
}

.services-packages-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.services-packages-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.services-packages-header .global-section-label {
  background: color-mix(in oklch, var(--c-primary), transparent 75%);
  color: var(--c-primary-light);
}

.services-packages-header .global-section-title { color: white; }
.services-packages-header .global-section-sub {
  color: color-mix(in oklch, white, transparent 35%);
  margin: 0 auto;
}

.services-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-packages-card {
  background: color-mix(in oklch, white, transparent 92%);
  border: 1px solid color-mix(in oklch, white, transparent 86%);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.services-packages-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px color-mix(in oklch, var(--c-dark), transparent 50%);
}

.services-packages-card--featured {
  background: linear-gradient(135deg, var(--c-primary), color-mix(in oklch, var(--c-primary), var(--c-secondary) 50%));
  border-color: color-mix(in oklch, var(--c-primary-light), transparent 50%);
  box-shadow: var(--shadow-primary);
}

.services-packages-card i {
  font-size: 2rem;
  color: var(--c-secondary-light);
  margin-bottom: var(--sp-4);
  display: block;
}

.services-packages-card--featured i { color: var(--c-accent-light); }

.services-packages-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 12px;
}

.services-packages-card p {
  font-size: 0.9rem;
  color: color-mix(in oklch, white, transparent 35%);
  line-height: 1.7;
}

.services-commercial {
  padding: var(--sp-20) 0;
  background: var(--c-bg);
}

.services-commercial-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  text-align: center;
}

.services-commercial-container p {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}


.faq-main { padding-bottom: var(--sp-20); }

.faq-hero {
  background: var(--c-bg-alt);
  padding: var(--sp-16) 0 var(--sp-12);
  border-bottom: 1px solid var(--c-border);
}

.faq-hero-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  text-align: center;
}

.faq-content {
  padding: var(--sp-16) 0;
}

.faq-content-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.faq-category-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--c-dark);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-category-title i { color: var(--c-primary); font-size: 1.2rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--c-white-tinted);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--t-base);
}

.faq-item:hover { box-shadow: var(--shadow-2); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-dark);
  text-align: left;
  transition: background var(--t-fast), color var(--t-fast);
  cursor: pointer;
}

.faq-question:hover { background: var(--c-primary-xlight); color: var(--c-primary-dark); }

.faq-question[aria-expanded="true"] {
  background: var(--c-primary-xlight);
  color: var(--c-primary-dark);
  border-bottom: 1px solid var(--c-border);
}

.faq-question i {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--c-primary);
  transition: transform var(--t-base);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
}

.faq-answer.open {
  max-height: 600px;
  padding: 16px 20px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

.faq-cta {
  padding: var(--sp-16) 0;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
}

.faq-cta-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  text-align: center;
}

.faq-cta-container h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.8rem;
  color: var(--c-dark);
  margin-bottom: 12px;
}

.faq-cta-container p {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-8);
}

.faq-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


.contact-main { padding-bottom: var(--sp-20); }

.contact-hero {
  background: var(--c-bg-alt);
  padding: var(--sp-16) 0 var(--sp-12);
  border-bottom: 1px solid var(--c-border);
}

.contact-hero-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  text-align: center;
}

.contact-form-section {
  padding: var(--sp-16) 0;
  background: var(--c-bg);
}

.contact-form-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.contact-form-section-form {
  background: var(--c-white-tinted);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-3);
  border: 1px solid var(--c-border);
}

.contact-form-section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.contact-form-section-group {
  margin-bottom: var(--sp-5);
}

.contact-form-section-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.contact-form-section-group label span { color: var(--c-primary); }

.contact-form-section-group input,
.contact-form-section-group select,
.contact-form-section-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form-section-group input:focus,
.contact-form-section-group select:focus,
.contact-form-section-group textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-xlight);
}

.contact-form-section-group textarea { resize: vertical; min-height: 130px; }

.contact-form-section-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a6b8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.contact-form-section-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.contact-form-section-checkbox input {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--c-primary);
  cursor: pointer;
}

.contact-form-section-checkbox a { color: var(--c-primary); text-decoration: underline; }

.contact-form-section-checkmark { display: none; }

.contact-form-section-error {
  min-height: 0;
  font-size: 0.875rem;
  color: #c0392b;
  background: color-mix(in oklch, #c0392b, white 88%);
  border-radius: var(--r-sm);
  padding: 0;
  transition: all var(--t-base);
}

.contact-form-section-error:not(:empty) {
  padding: 10px 14px;
  margin-bottom: var(--sp-4);
}

.contact-form-section-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}

.contact-form-section-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.contact-form-section-info-card {
  background: var(--c-white-tinted);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-3);
  border: 1px solid var(--c-border);
}

.contact-form-section-info-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--c-dark);
  margin-bottom: var(--sp-6);
}

.contact-form-section-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-form-section-info-item:last-child { margin-bottom: 0; }

.contact-form-section-info-item > i {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-primary-xlight);
  border-radius: var(--r-sm);
  color: var(--c-primary);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-section-info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-form-section-info-item strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.contact-form-section-info-item span,
.contact-form-section-info-item a {
  font-size: 0.9rem;
  color: var(--c-text);
  display: block;
  line-height: 1.5;
}

.contact-form-section-info-item a:hover { color: var(--c-primary); }

.contact-form-section-office {
  background: linear-gradient(135deg, var(--c-bg-alt), var(--c-bg));
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-2);
}

.contact-form-section-office h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--c-dark);
  margin-bottom: 12px;
}

.contact-form-section-office p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.contact-map-section {
  padding: var(--sp-16) 0;
  background: var(--c-bg-alt);
}

.contact-map-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.contact-map-section-container .global-section-title {
  margin-bottom: var(--sp-8);
  text-align: center;
}

.contact-map-section-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-4);
  border: 1px solid var(--c-border);
}


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

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

.thanks-icon {
  font-size: 5rem;
  color: var(--c-secondary);
  margin-bottom: var(--sp-6);
  animation: bounceIn 0.6s var(--t-slow) both;
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--c-dark);
  margin-bottom: 16px;
}

.thanks-text {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.thanks-sub {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-8);
}

.thanks-sub a { color: var(--c-primary); font-weight: 600; }

.thanks-btn { margin-top: var(--sp-4); }


.legal-main {
  padding: var(--sp-8) 0 var(--sp-20);
}

.legal-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.legal-toc-mobile { display: none; }

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.legal-sidebar-inner {
  background: var(--c-white-tinted);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--c-border);
}

.legal-sidebar-inner h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-border);
}

.legal-toc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-toc-link {
  display: block;
  padding: 7px 10px;
  font-size: 0.83rem;
  color: var(--c-text-muted);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
  line-height: 1.4;
}

.legal-toc-link:hover,
.legal-toc-link.active {
  background: var(--c-primary-xlight);
  color: var(--c-primary-dark);
}

.legal-content {
  min-width: 0;
}

.legal-content-header {
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--c-border);
}

.legal-content-header h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--c-dark);
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  background: var(--c-primary-xlight);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-full);
  color: var(--c-primary-dark);
}

.legal-content-header p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-top: 12px;
}

.legal-content section {
  margin-bottom: var(--sp-10);
  padding-top: var(--sp-4);
}

.legal-content section h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--c-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-primary-xlight);
}

.legal-content section p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content section p:last-child { margin-bottom: 0; }

.legal-content section a { color: var(--c-primary); text-decoration: underline; }
.legal-content section a:hover { color: var(--c-primary-dark); }

.legal-content code {
  background: var(--c-primary-xlight);
  color: var(--c-primary-dark);
  font-size: 0.85em;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}


.legal-toc-mobile-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--c-white-tinted);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
  box-shadow: var(--shadow-1);
  justify-content: space-between;
}

.legal-toc-mobile-toggle i:first-child { color: var(--c-primary); }
.legal-toc-mobile-toggle i:last-child { transition: transform var(--t-base); }
.legal-toc-mobile-toggle[aria-expanded="true"] i:last-child { transform: rotate(180deg); }

.legal-toc-mobile-list {
  display: none;
  flex-direction: column;
  background: var(--c-white-tinted);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 8px;
  margin-bottom: var(--sp-6);
  box-shadow: var(--shadow-2);
}

.legal-toc-mobile-list.open { display: flex; }

.legal-toc-mobile-list a {
  padding: 9px 12px;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}

.legal-toc-mobile-list a:hover { background: var(--c-primary-xlight); color: var(--c-primary-dark); }


.dix-cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--c-dark);
  border-top: 1px solid color-mix(in oklch, white, transparent 80%);
  box-shadow: 0 -4px 32px color-mix(in oklch, var(--c-dark), transparent 50%);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.dix-cookie-bar.visible { transform: translateY(0); }

.dix-cookie-bar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: 16px 28px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.dix-cookie-bar-text {
  flex: 1;
  min-width: 260px;
}

.dix-cookie-bar-text p {
  font-size: 0.875rem;
  color: color-mix(in oklch, white, transparent 25%);
  line-height: 1.6;
}

.dix-cookie-bar-text a { color: var(--c-primary-light); text-decoration: underline; }

.dix-cookie-bar-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.dix-cookie-btn {
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--t-base);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.dix-cookie-btn-accept {
  background: var(--c-primary);
  color: white;
  border-color: var(--c-primary);
}

.dix-cookie-btn-accept:hover { background: var(--c-primary-dark); border-color: var(--c-primary-dark); }

.dix-cookie-btn-reject {
  background: transparent;
  color: color-mix(in oklch, white, transparent 25%);
  border-color: color-mix(in oklch, white, transparent 65%);
}

.dix-cookie-btn-reject:hover { border-color: white; color: white; }

.dix-cookie-btn-customize {
  background: transparent;
  color: color-mix(in oklch, white, transparent 40%);
  border-color: color-mix(in oklch, white, transparent 78%);
}

.dix-cookie-btn-customize:hover { color: white; border-color: color-mix(in oklch, white, transparent 55%); }

.dix-cookie-bar-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-top: 0px solid color-mix(in oklch, white, transparent 85%);
}

.dix-cookie-bar-expanded.open {
  max-height: 300px;
  padding: 16px 28px 20px;
  border-top-width: 1px;
}

.dix-cookie-categories {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.dix-cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: color-mix(in oklch, white, transparent 92%);
  border: 1px solid color-mix(in oklch, white, transparent 82%);
  border-radius: var(--r-md);
  padding: 12px 16px;
  flex: 1;
  min-width: 200px;
}

.dix-cookie-category-info { flex: 1; }

.dix-cookie-category-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 2px;
}

.dix-cookie-category-desc {
  font-size: 0.78rem;
  color: color-mix(in oklch, white, transparent 45%);
}

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

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

.dix-cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, white, transparent 70%);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--t-base);
}

.dix-cookie-toggle input:checked + .dix-cookie-toggle-track { background: var(--c-primary); }

.dix-cookie-toggle-track::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  top: 3px; left: 3px;
  transition: transform var(--t-base);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.dix-cookie-toggle input:checked + .dix-cookie-toggle-track::after {
  transform: translateX(20px);
}

.dix-cookie-toggle input:disabled + .dix-cookie-toggle-track {
  background: color-mix(in oklch, var(--c-primary), transparent 40%);
  cursor: not-allowed;
}

.dix-cookie-save-btn {
  margin-top: 14px;
  padding: 9px 24px;
  background: var(--c-secondary);
  color: white;
  border: none;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-base);
}

.dix-cookie-save-btn:hover { background: var(--c-secondary-dark); }



@media (max-width: 1024px) {
  .home-services-grid { grid-template-columns: repeat(2, 1fr); }
  .home-howitworks-steps { flex-direction: column; }
  .home-howitworks-step-connector { display: none; }
  .home-packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .home-packages-card--featured { transform: none; }
  .home-packages-card--featured:hover { transform: translateY(-6px); }

  .team-values-grid { grid-template-columns: 1fr; }
  .team-equipment-container,
  .team-hero-container,
  .team-area-container { grid-template-columns: 1fr; }

  .services-detail-container { grid-template-columns: 1fr; }
  .services-detail--reverse .services-detail-container { direction: ltr; }
  .services-packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .contact-form-section-container { grid-template-columns: 1fr; }
  .contact-form-section-right { position: static; }

  .home-visual-container { grid-template-columns: 1fr; }
  .home-about-container { grid-template-columns: 1fr; }

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

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  body.page-home { padding-top: 0; }
  body:not(.page-home) { padding-top: var(--header-h); }

  .global-mobile-tabs {
    display: flex;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }

  .home-hero-content {
    padding: var(--sp-16) var(--sp-4) var(--sp-4);
    margin: 0;
  }

  .home-hero-actions { flex-direction: column; }
  .home-hero-actions .global-btn { justify-content: center; }

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

  .home-howitworks-steps { gap: 16px; }

  .home-visual-images {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .home-visual-img-card--before { margin-top: 20px; }
  .home-visual-img-card--after { margin-bottom: 20px; }

  .home-journey-line { display: none; }

  .home-cta-band-container { flex-direction: column; text-align: center; }
  .home-cta-band-actions { justify-content: center; }

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

  .global-footer-inner { grid-template-columns: 1fr; gap: var(--sp-8); }

  .global-footer-bottom { flex-direction: column; text-align: center; }

  .home-packages-grid { max-width: 100%; }

  .team-area-map-card { flex-direction: column; }

  .dix-cookie-bar-main { flex-direction: column; align-items: flex-start; }
  .dix-cookie-bar-actions { width: 100%; justify-content: stretch; }
  .dix-cookie-btn { flex: 1; text-align: center; }
  .dix-cookie-categories { flex-direction: column; }

  .faq-cta-actions { flex-direction: column; align-items: center; }

  .home-hero-cards { padding: 0 var(--sp-4) var(--sp-6); }
}

@media (max-width: 480px) {
  .global-header-inner { padding: 12px 16px; }

  .home-hero-title { font-size: clamp(1.8rem, 8vw, 3rem); }

  .home-services-card { padding: var(--sp-6); }

  .legal-content-header h1 { font-size: 1.6rem; }

  .contact-form-section-form { padding: var(--sp-6); }

  .global-btn { padding: 11px 22px; }
}


.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;
}