:root {
  --primary: #1E3A5F;
  --primary-dark: #142841;
  --primary-light: #2A4D7A;
  --accent: #7DD3C0;
  --accent-bright: #5FC4AC;
  --accent-glow: rgba(125, 211, 192, 0.4);
  --bg: #F4F5F7;
  --bg-card: #FFFFFF;
  --text: #1E3A5F;
  --text-light: #5A6B82;
  --border: rgba(30, 58, 95, 0.1);
  --shadow-sm: 0 2px 10px rgba(30, 58, 95, 0.06);
  --shadow-md: 0 8px 30px rgba(30, 58, 95, 0.08);
  --shadow-lg: 0 20px 60px rgba(30, 58, 95, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

/* NAV */
.nav-wrapper {
  position: fixed; top: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px); max-width: 1100px;
  transition: all 0.4s ease;
}
.nav {
  background: var(--primary);
  border-radius: 50px;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.25);
}
.nav-logo {
  color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 20px;
  display: flex; align-items: center; gap: 8px; cursor: pointer;
}
.nav-logo .dot {
  width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 8px transparent; }
}
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--accent);
  font-weight: 500; font-size: 15px;
  position: relative; padding: 4px 0; cursor: pointer;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { background: #fff; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--accent); margin: 5px 0;
  transition: all 0.3s ease;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}
.blob-1 { width: 500px; height: 500px; background: var(--accent); top: -100px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: var(--primary-light); bottom: -100px; left: -100px; animation-delay: -10s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 50px) scale(0.95); }
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(125, 211, 192, 0.15);
  border: 1px solid rgba(125, 211, 192, 0.3);
  color: var(--accent-bright);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
  animation: slideUp 0.8s ease;
}
.hero-badge .dot-small {
  width: 8px; height: 8px;
  background: var(--accent-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--primary);
  margin-bottom: 24px;
  animation: slideUp 1s ease;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-bright), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 36px;
  animation: slideUp 1.2s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; animation: slideUp 1.4s ease; }
.btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600; font-size: 15px;
  cursor: pointer; border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex; align-items: center; gap: 10px;
  position: relative; overflow: hidden;
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(30, 58, 95, 0.3); }
.btn-primary::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}
.btn-primary:hover::before { width: 400px; height: 400px; }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.btn .arrow { transition: transform 0.3s ease; position: relative; z-index: 1; }
.btn:hover .arrow { transform: translateX(4px); }

/* HERO VISUAL */
.hero-visual { position: relative; height: 500px; animation: slideUp 1.5s ease; }
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.card-1 { top: 20px; left: 0; }
.card-2 { top: 180px; right: 0; animation-delay: -2s; }
.card-3 { bottom: 60px; left: 40px; animation-delay: -4s; }
.card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.card-text strong { display: block; font-size: 14px; color: var(--primary); font-family: 'Space Grotesk', sans-serif; }
.card-text small { color: var(--text-light); font-size: 12px; }
.hero-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 30px 80px rgba(30, 58, 95, 0.3);
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero-circle svg { animation: rotate 30s linear infinite reverse; }

/* SECTIONS */
section { padding: 100px 24px; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  color: var(--accent-bright);
  font-weight: 600; font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--primary); margin-bottom: 20px; }
.section-header p { color: var(--text-light); font-size: 1.1rem; }

/* VALUES */
.values-section { background: linear-gradient(180deg, var(--bg) 0%, #fff 100%); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}
.value-card.visible { opacity: 1; transform: translateY(0); }
.value-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.value-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin: 0 auto 24px;
  transition: transform 0.4s ease;
}
.value-card:hover .value-icon {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: #fff;
}
.value-card h3 { color: var(--primary); font-size: 1.3rem; margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.95rem; }

/* PROBLEMS */
.problems-section { background: var(--primary); color: #fff; position: relative; overflow: hidden; }
.problems-section::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}
.problems-section .section-header h2 { color: #fff; }
.problems-section .section-header p { color: rgba(255,255,255,0.7); }
.problems-section .section-tag { color: var(--accent); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  position: relative; z-index: 1;
}
.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s ease; cursor: pointer;
}
.problem-card:hover { background: rgba(125, 211, 192, 0.1); border-color: var(--accent); transform: translateY(-6px); }
.problem-icon {
  width: 52px; height: 52px;
  background: rgba(125, 211, 192, 0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.problem-card:hover .problem-icon { background: var(--accent); color: var(--primary); transform: scale(1.1); }
.problem-card h4 { font-size: 1.1rem; color: #fff; line-height: 1.3; }

/* PROCESS */
.process-section { background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 50px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--primary), var(--accent));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  z-index: 0;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.process-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  text-align: center;
  position: relative; z-index: 1;
  transition: all 0.4s ease;
}
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.process-number {
  width: 100px; height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--primary);
  margin: -90px auto 24px;
  border: 3px solid var(--accent);
  transition: all 0.4s ease;
}
.process-card:hover .process-number { background: var(--primary); color: var(--accent); transform: rotate(360deg); }
.process-card h3 { color: var(--primary); margin-bottom: 12px; font-size: 1.4rem; }
.process-card p { color: var(--text-light); }

/* TESTIMONIAL SLIDER */
.testimonial-section { background: linear-gradient(135deg, var(--bg), #fff); }
.testimonial-slider { max-width: 800px; margin: 0 auto; position: relative; }
.testimonial-track-wrapper { overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-slide { min-width: 100%; padding: 0 8px; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: center;
}
.testimonial-quote {
  position: absolute;
  top: 30px; left: 40px;
  font-size: 80px;
  color: var(--accent);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
}
.testimonial-card p {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 30px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.author-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.author-info { text-align: left; }
.author-info strong { display: block; color: var(--primary); }
.author-info small { color: var(--text-light); }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 32px; }
.testimonial-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--primary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.testimonial-arrow:hover { background: var(--primary); color: var(--accent); border-color: var(--primary); transform: scale(1.05); }
.testimonial-dots { display: flex; gap: 10px; }
.testimonial-dot {
  width: 10px; height: 10px;
  border-radius: 50%; border: none;
  background: var(--border);
  cursor: pointer; padding: 0;
  transition: all 0.3s ease;
}
.testimonial-dot.active { background: var(--accent); width: 32px; border-radius: 5px; }

/* REGIONS */
.regions-section { background: #fff; padding: 80px 24px; }
.regions-tagline {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.regions-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.region-pill {
  padding: 10px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 500; font-size: 0.95rem;
  transition: all 0.3s ease; cursor: default;
}
.region-pill:hover { background: var(--primary); color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* CTA */
.cta-section { background: var(--primary); text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-section::before, .cta-section::after { content: ''; position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3; }
.cta-section::before { width: 400px; height: 400px; background: var(--accent); top: -100px; left: -100px; }
.cta-section::after { width: 400px; height: 400px; background: var(--primary-light); bottom: -100px; right: -100px; }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 20px; }
.cta-section p { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 36px; }
.cta-section .btn-primary { background: var(--accent); color: var(--primary); }
.cta-section .btn-primary:hover { background: #fff; }

/* FOOTER */
footer { background: var(--bg); padding: 50px 24px 30px; border-top: 1px solid var(--border); }
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 30px;
}
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-links a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 0.95rem; cursor: pointer;
}
.footer-links a:hover { color: var(--primary); }
.footer-brand {
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.footer-brand .dot { width: 8px; height: 8px; background: var(--accent-bright); border-radius: 50%; }
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* PAGE-SPECIFIC */
.page-hero { padding: 180px 24px 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--primary); margin-bottom: 20px; }
.page-hero p { color: var(--text-light); font-size: 1.15rem; max-width: 700px; margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 60px; margin-top: 40px; }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-bright));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-block:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-block:hover::before { transform: scaleY(1); }
.service-block:nth-child(even) .service-visual { order: -1; }
.service-visual {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  position: relative; overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-block:hover .service-visual { transform: scale(1.02); }
.service-visual::before {
  content: ''; position: absolute;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(125, 211, 192, 0.2), transparent 50%);
  animation: rotate 20s linear infinite;
}
.service-visual svg { position: relative; z-index: 1; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.service-block:hover .service-visual svg { transform: rotate(8deg) scale(1.05); }
.service-content h3 { font-size: 1.7rem; color: var(--primary); margin-bottom: 16px; transition: color 0.4s ease; }
.service-block:hover .service-content h3 { color: var(--primary-light); }
.service-content p { color: var(--text-light); margin-bottom: 24px; }
.service-features { list-style: none; margin-bottom: 24px; }
.service-features li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s ease;
}
.service-block:hover .service-features li { padding-left: 36px; }
.service-features li:last-child { border-bottom: none; }
.service-features li::before {
  content: ''; position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E3A5F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center; background-size: 14px; background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.service-block:hover .service-features li::before { transform: translateY(-50%) scale(1.15); }
.service-result {
  background: var(--bg);
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  color: var(--primary);
  font-style: italic;
  transition: background 0.4s ease, border-left-width 0.3s ease;
}
.service-block:hover .service-result { background: rgba(125, 211, 192, 0.08); border-left-width: 6px; }
.service-result strong { font-style: normal; }

/* ABOUT */
.about-content { max-width: 800px; margin: 0 auto; padding: 60px 24px 100px; }
.about-content p { font-size: 1.1rem; color: var(--text); margin-bottom: 24px; line-height: 1.8; }
.about-content p.highlight {
  font-size: 1.4rem; color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  margin: 40px 0;
}

/* FAQ */
.faq-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 50px; }
.faq-tab {
  padding: 10px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500; color: var(--text-light);
  font-family: inherit; font-size: 0.95rem;
  transition: all 0.3s ease;
}
.faq-tab.active, .faq-tab:hover { background: var(--primary); color: var(--accent); border-color: var(--primary); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  padding: 24px 28px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--primary);
  font-size: 1.05rem;
  font-family: 'Space Grotesk', sans-serif;
}
.faq-icon {
  width: 32px; height: 32px;
  background: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 28px; color: var(--text-light); }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 28px 24px; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 60px auto 100px;
  padding: 0 24px;
}
.contact-info h2 { color: var(--primary); font-size: 2rem; margin-bottom: 20px; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 24px; align-items: center; }
.contact-list-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list strong { color: var(--primary); display: block; font-family: 'Space Grotesk', sans-serif; }
.contact-list span { color: var(--text-light); font-size: 0.95rem; }
.contact-list a { color: var(--text-light); }
.contact-list a:hover { color: var(--primary); }
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; color: var(--primary); font-weight: 500; margin-bottom: 8px; font-size: 0.95rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: inherit; font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(125, 211, 192, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* LEGAL */
.legal-content {
  max-width: 900px;
  margin: 40px auto 100px;
  padding: 50px 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-content h2 { color: var(--primary); font-size: 1.5rem; margin: 36px 0 16px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { color: var(--primary); font-size: 1.15rem; margin: 24px 0 12px; font-family: 'Space Grotesk', sans-serif; }
.legal-content p, .legal-content li { color: var(--text); margin-bottom: 12px; line-height: 1.7; font-size: 0.97rem; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content a { color: var(--accent-bright); word-break: break-word; }
.legal-content a:hover { color: var(--primary); text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; }
  .service-block { grid-template-columns: 1fr; padding: 30px; }
  .service-block:nth-child(even) .service-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }
}
@media (max-width: 640px) {
  .nav-wrapper { top: 12px; width: calc(100% - 16px); }
  .nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: var(--primary);
    padding: 20px;
    border-radius: 24px;
    gap: 16px;
  }
  .nav-toggle { display: block; }
  .hero { padding: 110px 16px 60px; }
  section { padding: 70px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { padding: 40px 28px; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { gap: 24px; justify-content: center; }
  .legal-content { padding: 30px 24px; }
  .floating-card { padding: 14px; font-size: 12px; }
  .card-1 { left: 0; top: 10px; }
  .card-2 { right: 0; top: 150px; }
  .card-3 { left: 20px; bottom: 30px; }
}