:root {
  --red: #d9414b;
  --red-dark: #b82e38;
  --rose: #f0a6ae;
  --rose-soft: #fdecef;
  --aqua: #a9dce4;
  --aqua-soft: #eaf8fa;
  --charcoal: #252525;
  --ink: #353535;
  --muted: #6d7179;
  --paper: #ffffff;
  --cloud: #f5f5f5;
  --line: rgba(37, 37, 37, 0.11);
  --shadow: 0 24px 70px rgba(37, 37, 37, 0.13);
  --radius: 28px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(240, 166, 174, 0.34), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(169, 220, 228, 0.55), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f7f7 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(255, 255, 255, 0.87);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(217, 65, 75, 0.18);
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  color: var(--charcoal);
  font-size: clamp(0.94rem, 2vw, 1.08rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy em {
  color: var(--red);
  font-size: 1.12rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red-dark);
  background: var(--rose-soft);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--rose-soft);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  margin: 5px auto;
  display: block;
  background: var(--red-dark);
  border-radius: 999px;
  transition: 0.25s ease;
}

.section,
.section-panel {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.section-panel {
  margin-top: 36px;
  padding: clamp(34px, 6vw, 76px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 14px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 248, 250, 0.88));
  box-shadow: var(--shadow);
}

.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-bg-one {
  width: 330px;
  height: 330px;
  right: -85px;
  top: -90px;
  background: rgba(240, 166, 174, 0.32);
}

.hero-bg-two {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -60px;
  background: rgba(169, 220, 228, 0.42);
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  color: var(--red-dark);
  background: rgba(240, 166, 174, 0.2);
  border: 1px solid rgba(217, 65, 75, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "✚";
  color: var(--red);
}

h1,
h2,
h3 {
  color: var(--charcoal);
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 7.5vw, 6.6rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

h1 span,
.footer h2 span {
  color: var(--red);
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.36rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 34px rgba(217, 65, 75, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(217, 65, 75, 0.33);
}

.btn-ghost {
  color: var(--charcoal);
  background: white;
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  color: var(--red-dark);
  border-color: rgba(217, 65, 75, 0.28);
  background: var(--rose-soft);
}

.hero-card {
  padding: 18px;
  border-radius: calc(var(--radius) + 14px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(37, 37, 37, 0.12);
}

.logo-frame {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 28px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 45%, rgba(169, 220, 228, 0.85), transparent 42%),
    linear-gradient(180deg, #ffffff, #f5f5f5);
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 30px;
}

.hero-card-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.hero-card-footer span {
  padding: 11px 8px;
  color: var(--charcoal);
  background: var(--cloud);
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.logo-text h2,
.homecare-card h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  letter-spacing: -0.035em;
}

.section-heading p,
.logo-text p,
.homecare-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.features-grid,
.services-grid {
  display: grid;
  gap: 20px;
}

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

.feature,
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(37, 37, 37, 0.08);
}

.feature::after,
.service-card::after {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  right: -36px;
  top: -36px;
  border-radius: 999px;
  background: rgba(169, 220, 228, 0.32);
}

.feature-icon,
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--rose));
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(217, 65, 75, 0.22);
}

.feature h3,
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.feature p,
.service-card p {
  color: var(--muted);
}

.section-soft {
  width: 100%;
  max-width: none;
  padding: 88px max(16px, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at 16% 8%, rgba(240, 166, 174, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(234, 248, 250, 0.76), rgba(255, 255, 255, 0));
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.service-card {
  min-height: 280px;
}

.service-card-wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(253, 236, 239, 0.9));
}

.service-icon.adult,
.service-icon.home {
  background: linear-gradient(135deg, #76c4cd, #4aa6b1);
}

.service-icon.health,
.service-icon.trust {
  background: linear-gradient(135deg, var(--charcoal), #555555);
}

.homecare-card {
  display: grid;
  grid-template-columns: 1fr 240px;
  align-items: center;
  gap: 36px;
  padding: clamp(30px, 5vw, 60px);
  overflow: hidden;
  border-radius: calc(var(--radius) + 14px);
  background:
    radial-gradient(circle at 95% 30%, rgba(217, 65, 75, 0.18), transparent 34%),
    linear-gradient(135deg, var(--charcoal), #363636);
  box-shadow: var(--shadow);
}

.homecare-card h2,
.homecare-card p {
  color: white;
}

.homecare-card .section-kicker {
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
}

.homecare-card p {
  opacity: 0.82;
}

.homecare-icon {
  width: 220px;
  height: 220px;
  justify-self: center;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--rose-soft));
  box-shadow: inset 0 0 0 14px rgba(255, 255, 255, 0.3);
}

.homecare-icon span {
  color: var(--red-dark);
  font-size: 5rem;
  font-weight: 900;
}

.homecare-icon strong {
  position: absolute;
  right: 48px;
  bottom: 45px;
  color: var(--red);
  font-size: 2rem;
}

.section-dark {
  width: 100%;
  max-width: none;
  padding: 92px max(16px, calc((100% - var(--max)) / 2));
  color: white;
  background:
    radial-gradient(circle at 10% 20%, rgba(169, 220, 228, 0.17), transparent 24%),
    linear-gradient(135deg, #202020, #393939);
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: white;
}

.section-dark .section-heading p {
  opacity: 0.82;
}

.section-dark .section-kicker {
  color: white;
  background: rgba(217, 65, 75, 0.25);
  border-color: rgba(255, 255, 255, 0.12);
}

.values-list {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.values-list span {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.logo-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 14px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.logo-display {
  padding: clamp(14px, 3vw, 28px);
  border-radius: 34px;
  background: linear-gradient(135deg, var(--cloud), var(--aqua-soft));
}

.logo-display img {
  width: 100%;
  margin: 0 auto;
  border-radius: 28px;
  object-fit: contain;
}

.footer {
  padding: 42px 16px;
  color: white;
  background: var(--charcoal);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer h2 {
  color: white;
  font-size: clamp(1.3rem, 3vw, 2rem);
  text-transform: uppercase;
}

.footer p {
  opacity: 0.76;
}

.footer-note {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero,
  .logo-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 560px;
    margin: 0 auto;
  }

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

@media (max-width: 760px) {
  .navbar {
    min-height: 76px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 0.78rem;
  }

  .brand-copy em {
    font-size: 0.98rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px 14px;
    background: var(--cloud);
  }

  .section,
  .section-panel {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 64px 0;
  }

  .section-panel {
    margin-top: 22px;
    padding: 30px 18px;
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(2.25rem, 14vw, 4.2rem);
  }

  .hero-card-footer {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .services-grid,
  .homecare-card {
    grid-template-columns: 1fr;
  }

  .section-soft,
  .section-dark {
    padding-left: 12px;
    padding-right: 12px;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .homecare-icon {
    width: 180px;
    height: 180px;
  }

  .footer-inner {
    display: grid;
    text-align: center;
  }

  .footer-note {
    text-align: center;
  }
}

@media (max-width: 440px) {
  .hero-actions,
  .btn {
    width: 100%;
  }

  .feature,
  .service-card {
    padding: 24px;
  }
}
