:root {
  --clr-bg: #f4f5f7;
  --clr-bg-alt: #eef0f4;
  --clr-surface: #ffffff;
  --clr-dark: #0d1117;
  --clr-dark-2: #1a2233;
  --clr-dark-3: #243049;
  --clr-primary: #1a6bff;
  --clr-primary-dark: #0f4fcc;
  --clr-secondary: #00c9b1;
  --clr-accent: #ff7a2f;
  --clr-text: #1e2a3a;
  --clr-text-muted: #5a6a80;
  --clr-text-light: #f0f4ff;
  --clr-border: #dde3ef;

  --shadow-sm: 0 1px 3px rgba(13,17,23,0.08), 0 1px 2px rgba(13,17,23,0.06);
  --shadow-md: 0 4px 12px rgba(13,17,23,0.10), 0 2px 4px rgba(13,17,23,0.06);
  --shadow-lg: 0 10px 30px rgba(13,17,23,0.12), 0 4px 8px rgba(13,17,23,0.08);
  --shadow-xl: 0 20px 50px rgba(13,17,23,0.16), 0 8px 16px rgba(13,17,23,0.10);
  --shadow-primary: 0 8px 24px rgba(26,107,255,0.28), 0 2px 6px rgba(26,107,255,0.16);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-dark);
}

a { color: var(--clr-primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--clr-primary-dark); }

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

ul { list-style: none; }


.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(244,245,247,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-nav.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(244,245,247,0.98);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img { width: 36px; height: 36px; }
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--clr-dark);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 3px;
  background: var(--clr-primary);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--clr-dark); background: var(--clr-bg-alt); }
.nav-link.active { color: var(--clr-primary); }
.nav-link.active::after { transform: scaleX(1); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-burger:hover { background: var(--clr-bg-alt); }
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,17,23,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.active { display: block; opacity: 1; }


.iso-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.iso-shape {
  position: absolute;
  transform-style: preserve-3d;
}
.iso-shape-1 {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, rgba(26,107,255,0.18), rgba(26,107,255,0.04));
  border: 1px solid rgba(26,107,255,0.2);
  border-radius: var(--radius-md);
  top: 8%; right: 12%;
  transform: rotate(15deg) skewX(-10deg) skewY(5deg);
  animation: isoFloat1 8s ease-in-out infinite;
}
.iso-shape-2 {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, rgba(0,201,177,0.18), rgba(0,201,177,0.04));
  border: 1px solid rgba(0,201,177,0.22);
  border-radius: var(--radius-sm);
  top: 55%; right: 6%;
  transform: rotate(-20deg) skewX(8deg) skewY(-5deg);
  animation: isoFloat2 10s ease-in-out infinite;
}
.iso-shape-3 {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, rgba(255,122,47,0.16), rgba(255,122,47,0.04));
  border: 1px solid rgba(255,122,47,0.2);
  border-radius: var(--radius-sm);
  top: 20%; right: 28%;
  transform: rotate(30deg) skewX(-15deg);
  animation: isoFloat3 6s ease-in-out infinite;
}
.iso-shape-4 {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(26,107,255,0.12), transparent);
  border: 1px solid rgba(26,107,255,0.15);
  border-radius: 50%;
  top: 75%; right: 22%;
  animation: isoFloat1 12s ease-in-out infinite reverse;
}
.iso-shape-5 {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, rgba(0,201,177,0.08), transparent);
  border: 1px solid rgba(0,201,177,0.1);
  border-radius: 50%;
  top: -5%; right: -3%;
  animation: isoFloat2 14s ease-in-out infinite;
}

.iso-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,107,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateX(8deg);
  transform-origin: top;
}

@keyframes isoFloat1 {
  0%, 100% { transform: rotate(15deg) skewX(-10deg) skewY(5deg) translateY(0); }
  50% { transform: rotate(15deg) skewX(-10deg) skewY(5deg) translateY(-16px); }
}
@keyframes isoFloat2 {
  0%, 100% { transform: rotate(-20deg) skewX(8deg) skewY(-5deg) translateY(0); }
  50% { transform: rotate(-20deg) skewX(8deg) skewY(-5deg) translateY(12px); }
}
@keyframes isoFloat3 {
  0%, 100% { transform: rotate(30deg) skewX(-15deg) translateY(0); }
  50% { transform: rotate(30deg) skewX(-15deg) translateY(-10px); }
}


.iso-mini {
  position: absolute;
  top: -12px; left: -12px;
  width: 40px; height: 40px;
  border-radius: 6px;
  transform: rotate(20deg) skewX(-8deg);
  z-index: 0;
}
.iso-mini-blue { background: linear-gradient(135deg, rgba(26,107,255,0.2), rgba(26,107,255,0.05)); border: 1px solid rgba(26,107,255,0.25); }
.iso-mini-teal { background: linear-gradient(135deg, rgba(0,201,177,0.2), rgba(0,201,177,0.05)); border: 1px solid rgba(0,201,177,0.25); }
.iso-mini-orange { background: linear-gradient(135deg, rgba(255,122,47,0.2), rgba(255,122,47,0.05)); border: 1px solid rgba(255,122,47,0.25); }


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--clr-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,107,255,0.36), 0 4px 8px rgba(26,107,255,0.2);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-large { padding: 18px 36px; font-size: 1.05rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 27px;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-primary);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.btn-ghost:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 27px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(240,244,255,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.btn-ghost-dark:hover {
  background: rgba(240,244,255,0.1);
  border-color: rgba(240,244,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  background: var(--clr-primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary-sm:hover { background: var(--clr-primary-dark); color: #fff; transform: translateY(-1px); }


.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-header-light { text-align: center; margin-bottom: var(--space-xl); }
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(26,107,255,0.08);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}
.section-label-light {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  background: rgba(0,201,177,0.15);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: var(--space-sm);
}
.section-title-light {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}


.hero-section {
  min-height: 100vh;
  background: var(--clr-dark-2);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px var(--space-md) var(--space-xl);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,177,0.15);
  border: 1px solid rgba(0,201,177,0.3);
  color: var(--clr-secondary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--clr-text-light);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.hero-accent {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(240,244,255,0.75);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.hero-chips {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,244,255,0.08);
  border: 1px solid rgba(240,244,255,0.15);
  color: rgba(240,244,255,0.8);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.chip i { color: var(--clr-secondary); font-size: 0.75rem; }

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-img-iso-frame {
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(26,107,255,0.25);
  border-radius: calc(var(--radius-xl) + 8px);
  transform: rotate(2deg) skewX(-1deg);
  pointer-events: none;
}


.accept-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}
.accept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.accept-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.accept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.accept-icon-wrap {
  position: relative;
  width: 52px; height: 52px;
  margin-bottom: var(--space-md);
}
.accept-icon {
  font-size: 1.5rem;
  color: var(--clr-primary);
  position: relative;
  z-index: 1;
  line-height: 52px;
}
.accept-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-dark);
}
.accept-card p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}
.accept-card-alt {
  background: linear-gradient(135deg, var(--clr-dark-2), var(--clr-dark-3));
  border-color: transparent;
  display: flex;
  align-items: center;
}
.accept-card-alt-inner h3 { color: var(--clr-text-light); margin-bottom: 10px; }
.accept-card-alt-inner p { color: rgba(240,244,255,0.7); margin-bottom: var(--space-md); }


.how-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }

.feature-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.feature-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.feature-iso-deco {
  position: absolute;
  border-radius: var(--radius-md);
  pointer-events: none;
}
.feature-iso-deco-1 {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(26,107,255,0.2), rgba(26,107,255,0.05));
  border: 1px solid rgba(26,107,255,0.25);
  top: -20px; right: -20px;
  transform: rotate(20deg) skewX(-8deg);
}
.feature-iso-deco-2 {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(0,201,177,0.2), rgba(0,201,177,0.05));
  border: 1px solid rgba(0,201,177,0.25);
  bottom: -15px; left: -15px;
  transform: rotate(-15deg) skewY(8deg);
}
.feature-iso-deco-3 {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(255,122,47,0.2), rgba(255,122,47,0.05));
  border: 1px solid rgba(255,122,47,0.25);
  top: -20px; right: -20px;
  transform: rotate(25deg) skewX(-10deg);
}
.feature-iso-deco-4 {
  width: 55px; height: 55px;
  background: linear-gradient(135deg, rgba(26,107,255,0.15), rgba(26,107,255,0.03));
  border: 1px solid rgba(26,107,255,0.2);
  bottom: -15px; left: -15px;
  transform: rotate(-20deg) skewY(10deg);
}

.feature-content { padding: var(--space-md); }
.feature-step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: rgba(26,107,255,0.12);
  line-height: 1;
  margin-bottom: 4px;
}
.feature-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: var(--space-md);
}
.feature-desc {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}


.timeline-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-dark-2);
  position: relative;
  overflow: hidden;
}
.iso-bg-light .iso-tl-1 {
  width: 300px; height: 300px;
  background: linear-gradient(135deg, rgba(26,107,255,0.08), transparent);
  border: 1px solid rgba(26,107,255,0.1);
  border-radius: 50%;
  top: -100px; left: -80px;
}
.iso-bg-light .iso-tl-2 {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, rgba(0,201,177,0.08), transparent);
  border: 1px solid rgba(0,201,177,0.1);
  border-radius: var(--radius-lg);
  bottom: -60px; right: 10%;
  transform: rotate(30deg) skewX(-10deg);
}

.timeline {
  position: relative;
  padding-top: var(--space-md);
}
.timeline-line {
  position: absolute;
  top: 40px;
  left: calc(50% - 1px);
  width: 2px;
  height: calc(100% - 40px);
  background: linear-gradient(to bottom, var(--clr-primary), rgba(26,107,255,0.1));
}
.timeline-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-md);
  align-items: start;
  position: relative;
}
.timeline-item:nth-child(odd) .timeline-card { grid-column: 1; text-align: right; }
.timeline-item:nth-child(even) .timeline-card { grid-column: 3; text-align: left; }
.timeline-item:nth-child(odd) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(odd) { }
.timeline-item:nth-child(even) .timeline-card { order: 2; }

.timeline-dot {
  width: 20px; height: 20px;
  background: var(--clr-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(26,107,255,0.2), 0 0 0 8px rgba(26,107,255,0.08);
  flex-shrink: 0;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.timeline-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s ease;
}
.timeline-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.timeline-year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--clr-secondary);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}
.timeline-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: 8px;
}
.timeline-card p {
  font-size: 0.9rem;
  color: rgba(240,244,255,0.65);
  line-height: 1.65;
}


.eco-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}
.eco-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.eco-content p {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.eco-visual {
  position: relative;
}
.eco-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.eco-iso-frame {
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(0,201,177,0.25);
  border-radius: calc(var(--radius-xl) + 8px);
  transform: rotate(-2deg) skewX(1deg);
  pointer-events: none;
}
.eco-badge-wrap {
  position: absolute;
  bottom: -16px;
  left: -16px;
}
.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-secondary);
  color: var(--clr-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}


.carousel-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);
}
.carousel-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.carousel-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.carousel-card-body {
  padding: var(--space-md);
}
.carousel-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--clr-dark);
}
.carousel-card-body p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.splide__pagination__page.is-active { background: var(--clr-primary); }
.splide__arrow { background: var(--clr-surface); box-shadow: var(--shadow-md); }
.splide__arrow svg { fill: var(--clr-primary); }


.cta-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-dark-3);
  position: relative;
  overflow: hidden;
}
.cta-iso-bg { position: absolute; inset: 0; pointer-events: none; }
.iso-cta-1 {
  width: 250px; height: 250px;
  background: linear-gradient(135deg, rgba(26,107,255,0.15), transparent);
  border: 1px solid rgba(26,107,255,0.12);
  border-radius: 50%;
  top: -80px; left: -60px;
}
.iso-cta-2 {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, rgba(0,201,177,0.12), transparent);
  border: 1px solid rgba(0,201,177,0.1);
  border-radius: var(--radius-lg);
  bottom: -50px; right: 8%;
  transform: rotate(25deg) skewX(-8deg);
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(240,244,255,0.7);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


.site-footer {
  background: var(--clr-dark);
  padding: var(--space-xl) 0 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: var(--space-xl);
}
.footer-logo { width: 40px; height: 40px; margin-bottom: var(--space-sm); }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(240,244,255,0.5);
  line-height: 1.65;
  max-width: 260px;
}
.footer-nav h5, .footer-contact h5, .footer-legal h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,244,255,0.4);
  margin-bottom: var(--space-md);
}
.footer-nav ul li, .footer-legal ul li { margin-bottom: 10px; }
.footer-nav a, .footer-legal a {
  font-size: 0.9rem;
  color: rgba(240,244,255,0.65);
  transition: color 0.2s ease;
}
.footer-nav a:hover, .footer-legal a:hover { color: var(--clr-text-light); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(240,244,255,0.65);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact i { color: var(--clr-primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(240,244,255,0.65); }
.footer-contact a:hover { color: var(--clr-text-light); }
.footer-bottom {
  border-top: 1px solid rgba(240,244,255,0.08);
  padding: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}
.footer-bottom p { font-size: 0.82rem; color: rgba(240,244,255,0.35); }


.page-hero {
  min-height: 50vh;
  background: var(--clr-dark-2);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px var(--space-md) var(--space-xl);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(240,244,255,0.7);
  max-width: 580px;
  line-height: 1.75;
}


.team-intro-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}
.team-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.team-intro-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: var(--space-md);
}
.team-intro-text p {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.team-intro-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.roles-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.role-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.role-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.role-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(26,107,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.role-icon { font-size: 1.4rem; color: var(--clr-primary); }
.role-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.role-card p { font-size: 0.95rem; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 8px; }

.work-process-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}
.work-process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.work-process-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.work-iso-deco {
  position: absolute;
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(255,122,47,0.2), rgba(255,122,47,0.05));
  border: 1px solid rgba(255,122,47,0.25);
  border-radius: var(--radius-sm);
  top: -20px; right: -20px;
  transform: rotate(22deg) skewX(-8deg);
}
.work-process-visual { position: relative; }
.work-process-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: var(--space-md); }
.work-process-content p { color: var(--clr-text-muted); line-height: 1.75; margin-bottom: var(--space-md); }

.values-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.value-item {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.value-item:hover { transform: translateY(-4px); }
.value-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: rgba(26,107,255,0.15);
  margin-bottom: 8px;
}
.value-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.value-item p { font-size: 0.95rem; color: var(--clr-text-muted); line-height: 1.65; }


.pricing-intro-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}
.pricing-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.pricing-intro-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: var(--space-md); }
.pricing-intro-text p { color: var(--clr-text-muted); line-height: 1.75; margin-bottom: var(--space-md); }
.pricing-intro-factors {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}
.pricing-intro-factors h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: var(--space-md); }
.factors-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--clr-border);
}
.factors-list li:last-child { border-bottom: none; }
.factors-list i { color: var(--clr-secondary); font-size: 0.8rem; }

.categories-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);
}
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.category-card {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.category-card-parts { border-top: 4px solid var(--clr-primary); }
.category-card-restore { border-top: 4px solid var(--clr-secondary); }
.category-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.category-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(26,107,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.category-card-restore .category-icon-wrap { background: rgba(0,201,177,0.08); color: var(--clr-secondary); }
.category-header h3 { font-size: 1.3rem; font-weight: 800; }
.category-card p { color: var(--clr-text-muted); line-height: 1.7; margin-bottom: var(--space-md); }
.category-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-examples span {
  background: rgba(26,107,255,0.07);
  color: var(--clr-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(26,107,255,0.15);
}
.category-card-restore .category-examples span {
  background: rgba(0,201,177,0.07);
  color: var(--clr-secondary);
  border-color: rgba(0,201,177,0.15);
}

.payment-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}
.payment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.payment-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: var(--space-md); }
.payment-content p { color: var(--clr-text-muted); line-height: 1.75; margin-bottom: var(--space-md); }
.payment-methods { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }
.payment-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}
.payment-method i { font-size: 1.5rem; color: var(--clr-primary); flex-shrink: 0; margin-top: 2px; }
.payment-method h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.payment-method p { font-size: 0.9rem; color: var(--clr-text-muted); }
.payment-visual { display: flex; justify-content: center; align-items: center; }
.payment-iso-block {
  position: relative;
  width: 280px; height: 280px;
}
.iso-mini-lg {
  position: absolute;
  border-radius: var(--radius-md);
}
.iso-mini-lg-blue {
  width: 140px; height: 140px;
  background: linear-gradient(135deg, rgba(26,107,255,0.15), rgba(26,107,255,0.04));
  border: 2px solid rgba(26,107,255,0.2);
  top: 0; left: 0;
  transform: rotate(15deg) skewX(-8deg);
  animation: isoFloat1 8s ease-in-out infinite;
}
.iso-mini-lg-teal {
  width: 110px; height: 110px;
  background: linear-gradient(135deg, rgba(0,201,177,0.15), rgba(0,201,177,0.04));
  border: 2px solid rgba(0,201,177,0.2);
  bottom: 20px; right: 0;
  transform: rotate(-20deg) skewY(8deg);
  animation: isoFloat2 10s ease-in-out infinite;
}
.iso-mini-lg-orange {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(255,122,47,0.15), rgba(255,122,47,0.04));
  border: 2px solid rgba(255,122,47,0.2);
  bottom: 0; left: 40px;
  transform: rotate(30deg) skewX(-12deg);
  animation: isoFloat3 6s ease-in-out infinite;
}

.pickup-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);
}
.pickup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.pickup-item {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: transform 0.3s ease;
}
.pickup-item:hover { transform: translateY(-4px); }
.pickup-icon {
  width: 56px; height: 56px;
  background: rgba(26,107,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-primary);
  margin: 0 auto var(--space-md);
}
.pickup-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.pickup-item p { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.6; }

.faq-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-dark);
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--clr-primary); }
.faq-question i {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--clr-primary);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: var(--space-md); }
.faq-answer p { font-size: 0.95rem; color: var(--clr-text-muted); line-height: 1.7; }


.guarantee-intro-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}
.guarantee-intro {
  max-width: 760px;
}
.guarantee-intro h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: var(--space-md); }
.guarantee-intro p { color: var(--clr-text-muted); line-height: 1.75; margin-bottom: var(--space-md); }

.guarantees-section {
  padding: 0 0 var(--space-3xl);
  background: var(--clr-bg);
}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.guarantee-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.guarantee-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.guarantee-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(26,107,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.guarantee-icon { font-size: 1.4rem; color: var(--clr-primary); }
.guarantee-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.guarantee-card p { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.7; margin-bottom: 8px; }

.not-guarantee-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);
}
.not-guarantee-inner { max-width: 800px; }
.not-guarantee-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: var(--space-md); }
.not-guarantee-content > p { color: var(--clr-text-muted); margin-bottom: var(--space-lg); }
.not-guarantee-list { display: flex; flex-direction: column; gap: var(--space-md); }
.not-guarantee-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.not-guarantee-item i {
  width: 28px; height: 28px;
  background: rgba(255,90,90,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #e05050;
  flex-shrink: 0;
  margin-top: 2px;
}
.not-guarantee-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.not-guarantee-item p { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.65; }


.contact-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: var(--space-lg); }
.contact-info-items { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-lg); }
.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(26,107,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-text-muted); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.95rem; color: var(--clr-text); line-height: 1.5; }
.contact-info-item a { color: var(--clr-primary); }
.contact-note {
  display: flex;
  gap: var(--space-sm);
  background: rgba(26,107,255,0.06);
  border: 1px solid rgba(26,107,255,0.15);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  align-items: flex-start;
}
.contact-note i { color: var(--clr-primary); flex-shrink: 0; margin-top: 3px; }
.contact-note p { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.65; }

.contact-form-wrap {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}
.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: var(--space-lg); }
.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--clr-text);
}
.required-mark { color: var(--clr-primary); }
.form-group input, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(26,107,255,0.1);
  background: var(--clr-surface);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-primary);
  cursor: pointer;
}
.form-checkbox label { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.55; cursor: pointer; }
.form-checkbox label a { color: var(--clr-primary); }
.form-error {
  background: rgba(220,50,50,0.08);
  border: 1px solid rgba(220,50,50,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  color: #c03030;
}
.btn-form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.map-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);
}
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}


.legal-hero {
  background: var(--clr-dark-2);
  padding: 120px var(--space-md) var(--space-xl);
}
.legal-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}
.legal-hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
}
.legal-date {
  font-size: 0.9rem;
  color: rgba(240,244,255,0.5);
}
.legal-section {
  padding: var(--space-xl) 0 var(--space-3xl);
  background: var(--clr-bg);
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}
.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-top: var(--space-md);
  margin-bottom: 8px;
}
.legal-content p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}
.legal-content ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.legal-content ul li {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-content a { color: var(--clr-primary); }


.thanks-body { min-height: 100vh; display: flex; flex-direction: column; }
.thanks-section {
  flex: 1;
  min-height: 80vh;
  background: var(--clr-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px var(--space-md) var(--space-xl);
}
.thanks-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
}
.thanks-icon-wrap {
  margin-bottom: var(--space-lg);
}
.thanks-icon {
  font-size: 4rem;
  color: var(--clr-secondary);
  filter: drop-shadow(0 0 20px rgba(0,201,177,0.4));
}
.thanks-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
}
.thanks-sub {
  font-size: 1.05rem;
  color: rgba(240,244,255,0.7);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.thanks-note {
  font-size: 0.9rem;
  color: rgba(240,244,255,0.5);
  line-height: 1.65;
  margin-bottom: var(--space-xl);
}
.thanks-note a { color: var(--clr-secondary); }
.thanks-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


.cookie-banner {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 520px;
  background: var(--clr-dark);
  border: 1px solid rgba(240,244,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  z-index: 9999;
  box-shadow: var(--shadow-xl);
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-text-light);
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: rgba(240,244,255,0.6);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.cookie-banner p a { color: var(--clr-secondary); }
.cookie-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  flex: 1;
  background: var(--clr-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 44px;
}
.cookie-btn-accept:hover { background: var(--clr-primary-dark); }
.cookie-btn-reject {
  flex: 1;
  background: transparent;
  color: rgba(240,244,255,0.6);
  border: 1px solid rgba(240,244,255,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
}
.cookie-btn-reject:hover { border-color: rgba(240,244,255,0.4); color: rgba(240,244,255,0.85); }
.cookie-btn-customize {
  width: 100%;
  background: transparent;
  color: rgba(240,244,255,0.45);
  border: none;
  padding: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
  min-height: 44px;
}
.cookie-btn-customize:hover { color: rgba(240,244,255,0.7); }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(13,17,23,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cookie-modal.visible { opacity: 1; pointer-events: all; }
.cookie-modal-inner {
  background: var(--clr-dark);
  border: 1px solid rgba(240,244,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.cookie-modal-inner h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
}
.cookie-category {
  border-bottom: 1px solid rgba(240,244,255,0.08);
  padding: var(--space-md) 0;
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.cookie-category-header h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-text-light);
}
.cookie-toggle {
  position: relative;
  width: 44px; height: 24px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(240,244,255,0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--clr-primary); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { cursor: not-allowed; opacity: 0.6; }
.cookie-category p { font-size: 0.82rem; color: rgba(240,244,255,0.5); line-height: 1.55; }
.cookie-modal-btns {
  display: flex;
  gap: 8px;
  margin-top: var(--space-lg);
}
.cookie-modal-save {
  flex: 1;
  background: var(--clr-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 44px;
}
.cookie-modal-save:hover { background: var(--clr-primary-dark); }
.cookie-modal-cancel {
  background: transparent;
  color: rgba(240,244,255,0.5);
  border: 1px solid rgba(240,244,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
  min-height: 44px;
}
.cookie-modal-cancel:hover { border-color: rgba(240,244,255,0.35); }


@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero-visual { display: none; }
  .accept-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .pickup-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-line { display: none; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item:nth-child(odd) .timeline-card { grid-column: 1; text-align: left; }
  .timeline-item:nth-child(even) .timeline-card { grid-column: 1; text-align: left; }
  .timeline-dot { display: none; }
  .timeline-items { gap: var(--space-md); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--clr-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px var(--space-md) var(--space-md);
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.95rem; }
  .nav-link::after { display: none; }
  .nav-link.active { background: rgba(26,107,255,0.08); }
  .nav-burger { display: flex; }

  .hero-section { min-height: auto; padding: 100px var(--space-md) var(--space-xl); }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  .accept-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row-reverse { direction: ltr; }
  .feature-img-wrap { display: none; }
  .feature-content { padding: 0; }

  .eco-inner { grid-template-columns: 1fr; }
  .eco-visual { display: none; }

  .categories-grid { grid-template-columns: 1fr; }
  .pricing-intro-grid { grid-template-columns: 1fr; }
  .payment-inner { grid-template-columns: 1fr; }
  .payment-visual { display: none; }

  .roles-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .work-process-inner { grid-template-columns: 1fr; }
  .work-process-visual { display: none; }

  .team-intro-grid { grid-template-columns: 1fr; }
  .team-intro-visual { display: none; }

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

  .pickup-grid { grid-template-columns: 1fr; }

  .footer-container { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary, .cta-actions .btn-ghost-dark { width: 100%; max-width: 320px; justify-content: center; }

  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius-xl) var(--radius-xl) 0 0; max-width: none; }

  .thanks-actions { flex-direction: column; align-items: center; }
  .thanks-actions .btn-primary, .thanks-actions .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 48px;
    --space-2xl: 72px;
    --space-3xl: 80px;
  }
  .hero-chips { gap: 8px; }
  .chip { font-size: 0.75rem; padding: 5px 10px; }
  .contact-form-wrap { padding: var(--space-md); }
}