:root {
  --primary: #039a9b;
  --primary-dark: #04727f;
  --secondary: #e84d77;
  --ink: #17313b;
  --muted: #61727a;
  --soft: #f2fbfa;
  --soft-2: #fff4f7;
  --white: #ffffff;
  --line: rgba(23, 49, 59, 0.12);
  --shadow: 0 24px 70px rgba(8, 58, 70, 0.13);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 20%, rgba(232, 77, 119, 0.18), transparent 28%),
    radial-gradient(circle at 5% 15%, rgba(3, 154, 155, 0.18), transparent 30%),
    linear-gradient(135deg, #f4ffff 0%, #ffffff 48%, #fff6f8 100%);
  overflow: hidden;
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.menu-toggle,
.menu-button {
  display: none;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 98px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  padding: 40px 0 90px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: 60px;
  width: 520px;
  height: 520px;
  border-radius: 45% 55% 65% 35%;
  background: linear-gradient(135deg, rgba(3, 154, 155, 0.18), rgba(232, 77, 119, 0.14));
  z-index: 0;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero-text {
  max-width: 620px;
  font-size: 1.17rem;
  color: var(--muted);
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 36px rgba(3, 154, 155, 0.26);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  border: 1px solid var(--line);
}

.hero-card {
  justify-self: center;
  width: min(390px, 100%);
  min-height: 390px;
  border-radius: 42px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.hero-card img {
  width: 190px;
  margin: 0 auto;
}

.hero-card strong {
  display: block;
  text-align: center;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-card span {
  display: block;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 95px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.values-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}

.section-heading p,
.values-content p,
.text-card p,
.service-card p {
  color: var(--muted);
}

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

.text-card,
.fact-card,
.service-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(23, 49, 59, 0.07);
}

.large-card {
  padding: 38px;
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.large-card h3,
.service-card h3,
.contact-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.fact-card {
  padding: 28px;
}

.fact-card span {
  display: block;
  color: var(--secondary);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.fact-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.activity-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 32px;
  min-height: 245px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(3, 154, 155, 0.13);
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  background: var(--soft-2);
  margin-bottom: 24px;
}

.values {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.values .eyebrow {
  color: #7ee7df;
}

.values-content {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.values-content p {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.check-list li {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  color: #7ee7df;
  margin-right: 10px;
}

.contact-single {
  max-width: 720px;
  margin: 0 auto;
}

.contact-card {
  padding: 34px;
}

.contact-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-row strong a {
  color: var(--primary-dark);
}

.contact-note {
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  background: var(--soft);
  color: var(--primary-dark);
  font-weight: 800;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer img {
  width: 42px;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 900;
  color: var(--primary-dark);
}

@media (max-width: 900px) {
  .menu-button {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    place-content: center;
    gap: 5px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .nav-links {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links a {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
  }

  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero,
  .intro-grid,
  .values-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 30px;
    text-align: left;
  }

  .hero::after {
    right: -260px;
    top: 390px;
  }

  .hero-card {
    min-height: 300px;
  }

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

@media (max-width: 600px) {
  .navbar,
  .hero,
  .section,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 3rem;
  }

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

  .btn {
    width: 100%;
  }

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

  .large-card,
  .contact-card,
  .service-card {
    padding: 26px;
  }

}
