:root {
  --bg: #f7fffe;
  --bg-soft: #eefcf9;
  --bg-card: rgba(255,255,255,0.82);
  --text: #12343a;
  --muted: #5e7b80;
  --line: rgba(18,52,58,0.10);
  --primary: #69d8ce;
  --primary-dark: #32b6aa;
  --accent: #d9f8f3;
  --shadow: 0 20px 50px rgba(33, 90, 90, 0.10);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(105,216,206,0.18), transparent 28%),
    linear-gradient(180deg, #f9fffe 0%, #f4fffd 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section { padding: 92px 0; position: relative; }
.section-small { padding: 18px 0 0; }
.alt-section { background: linear-gradient(180deg, rgba(105,216,206,0.07), rgba(255,255,255,0)); }

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: .45;
}
.glow-one { top: -90px; left: -90px; background: rgba(105,216,206,0.36); }
.glow-two { bottom: 10%; right: -80px; background: rgba(184,244,236,0.55); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247,255,254,0.82);
  border-bottom: 1px solid rgba(18,52,58,0.06);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 52px;
  height: 52px;
}
.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.18em;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
}
.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.desktop-nav a {
  color: var(--muted);
  font-weight: 500;
}
.desktop-nav a:hover,
.footer-links a:hover { color: var(--primary-dark); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.82);
  color: var(--text);
  cursor: pointer;
}
.toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-dark);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(50,182,170,0.28);
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 11px 18px; font-size: .94rem; }
.btn-secondary {
  background: rgba(255,255,255,0.86);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-full { width: 100%; }

.burger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 999px;
}
.mobile-menu {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(18,52,58,0.06);
}
.mobile-menu a {
  display: block;
  padding: 13px 2px;
  color: var(--muted);
}
.mobile-menu.open { display: block; }

.hero-grid,
.split-grid,
.results-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items: center;
}
.hero {
  padding-top: 72px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(105,216,206,0.14);
  color: var(--primary-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h3 { font-size: 1.2rem; }
.lead,
.section-head p,
.content-panel p,
.contact-copy p,
.footer-brand + p,
.service-card p,
.step-card p,
.metric span,
.feature-item p,
.contact-card span,
.contact-form span,
.legal-wrapper p,
.legal-wrapper li {
  color: var(--muted);
  line-height: 1.75;
}
.hero-copy .lead { margin-top: 20px; font-size: 1.06rem; max-width: 690px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-points span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: .94rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-large,
.media-card,
.results-image,
.cta-banner,
.contact-form,
.contact-card,
.metric,
.service-card,
.step-card { overflow: hidden; }
.hero-visual {
  position: relative;
  min-height: 580px;
}
.hero-visual img,
.media-card img,
.results-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-note {
  position: absolute;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.90);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.9);
}
.floating-note strong { display: block; margin-bottom: 8px; }
.floating-note span { color: var(--muted); font-size: .93rem; line-height: 1.5; }
.note-one { bottom: 22px; left: 22px; }
.note-two { top: 22px; right: 22px; }

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.trusted-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
  background: rgba(255,255,255,0.72);
  color: var(--text);
  font-weight: 700;
  letter-spacing: .05em;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
.services-grid,
.steps-grid,
.metric-grid,
.contact-cards {
  display: grid;
  gap: 18px;
}
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}
.service-card,
.step-card,
.metric,
.contact-card {
  padding: 26px;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(105,216,206,0.18), rgba(50,182,170,0.28));
  color: var(--primary-dark);
  font-size: .92rem;
  font-weight: 800;
}
.service-card h3,
.step-card h3,
.feature-item strong,
.metric strong { margin-bottom: 12px; display: block; }

.media-stack {
  display: grid;
  gap: 18px;
}
.tall { min-height: 410px; }
.small-card { min-height: 220px; }
.content-panel { padding: 10px; }
.feature-list { display: grid; gap: 18px; margin-top: 22px; }
.feature-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
}

.steps-grid { grid-template-columns: repeat(4, 1fr); }
.step-card span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(50,182,170,0.55);
  margin-bottom: 12px;
}

.metric-grid {
  margin-top: 24px;
  grid-template-columns: repeat(2, 1fr);
}
.results-image { min-height: 540px; }

.cta-banner {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(217,248,243,0.92), rgba(255,255,255,0.95));
}

.contact-cards { grid-template-columns: 1fr; margin-top: 24px; }
.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.contact-form label { display: grid; gap: 8px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(50,182,170,0.6);
  box-shadow: 0 0 0 4px rgba(105,216,206,0.18);
}

.site-footer {
  padding: 22px 0 44px;
  border-top: 1px solid rgba(18,52,58,0.06);
}
.footer-grid {
  align-items: start;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}
.footer-brand { margin-bottom: 14px; }

.legal-page {
  min-height: 100vh;
  padding: 60px 0 100px;
}
.legal-wrapper {
  max-width: 880px;
  margin: 0 auto;
  padding: 34px;
}
.legal-wrapper h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
.legal-wrapper h2 { font-size: 1.35rem; margin: 28px 0 12px; }
.legal-wrapper ul { padding-left: 20px; }
.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid,
  .split-grid,
  .results-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .results-image,
  .hero-visual { min-height: 460px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 780px) {
  .desktop-nav,
  .nav-actions .btn { display: none; }
  .burger { display: inline-block; }
  .services-grid,
  .steps-grid,
  .metric-grid,
  .trusted-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
  .section { padding: 74px 0; }
  .hero-visual { min-height: 380px; }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand strong { font-size: .92rem; }
}
