:root {
  --bg-dark: #0c1b2a;
  --bg-deep: #08131f;
  --surface: #ffffff;
  --surface-soft: #f4f8fc;
  --surface-alt: #eef5fb;
  --text: #12263a;
  --text-soft: #5a7088;
  --line: #d9e6f2;
  --accent: #38bdf8;
  --accent-dark: #0ea5e9;
  --accent-soft: #e0f7ff;
  --success: #22c55e;
  --shadow: 0 24px 60px rgba(18, 38, 58, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: #f8fbfe;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.14), transparent 26%),
    linear-gradient(135deg, var(--bg-dark), var(--bg-deep));
  color: #e7f1fb;
  padding-bottom: 5rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0;
}

.logo {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav-links a {
  color: #d9e7f5;
  font-size: 0.95rem;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-btn {
  background: #ffffff;
  color: var(--bg-dark);
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
}

.nav-btn:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 4.2rem 0 1rem;
}

.eyebrow,
.section-tag,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  max-width: 11ch;
  color: #ffffff;
}

.hero-description {
  color: #d1e0ee;
  max-width: 650px;
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.btn {
  padding: 0.95rem 1.45rem;
  font-size: 0.96rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #083344;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-light {
  color: var(--text);
  border-color: #c8d8e8;
  background: #ffffff;
}

.btn-light:hover {
  border-color: #9fb8cf;
  color: var(--text);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-points span {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.hero-image-frame {
  width: 100%;
  max-width: 560px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.hero-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-tag {
  color: var(--accent-dark);
  margin-bottom: 0.7rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  max-width: 14ch;
}

.trust-strip {
  padding-top: 0;
  margin-top: -2rem;
}

.stats-grid,
.services-grid,
.team-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.about-box,
.service-card,
.result-card,
.team-card,
.cta-box,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.4rem;
  text-align: center;
}

.stat-card h3 {
  font-size: 1.8rem;
  color: var(--accent-dark);
  margin-bottom: 0.25rem;
}

.stat-card p {
  color: var(--text-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.about-text p {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  max-width: 64ch;
}

.about-box {
  padding: 1.75rem;
}

.about-box h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.about-box ul {
  display: grid;
  gap: 0.85rem;
}

.about-box li {
  color: var(--text-soft);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 1.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(18, 38, 58, 0.14);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.7rem;
}

.service-card p,
.result-content p,
.team-card p,
.contact-card p,
.cta-text p {
  color: var(--text-soft);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.result-card {
  overflow: hidden;
}

.result-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
}

.result-box {
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
}

.result-box.before {
  background: #dbeafe;
  color: #1e3a8a;
}

.result-box.after {
  background: #dcfce7;
  color: #166534;
}

.result-content {
  padding: 1.5rem;
}

.result-content h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  padding: 1.75rem;
  text-align: center;
}

.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 1.05rem;
}

.team-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.team-role {
  color: var(--accent-dark) !important;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.cta-box {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, #ffffff, #eef8ff);
}

.cta-text h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.contact-section {
  background: #f3f8fd;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  padding: 1.75rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
  font-size: 1.18rem;
}

.contact-card ul {
  display: grid;
  gap: 0.85rem;
}

.contact-card li {
  color: var(--text-soft);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}

.site-footer {
  background: #0b1724;
  color: #d6e4f0;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .stats-grid,
  .services-grid,
  .results-grid,
  .team-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: grid;
  }

  .hero-card {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.5rem;
  }

  .hero h1,
  .section-heading h2 {
    max-width: 100%;
  }

  .stats-grid,
  .services-grid,
  .results-grid,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-box,
  .service-card,
  .result-content,
  .team-card,
  .cta-box,
  .contact-card {
    padding: 1.35rem;
  }

  .result-visual {
    min-height: 180px;
  }

  .hero-image {
  height: 380px;
}

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-points {
    flex-direction: column;
  }

  .btn,
  .nav-btn {
    width: 100%;
  }
}
