:root {
  --bg: #fff8fd;
  --surface: #ffffff;
  --ink: #251827;
  --muted: #6e5b70;
  --primary: #8b0d82;
  --primary-2: #d00675;
  --primary-3: #4c0753;
  --soft: #f6e3f3;
  --soft-2: #ffe8f2;
  --line: rgba(139, 13, 130, 0.18);
  --shadow: 0 24px 70px rgba(76, 7, 83, 0.16);
  --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 top left, #ffe2f2 0, transparent 38%), linear-gradient(180deg, #fff8fd 0%, #ffffff 46%, #fff5fb 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

p {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--primary);
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

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

.section-pad {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 253, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-logo-wrap {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: white;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(139, 13, 130, 0.16);
  border: 1px solid rgba(139, 13, 130, 0.12);
  flex: 0 0 auto;
}

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

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: clamp(0.96rem, 1.4vw, 1.16rem);
  color: var(--primary-3);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-3);
  padding: 10px 12px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: var(--soft);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 25px rgba(139, 13, 130, 0.25);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary-3);
  display: block;
  margin: 5px auto;
  border-radius: 5px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 82px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg-one,
.hero-bg-two {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.62;
  pointer-events: none;
}

.hero-bg-one {
  width: 380px;
  height: 380px;
  background: rgba(208, 6, 117, 0.12);
  right: -120px;
  top: 80px;
}

.hero-bg-two {
  width: 280px;
  height: 280px;
  background: rgba(139, 13, 130, 0.10);
  left: -90px;
  bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 54px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 7vw, 5.9rem);
  letter-spacing: -0.07em;
  color: var(--primary-3);
}

.hero-lead {
  max-width: 660px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  margin-top: 24px;
  color: #4a334c;
}

.hero-actions,
.contact-actions,
.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 36px rgba(139, 13, 130, 0.28);
}

.btn-secondary {
  color: var(--primary-3);
  background: white;
  border-color: var(--line);
  box-shadow: 0 14px 34px rgba(76, 7, 83, 0.10);
}

.btn-light {
  color: var(--primary-3);
  background: white;
}

.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  max-width: 600px;
}

.quick-info div {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(76, 7, 83, 0.08);
}

.quick-info span,
.card-label,
.contact-row span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-info strong {
  display: block;
  margin-top: 5px;
  color: var(--primary-3);
  font-size: 1.04rem;
}

.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 44px;
  background: linear-gradient(160deg, rgba(255,255,255,0.88), rgba(255,232,242,0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -90px -120px auto auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139,13,130,0.16), rgba(208,6,117,0.16));
}

.logo-orbit {
  width: 210px;
  height: 210px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 12px rgba(246,227,243,0.75), 0 22px 45px rgba(76, 7, 83, 0.16);
  position: relative;
  z-index: 1;
}

.logo-orbit img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

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

.hero-card-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  margin: 10px 0 14px;
  color: var(--primary-3);
}

.mini-service-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-service-list span {
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-3);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
}

.intro {
  background: rgba(255, 255, 255, 0.7);
}

.intro-grid,
.lab-grid,
.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.045em;
  color: var(--primary-3);
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  max-width: 760px;
  font-size: 1.05rem;
}

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

.section-heading.center .eyebrow {
  justify-content: center;
}

.intro-text {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(76, 7, 83, 0.10);
  border-radius: var(--radius);
  padding: 30px;
}

.intro-text p + p {
  margin-top: 16px;
}

.services {
  position: relative;
}

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

.service-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  min-height: 220px;
  box-shadow: 0 15px 36px rgba(76, 7, 83, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(76, 7, 83, 0.15);
  border-color: rgba(208, 6, 117, 0.28);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 12px 25px rgba(139, 13, 130, 0.25);
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--primary-3);
  font-size: 1.26rem;
  margin-bottom: 10px;
}

.lab {
  background: linear-gradient(135deg, rgba(76,7,83,0.97), rgba(139,13,130,0.94));
  color: white;
}

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

.lab .eyebrow::before {
  background: white;
}

.lab-cards {
  display: grid;
  gap: 18px;
}

.lab-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 26px;
  backdrop-filter: blur(10px);
}

.lab-item span {
  color: #ffe4f1;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.lab-item h3 {
  color: white;
  font-size: 1.5rem;
  margin: 8px 0;
}

.lab-item p {
  color: rgba(255,255,255,0.84);
}

.trust-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border-radius: 38px;
  padding: clamp(30px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  box-shadow: var(--shadow);
}

.trust-box h2 {
  color: white;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
}

.trust-box p,
.trust-box .eyebrow {
  color: rgba(255,255,255,0.88);
}

.trust-box .eyebrow::before {
  background: white;
}

.location-grid {
  align-items: stretch;
}

.location-card,
.map-panel,
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(76, 7, 83, 0.10);
  padding: 32px;
}

.location-card h2 {
  color: var(--primary-3);
  font-size: clamp(2rem, 4vw, 3rem);
}

.address {
  color: var(--primary);
  font-weight: 900;
  margin: 14px 0;
}

.map-panel {
  min-height: 340px;
  background: radial-gradient(circle at 50% 35%, rgba(208,6,117,0.13), transparent 28%), linear-gradient(135deg, #fff, #fff0f8);
  display: grid;
  place-items: center;
  text-align: center;
}

.map-pin {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  display: grid;
  place-items: center;
  font-size: 3rem;
  box-shadow: 0 18px 42px rgba(139, 13, 130, 0.24);
}

.map-panel h3 {
  margin-top: 10px;
  color: var(--primary-3);
  font-size: 1.5rem;
}

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-row {
  padding: 18px;
  border-radius: 22px;
  background: #fff8fd;
  border: 1px solid var(--line);
}

.contact-row a,
.footer a {
  color: var(--primary);
  font-weight: 900;
  word-break: break-word;
}

.contact-row p,
.contact-row a {
  margin-top: 5px;
  display: inline-block;
}

.footer {
  background: #220926;
  color: white;
  padding-top: 58px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.75fr;
  gap: 34px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: white;
  padding: 10px;
  border-radius: 24px;
  margin-bottom: 16px;
}

.footer h2,
.footer h3 {
  color: white;
  margin-bottom: 10px;
}

.footer p {
  color: rgba(255,255,255,0.75);
}

.footer-bottom {
  margin-top: 42px;
  padding: 18px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 90;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(18,140,126,0.3);
}

.to-top {
  position: fixed;
  left: 20px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  color: var(--primary-3);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(76,7,83,0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 88;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .hero-grid,
  .intro-grid,
  .lab-grid,
  .location-grid,
  .contact-grid,
  .trust-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    min-height: auto;
  }

  .trust-actions {
    margin-top: 0;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section-pad {
    padding: 62px 0;
  }

  .nav {
    min-height: 76px;
  }

  .brand-logo-wrap {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

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

  .brand-text small {
    display: none;
  }

  .hero-actions,
  .contact-actions,
  .trust-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .hero-card,
  .location-card,
  .map-panel,
  .contact-card,
  .intro-text {
    border-radius: 24px;
    padding: 24px;
  }

  .logo-orbit {
    width: 164px;
    height: 164px;
  }

  .logo-orbit img {
    width: 118px;
    height: 118px;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .to-top {
    display: none;
  }

  .footer {
    padding-bottom: 66px;
  }
}
