/* ============================================================
   WEXADA WEXIDA — MAIN STYLESHEET
   ============================================================ */

:root {
  --primary: #2D6A4F;
  --primary-light: #52B788;
  --primary-dark: #1B4332;
  --secondary: #F4A261;
  --secondary-light: #FFDDD2;
  --accent: #E76F51;
  --bg-base: #F8FAF7;
  --bg-card: #FFFFFF;
  --text-dark: #1A2E1F;
  --text-mid: #3D5A47;
  --text-light: #6B8F71;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(45,106,79,0.08), 0 1px 3px rgba(45,106,79,0.05);
  --shadow-md: 0 8px 32px rgba(45,106,79,0.12), 0 2px 8px rgba(45,106,79,0.06);
  --shadow-lg: 0 20px 60px rgba(45,106,79,0.15), 0 8px 24px rgba(45,106,79,0.08);
  --shadow-xl: 0 32px 80px rgba(45,106,79,0.18), 0 12px 32px rgba(45,106,79,0.1);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --space-xs: clamp(8px, 1vw, 12px);
  --space-sm: clamp(16px, 2vw, 24px);
  --space-md: clamp(32px, 4vw, 48px);
  --space-lg: clamp(48px, 6vw, 80px);
  --space-xl: clamp(64px, 8vw, 120px);
}

/* ============================================================
   BASE
   ============================================================ */

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

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

body {
  font-family: 'Epilogue', sans-serif;
  background: var(--bg-base);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: var(--primary); transition: color 0.25s ease; }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

address { font-style: normal; }

/* ============================================================
   GLOBAL CONTAINER
   ============================================================ */

.global-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ============================================================
   GLOBAL HEADER / NAV
   ============================================================ */

.global-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.global-header.visible { transform: translateY(0); }

.global-header-inner {
  margin: 12px 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(82, 183, 136, 0.2);
  border-radius: var(--radius-lg);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,0.5) inset;
}

.global-header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.global-header-logo img { height: 36px; width: auto; }

.global-header-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.global-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.global-nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.global-nav-links a:hover {
  color: var(--primary);
  background: rgba(82, 183, 136, 0.1);
}

.global-nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
}

.global-nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}


.global-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  border-radius: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.global-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.global-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.global-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.global-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU — Diagonal clip-path wipe
   ============================================================ */

.global-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-mobile-menu.open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
}

.global-mobile-menu-inner { text-align: center; }

.global-mobile-nav-links { list-style: none; }

.global-mobile-nav-links li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.global-mobile-menu.open .global-mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.global-mobile-menu.open .global-mobile-nav-links li:nth-child(1) { transition-delay: 0.25s; }
.global-mobile-menu.open .global-mobile-nav-links li:nth-child(2) { transition-delay: 0.32s; }
.global-mobile-menu.open .global-mobile-nav-links li:nth-child(3) { transition-delay: 0.39s; }
.global-mobile-menu.open .global-mobile-nav-links li:nth-child(4) { transition-delay: 0.46s; }
.global-mobile-menu.open .global-mobile-nav-links li:nth-child(5) { transition-delay: 0.53s; }

.global-mobile-nav-links a {
  display: block;
  padding: 16px 32px;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.global-mobile-nav-links a:hover {
  color: var(--secondary);
  transform: translateX(8px);
}

/* ============================================================
   GLOBAL SECTION LABELS, TITLES, BUTTONS
   ============================================================ */

.global-section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(82, 183, 136, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.global-section-label--light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
}

.global-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.global-section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}

.global-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

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

.global-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.global-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.global-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary-dark);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

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

/* ============================================================
   HOME HERO
   ============================================================ */

.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 40%, #52B788 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 140px) 20px clamp(60px, 8vw, 100px);
}

.home-hero-blob1 {
  position: absolute;
  top: -10%; right: -5%;
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(circle, rgba(82,183,136,0.3) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.home-hero-blob2 {
  position: absolute;
  bottom: -15%; left: -8%;
  width: clamp(250px, 40vw, 500px);
  height: clamp(250px, 40vw, 500px);
  background: radial-gradient(circle, rgba(244,162,97,0.2) 0%, transparent 70%);
  border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
  animation: blobFloat 10s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -15px) rotate(5deg); }
  66% { transform: translate(-10px, 10px) rotate(-3deg); }
}

.home-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.home-hero-content { display: flex; flex-direction: column; gap: 24px; }

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  width: fit-content;
}

.home-hero-badge i { color: var(--secondary); font-size: 0.9rem; }

.home-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
}

.home-hero-highlight {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 480px;
}

.home-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.home-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--text-dark);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(244,162,97,0.4);
}

.home-hero-btn-primary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(231,111,81,0.5);
}

.home-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.home-hero-btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
  transform: translateY(-2px);
}


.home-hero-visual { position: relative; }

.home-hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

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

.home-hero-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(27,67,50,0.9) 0%, transparent 100%);
}

.home-hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--white);
}

.home-hero-card-badge i { font-size: 1.2rem; color: var(--secondary); }

.home-hero-card-badge strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-hero-card-badge span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
}


.home-wave-divider,
.home-wave-divider-green,
.home-wave-divider-after-green {
  line-height: 0;
  overflow: hidden;
}

.home-wave-divider { background: linear-gradient(135deg, #1B4332 0%, #52B788 100%); }
.home-wave-divider-green { background: var(--primary); }
.home-wave-divider-after-green { background: var(--primary); }

.home-wave-divider svg,
.home-wave-divider-green svg,
.home-wave-divider-after-green svg { display: block; width: 100%; }

/* ============================================================
   HOME FEATURES
   ============================================================ */

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

.home-features-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.home-feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(82,183,136,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.home-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50% 50% 50% 30%;
  background: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--icon-color);
  margin-bottom: 20px;
}

.home-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.home-feature-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   HOME SERVICES
   ============================================================ */

.home-services {
  padding: var(--space-xl) 0;
  background: var(--bg-base);
}

.home-services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.home-services-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-services-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.home-services-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

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

.home-services-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-md);
}

.home-services-img-secondary {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  grid-column: 1 / -1;
}

.home-services-img-main img,
.home-services-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-services-img-main:hover img,
.home-services-img-secondary:hover img { transform: scale(1.04); }

/* ============================================================
   HOME PROCESS
   ============================================================ */

.home-process {
  padding: var(--space-xl) 0;
  background: var(--bg-base);
}

.home-process-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.home-process-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
}

.home-process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
  flex-shrink: 0;
}

.home-process-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.home-process-content p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.home-process-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary));
  margin-top: 44px;
  border-radius: 2px;
  align-self: flex-start;
}

/* ============================================================
   HOME CTA BAND
   ============================================================ */

.home-cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.home-cta-band-blob {
  position: absolute;
  top: -30%; right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,162,97,0.2) 0%, transparent 70%);
  border-radius: 60% 40% 50% 50%;
  pointer-events: none;
}

.home-cta-band-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.home-cta-band-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.home-cta-band-content p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 480px;
}

/* ============================================================
   HOME GALLERY
   ============================================================ */

.home-gallery {
  padding: var(--space-xl) 0;
  background: var(--bg-base);
}

.home-gallery-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.home-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.home-gallery-item--large {
  grid-row: 1 / 3;
  aspect-ratio: unset;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-gallery-item:hover img { transform: scale(1.05); }

/* ============================================================
   HOME FAQ
   ============================================================ */

.home-faq {
  padding: var(--space-xl) 0;
  background: var(--bg-base);
}

.home-faq-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(82,183,136,0.12);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

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

.home-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Epilogue', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.25s ease;
  min-height: 44px;
}

.home-faq-question:hover { color: var(--primary); }
.home-faq-question[aria-expanded="true"] { color: var(--primary); }

.home-faq-icon {
  font-size: 0.8rem;
  color: var(--primary-light);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

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

.home-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   GLOBAL FOOTER
   ============================================================ */

.global-footer {
  margin-top: auto;
}

.global-footer-wave { line-height: 0; overflow: hidden; background: var(--bg-base); }
.global-footer-wave svg { display: block; width: 100%; }

.global-footer-body {
  background: var(--primary-dark);
  padding: var(--space-lg) 0 var(--space-md);
}

.global-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  margin-bottom: var(--space-md);
}

.global-footer-logo { height: 40px; width: auto; margin-bottom: 16px; }

.global-footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 20px;
}

.global-footer-brand address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.global-footer-brand address i { color: var(--primary-light); margin-top: 3px; flex-shrink: 0; }
.global-footer-brand address a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.25s; }
.global-footer-brand address a:hover { color: var(--white); }

.global-footer-links h4,
.global-footer-legal h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.global-footer-links ul,
.global-footer-legal ul { list-style: none; }

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

.global-footer-links a,
.global-footer-legal a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.global-footer-links a:hover,
.global-footer-legal a:hover { color: var(--white); }

.global-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.global-footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-hero {
  padding: clamp(140px, 14vw, 180px) 20px clamp(60px, 8vw, 100px);
  background: linear-gradient(160deg, #1B4332 0%, #2D6A4F 60%, #52B788 100%);
  position: relative;
  overflow: hidden;
}

.about-hero-blob {
  position: absolute;
  top: -20%; right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(82,183,136,0.2) 0%, transparent 70%);
  border-radius: 60% 40% 55% 45%;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.about-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.about-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

.about-hero-wave { line-height: 0; overflow: hidden; background: linear-gradient(160deg, #1B4332 0%, #52B788 100%); }
.about-hero-wave svg { display: block; width: 100%; }

.about-story {
  padding: var(--space-xl) 0;
  background: var(--bg-base);
}

.about-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.about-story-image-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50% 50% 50% 20%;
  opacity: 0.6;
  pointer-events: none;
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-story-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-story-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
}

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

.about-values-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.about-value-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid transparent;
}

.about-value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.about-value-card--accent1 { border-top-color: var(--primary); }
.about-value-card--accent2 { border-top-color: var(--secondary); }
.about-value-card--accent3 { border-top-color: var(--primary-light); }
.about-value-card--accent4 { border-top-color: var(--accent); }

.about-value-card i {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 16px;
  display: block;
}

.about-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.about-value-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.about-approach {
  padding: var(--space-xl) 0;
  background: var(--bg-base);
}

.about-approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-approach-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-approach-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-approach-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.about-approach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-tag {
  background: rgba(82,183,136,0.12);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(82,183,136,0.2);
}

.about-approach-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.about-approach-image img { width: 100%; height: 100%; object-fit: cover; }

.about-cta { padding: var(--space-xl) 0; }

.about-cta-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-cta-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(82,183,136,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-cta-card h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.about-cta-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
}

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

/* ============================================================
   PROCESS PAGE
   ============================================================ */

.process-hero {
  padding: clamp(140px, 14vw, 180px) 20px clamp(60px, 8vw, 100px);
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #52B788 100%);
  position: relative;
  overflow: hidden;
}

.process-hero-blob {
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244,162,97,0.15) 0%, transparent 70%);
  border-radius: 40% 60% 30% 70%;
  pointer-events: none;
}

.process-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.process-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.process-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

.process-hero-wave { line-height: 0; overflow: hidden; background: linear-gradient(135deg, #1B4332 0%, #52B788 100%); }
.process-hero-wave svg { display: block; width: 100%; }

.process-timeline {
  padding: var(--space-xl) 0;
  background: var(--bg-base);
}

.process-timeline-intro {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.process-timeline-intro p {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.process-timeline-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: stretch;
}

.process-timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-timeline-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
  flex-shrink: 0;
  z-index: 1;
}

.process-timeline-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), rgba(82,183,136,0.2));
  margin: 8px 0;
}

.process-timeline-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(82,183,136,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-timeline-icon {
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 20%;
  background: rgba(45,106,79,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}

.process-timeline-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.process-timeline-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.process-timeline-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(82,183,136,0.08);
  border-left: 3px solid var(--primary-light);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.process-timeline-note i { color: var(--primary-light); margin-top: 2px; flex-shrink: 0; }

.process-materials {
  padding: var(--space-xl) 0;
  background: var(--bg-base);
}

.process-materials-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.process-material-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  border: 1px solid rgba(82,183,136,0.08);
}

.process-material-item:hover { transform: translateY(-4px); }

.process-material-item i {
  font-size: 1.8rem;
  color: var(--primary-light);
  margin-bottom: 14px;
  display: block;
}

.process-material-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.process-material-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.process-cta { padding: var(--space-xl) 0; }

.process-cta-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
}

.process-cta-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.process-cta-image img { width: 100%; height: 100%; object-fit: cover; }

.process-cta-text {
  padding: clamp(36px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.process-cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.process-cta-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   EXPERIENCES PAGE
   ============================================================ */

.exp-hero {
  padding: clamp(140px, 14vw, 180px) 20px clamp(60px, 8vw, 100px);
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #52B788 100%);
  position: relative;
  overflow: hidden;
}

.exp-hero-blob {
  position: absolute;
  top: -15%; right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(82,183,136,0.2) 0%, transparent 70%);
  border-radius: 55% 45% 60% 40%;
  pointer-events: none;
}

.exp-hero-content { position: relative; z-index: 1; max-width: 700px; }

.exp-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.exp-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

.exp-hero-wave { line-height: 0; overflow: hidden; background: linear-gradient(135deg, #1B4332 0%, #52B788 100%); }
.exp-hero-wave svg { display: block; width: 100%; }

.exp-scenarios { padding: var(--space-xl) 0; background: var(--bg-base); }

.exp-scenarios-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.exp-scenarios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.exp-scenario-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-scenario-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.exp-scenario-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.exp-scenario-card--featured .exp-scenario-image { aspect-ratio: unset; }

.exp-scenario-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.exp-scenario-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.exp-scenario-card:hover .exp-scenario-image img { transform: scale(1.04); }

.exp-scenario-body { padding: clamp(20px, 3vw, 32px); }

.exp-scenario-tag {
  display: inline-block;
  background: rgba(82,183,136,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.exp-scenario-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.exp-scenario-body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 10px;
}

.exp-what-to-expect { padding: var(--space-xl) 0; background: var(--bg-base); }

.exp-expect-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.exp-expect-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-expect-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.exp-expect-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.exp-expect-checklist {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-md);
}

.exp-expect-checklist h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(82,183,136,0.15);
}

.exp-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.exp-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.exp-checklist i { color: var(--primary-light); font-size: 1rem; flex-shrink: 0; }

.exp-differentiators { padding: var(--space-xl) 0; background: var(--bg-base); }

.exp-diff-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.exp-diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.exp-diff-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-light);
}

.exp-diff-card:hover { transform: translateY(-4px); }

.exp-diff-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(231,111,81,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
  font-size: 1rem;
}

.exp-diff-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.exp-diff-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.exp-cta { padding: var(--space-xl) 0; }

.exp-cta-inner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

.exp-cta-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.exp-cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
}

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-form-section {
  padding: clamp(120px, 14vw, 160px) 0 var(--space-xl);
  background: var(--bg-base);
}

.contact-form-section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.contact-form-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.contact-form-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.contact-form-section-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}

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

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(82,183,136,0.1);
  transition: transform 0.3s ease;
}

.contact-info-card:hover { transform: translateX(4px); }

.contact-info-card > i {
  font-size: 1.2rem;
  color: var(--primary-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-info-card a {
  color: var(--text-dark);
  text-decoration: none;
}

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

.contact-trust-quote {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-top: 8px;
}

.contact-trust-quote blockquote p {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 12px;
}

.contact-trust-quote cite {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(82,183,136,0.1);
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-group label span { color: var(--accent); }

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(82,183,136,0.2);
  border-radius: var(--radius-sm);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-base);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  min-height: 44px;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
}

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

.contact-form-privacy {
  margin-bottom: 24px;
}

.contact-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

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

.contact-privacy-label a { color: var(--primary); }

.contact-form-error {
  color: var(--accent);
  font-size: 0.88rem;
  margin-bottom: 12px;
  min-height: 20px;
}

.contact-form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Epilogue', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.contact-form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-map-section { padding: var(--space-xl) 0; background: var(--bg-base); }

.contact-map-wrapper h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contact-map-iframe {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */

.thanks-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 20px;
}

.thanks-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--secondary);
  animation: iconPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.thanks-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.thanks-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 480px;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.thanks-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-main { padding: clamp(100px, 12vw, 140px) 0 var(--space-xl); }

.legal-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid rgba(82,183,136,0.15);
}

.legal-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-date-marker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82,183,136,0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

.legal-entity {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}


.legal-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.legal-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), rgba(82,183,136,0.1));
}

.legal-timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 28px;
  margin-bottom: 40px;
  align-items: start;
}

.legal-timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 3px solid var(--bg-base);
  box-shadow: 0 0 0 2px var(--primary-light);
  margin-top: 6px;
  flex-shrink: 0;
}

.legal-timeline-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.legal-timeline-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-timeline-content ul {
  list-style: none;
  margin: 12px 0;
}

.legal-timeline-content ul li {
  font-size: 0.92rem;
  color: var(--text-mid);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}

.legal-timeline-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

.legal-timeline-content address p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}


.legal-main--terms { padding: clamp(100px, 12vw, 140px) 0 var(--space-xl); }

.legal-header--terms {
  position: relative;
  padding: clamp(40px, 5vw, 60px) clamp(32px, 4vw, 48px);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-lg);
  overflow: hidden;
}

.legal-header-accent {
  position: absolute;
  top: -30%; right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(82,183,136,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.legal-header--terms .legal-title { color: var(--white); }
.legal-header--terms .legal-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
}

.legal-meta--terms {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.legal-meta--terms strong { color: rgba(255,255,255,0.9); }

.legal-terms-sections { max-width: 800px; margin: 0 auto; }

.legal-terms-section {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(82,183,136,0.08);
}

.legal-terms-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.legal-terms-section p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-terms-section ul { list-style: none; margin: 12px 0; }

.legal-terms-section ul li {
  font-size: 0.92rem;
  color: var(--text-mid);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.6;
}

.legal-terms-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}


.legal-main--cookies { padding: clamp(100px, 12vw, 140px) 0 var(--space-xl); }

.cookies-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cookies-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,162,97,0.15);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cookies-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cookies-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 12px;
}

.cookies-date {
  font-size: 0.88rem;
  color: var(--text-light);
}

.cookies-cards {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookies-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(82,183,136,0.08);
}

.cookies-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 50% 20%;
  background: rgba(45,106,79,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.cookies-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cookies-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.cookies-table {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(82,183,136,0.12);
  margin-top: 16px;
}

.cookies-table-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
}

.cookies-table-header {
  background: rgba(82,183,136,0.08);
}

.cookies-table-row span {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-mid);
border-right: 1px solid rgba(82,183,136,0.1);
}

.cookies-table-row span:last-child { border-right: none; }

.cookies-table-header span {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookies-table-row:not(.cookies-table-header) {
  border-top: 1px solid rgba(82,183,136,0.08);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */

.wwi-consent-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(480px, calc(100vw - 32px));
  font-family: 'Epilogue', sans-serif;
}

.wwi-consent-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(82, 183, 136, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(27,67,50,0.18), 0 4px 16px rgba(27,67,50,0.1), 0 0 0 1px rgba(255,255,255,0.6) inset;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwi-consent-card.expanded {
  padding: 28px 28px;
}

.wwi-consent-compact { display: block; }
.wwi-consent-expanded { display: none; }
.wwi-consent-card.expanded .wwi-consent-compact { display: none; }
.wwi-consent-card.expanded .wwi-consent-expanded { display: block; }

.wwi-consent-compact-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wwi-consent-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.wwi-consent-text {
  flex: 1;
  min-width: 200px;
}

.wwi-consent-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
}

.wwi-consent-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.82rem;
}

.wwi-consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.wwi-btn-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 44px;
}

.wwi-btn-accept:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.wwi-btn-settings {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid rgba(82,183,136,0.3);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 44px;
}

.wwi-btn-settings:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}


.wwi-consent-expanded-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.wwi-consent-expanded-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.wwi-btn-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 1rem;
  padding: 4px;
  transition: color 0.25s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wwi-btn-close:hover { color: var(--text-dark); }

.wwi-consent-expanded p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 16px;
}

.wwi-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(82,183,136,0.1);
}

.wwi-category:last-of-type { border-bottom: none; }

.wwi-category-info { flex: 1; }

.wwi-category-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.wwi-category-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

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

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

.wwi-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(82,183,136,0.2);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.wwi-toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.wwi-toggle input:checked + .wwi-toggle-slider {
  background: var(--primary);
}

.wwi-toggle input:checked + .wwi-toggle-slider::before {
  transform: translateX(20px);
}

.wwi-toggle input:disabled + .wwi-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.wwi-consent-save-row {
  margin-top: 16px;
  display: flex;
  gap: 8px;
}

.wwi-btn-save {
  flex: 1;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 44px;
}

.wwi-btn-save:hover { background: var(--primary-dark); }

.wwi-btn-accept-all {
  flex: 1;
  background: var(--secondary);
  color: var(--text-dark);
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 44px;
}

.wwi-btn-accept-all:hover {
  background: var(--accent);
  color: var(--white);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  .home-hero-container {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .home-hero-visual { display: none; }

  .home-hero-content { align-items: flex-start; }

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

  .home-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .home-gallery-item--large {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16/9;
  }

  .about-story-layout { grid-template-columns: 1fr; }
  .about-approach-layout { grid-template-columns: 1fr; }

  .process-cta-card { grid-template-columns: 1fr; }
  .process-cta-image { aspect-ratio: 16/7; }

  .exp-scenarios-grid { grid-template-columns: 1fr; }
  .exp-scenario-card--featured { grid-template-columns: 1fr; }
  .exp-expect-layout { grid-template-columns: 1fr; }

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

  .global-footer-grid { grid-template-columns: 1fr 1fr; }
  .global-footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .global-nav-links { display: none; }
  .global-hamburger { display: flex; }

  .home-process-steps { flex-direction: column; align-items: center; }
  .home-process-connector { width: 2px; height: 30px; flex: 0 0 30px; margin: 0; align-self: center; }
  .home-process-step { max-width: 100%; width: 100%; }

  .home-gallery-grid { grid-template-columns: 1fr; }
  .home-gallery-item--large { aspect-ratio: 16/9; }

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

  .legal-timeline::before { display: none; }
  .legal-timeline-item { grid-template-columns: 1fr; }
  .legal-timeline-dot { display: none; }

  .about-story-image-accent { display: none; }

  .cookies-table-row {
    grid-template-columns: 1fr;
  }

  .cookies-table-row span {
    border-right: none;
    border-bottom: 1px solid rgba(82,183,136,0.1);
    padding: 8px 12px;
  }

  .cookies-table-row span:last-child { border-bottom: none; }
  .cookies-table-header { display: none; }

  .wwi-consent-compact-inner { flex-direction: column; align-items: flex-start; }
  .wwi-consent-actions { width: 100%; }
  .wwi-btn-accept, .wwi-btn-settings { flex: 1; }

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

  .home-hero-actions { flex-direction: column; }
  .home-hero-btn-primary, .home-hero-btn-secondary { width: 100%; justify-content: center; }

  .about-cta-actions { flex-direction: column; width: 100%; }
  .about-cta-actions a { width: 100%; justify-content: center; }

  .exp-cta-actions { flex-direction: column; width: 100%; }
  .exp-cta-actions a { width: 100%; justify-content: center; }

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

  .process-timeline-step { grid-template-columns: 1fr; }
  .process-timeline-marker { flex-direction: row; }
  .process-timeline-line { display: none; }
}

@media (max-width: 480px) {
  .home-hero-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .global-section-title { font-size: clamp(1.5rem, 7vw, 2rem); }

  .home-features-grid { grid-template-columns: 1fr; }
  .process-materials-grid { grid-template-columns: 1fr; }

  .contact-form-wrapper { padding: 24px 20px; }
  .about-cta-card { padding: 36px 24px; }
  .exp-cta-inner { padding: 36px 24px; }

  .wwi-consent-container { bottom: 12px; }
}

/* ============================================================
   ATROPOS OVERRIDES
   ============================================================ */

.atropos { display: block; width: 100%; }
.atropos-scale, .atropos-rotate { border-radius: var(--radius-lg); }
.atropos-inner { border-radius: var(--radius-lg); overflow: hidden; }

/* ============================================================
   UTILITY / ANIMATION
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }


.iti { width: 100%; }
#phone { width: 100%; }

.iti__flag-container + input {
  padding-left: 52px !important;
}