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

:root {
  --navy: #2b2d6e;
  --navy-dark: #1e2055;
  --blue: #1a8fe3;
  --blue-bright: #38b6ff;
  --blue-light: #e8f4fd;
  --white: #ffffff;
  --light: #f4f6fb;
  --gray: #6b7280;
  --dark: #1a1a2e;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  background: var(--navy);
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue-bright);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s;
  box-shadow: 0 4px 14px rgba(26,143,227,0.4);
}

.nav-cta:hover {
  opacity: 0.9;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a5fa8 100%);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56,182,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  right: 200px;
  bottom: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,143,227,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: rgba(56,182,255,0.2);
  color: var(--blue-bright);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(56,182,255,0.3);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--blue-bright);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-founder {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: -20px;
  margin-bottom: 28px;
  font-style: italic;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(26,143,227,0.4);
}

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

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(12px);
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.stat-num {
  font-size: 30px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 4px 0;
}

/* ABOUT */
.about {
  padding: 90px 0;
  background: var(--light);
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.about h2,
.services h2,
.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 660px;
  margin-bottom: 48px;
}

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

.value-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(43,45,110,0.08);
  border-top: 4px solid var(--blue);
  transition: transform 0.2s;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.value-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ABOUT PHOTOS */
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.split-img-item {
  position: relative;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(43,45,110,0.1);
}

.split-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.split-img-item:hover img {
  transform: scale(1.05);
}

.split-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(30,32,85,0.85) 0%, rgba(30,32,85,0) 100%);
  color: var(--white);
}

.split-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 2px;
}

.split-caption p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

/* SERVICES */
.services {
  padding: 90px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}

.service-card {
  border: 1px solid #e0e7f3;
  border-radius: 14px;
  padding: 32px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  background: var(--white);
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(43,45,110,0.12);
  border-color: var(--blue);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 38px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

/* CAREGIVER CTA */
.caregiver-cta {
  padding: 90px 0;
  background: var(--light);
}

.caregiver-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--navy);
}

.caregiver-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 16px rgba(43,45,110,0.08);
}

.caregiver-questions h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
}

.caregiver-questions ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.caregiver-questions li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray);
  padding-left: 30px;
  position: relative;
}

.caregiver-questions li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}

.caregiver-action {
  text-align: center;
  padding: 40px 28px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.caregiver-text-btn {
  display: inline-block;
  width: 100%;
  box-shadow: none;
}

.caregiver-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(43,45,110,0.1);
  width: 100%;
  font-size: 13px;
  color: var(--gray);
}

/* PROVIDER FORM */
.provider-form {
  padding: 90px 0;
  background: var(--navy);
  text-align: center;
  color: var(--white);
}

.provider-form .section-label {
  color: var(--blue-bright);
}

.provider-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--white);
}

.provider-form .section-sub {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 48px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.provider-benefit {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 28px;
  transition: background 0.2s;
}

.provider-benefit:hover {
  background: rgba(255,255,255,0.14);
}

.provider-benefit-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.provider-benefit h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.provider-benefit p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.form-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  padding: 16px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(26,143,227,0.4);
}

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

@media (max-width: 768px) {
  .provider-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT */
.contact {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56,182,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.contact .section-label {
  color: var(--blue-bright);
}

.contact h2 {
  color: var(--white);
}

.contact .section-sub {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 40px;
}

.contact-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 24px 32px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform 0.2s, background 0.2s;
  min-width: 270px;
}

.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
}

.contact-icon {
  font-size: 34px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-bright);
}

.contact-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.contact-note {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer .logo {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
}

footer p {
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--blue-bright);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-card {
    display: none;
  }

  .values,
  .services-grid,
  .about-photos,
  .caregiver-grid {
    grid-template-columns: 1fr;
  }

  .split-img-item {
    height: 180px;
  }

  .caregiver-grid {
    padding: 28px;
    gap: 28px;
  }

  .caregiver-action {
    padding: 28px 20px;
  }

  .nav-links {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
