:root {
  --brand: #D23372;
  --brand-dark: #8F1747;
  --brand-soft: #FFF7FB;
  --brand-soft-2: #FCE9F2;
  --ink: #25131D;
  --muted: #6f5d67;
  --white: #fff;
  --green: #20c766;
  --shadow: 0 18px 50px rgba(143,23,71,.13);
  --shadow-2: 0 25px 70px rgba(143,23,71,.18);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

.section {
  padding: 94px 0;
}

.section-soft {
  background: linear-gradient(180deg,#fff 0%,var(--brand-soft) 100%);
}

.section-pink {
  background: #fff7fb;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 999px;
  background: #f6d8e7;
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem .9rem;
}

.section-title {
  margin: 16px 0 14px;
  font-size: clamp(2rem,4vw,3.35rem);
  line-height: 1.05;
  color: var(--brand-dark);
  letter-spacing: -.045em;
}

.section-lead {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.center {
  text-align: center;
}

.topbar {
  height: 22px;
  background: var(--brand-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(210,51,114,.16);
}

.nav-wrap {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--brand);
}

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

.brand span {
  font-size: 1.38rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .9rem;
  font-weight: 750;
}

.nav a {
  color: #111;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 14px;
  background: var(--brand);
  color: #fff!important;
  font-weight: 900;
  padding: 10px 16px;
  box-shadow: 0 12px 24px rgba(210,51,114,.2);
}

.nav-cta:hover {
  background: var(--brand-dark)!important;
  color: #fff!important;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: #42142a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(210,51,114,.74),rgba(143,23,71,.82));
  z-index: 1;
}

.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%,rgba(255,255,255,.18),transparent 36%),linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.35));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(980px,calc(100% - 34px));
  padding: 100px 0 70px;
}

.hero h1 {
  font-size: clamp(2.55rem,6vw,5.2rem);
  line-height: 1.04;
  margin: 0;
  font-weight: 950;
  letter-spacing: -.055em;
}

.hero p {
  font-size: clamp(1.05rem,2vw,1.35rem);
  max-width: 820px;
  margin: 28px auto 0;
  color: rgba(255,255,255,.93);
}

.hero-cards {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-card {
  width: 260px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  padding: 20px;
  color: var(--brand-dark);
  box-shadow: var(--shadow);
  transition: .25s;
}

.hero-card:nth-child(2) {
  background: var(--brand-dark);
  color: white;
}

.hero-card:hover {
  transform: translateY(-6px);
}

.hero-card img {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: .25s;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(210,51,114,.22);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(32,199,102,.22);
}

.btn-green:hover {
  filter: brightness(.94);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(143,23,71,.26);
  color: var(--brand-dark);
  background: #fff;
}

.btn-white {
  background: #fff;
  color: var(--brand-dark);
}

.hero .btn-outline {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.hero .btn-outline:hover {
  background: #fff;
  color: var(--brand);
}

.scroll-more {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  color: white;
  font-weight: 700;
  font-size: .9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #fff;
  font-size: 1.8rem;
  z-index: 90;
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

.cards {
  display: grid;
  gap: 26px;
}

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

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

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

.card {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(210,51,114,.08);
  transition: .25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.card-img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 28px;
}

.card h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 1.45rem;
  line-height: 1.15;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 0;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  background: #fff1f7;
  color: var(--brand-dark);
  padding: 7px 12px;
  font-weight: 800;
  font-size: .78rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--brand-dark);
  font-weight: 900;
}

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

.service-card {
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(210,51,114,.08);
  transition: .25s;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-2);
}

.service-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.service-card .number {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: var(--brand);
  font-weight: 950;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: .75rem;
  box-shadow: 0 8px 16px rgba(0,0,0,.08);
}

.service-card .content {
  padding: 24px;
}

.service-card h3 {
  color: var(--brand);
  font-size: 1.38rem;
  margin: 0 0 8px;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature h2 {
  font-size: clamp(2rem,4vw,3.25rem);
  line-height: 1.08;
  color: var(--brand-dark);
  margin: 0 0 22px;
}

.feature p {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.feature-item h3 {
  margin: 0 0 4px;
  color: var(--brand);
  font-size: 1.35rem;
}

.feature-media {
  position: relative;
}

.feature-media img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-2);
}

.feature-media:after {
  content: '';
  position: absolute;
  left: -22px;
  bottom: -22px;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: var(--brand);
  box-shadow: var(--shadow);
}

.split-box {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-2);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
}

.split-box img {
  height: 100%;
  min-height: 330px;
  width: 100%;
  object-fit: cover;
}

.split-box .box-content {
  padding: 44px;
}

.process {
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 36px;
}

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

.process-item {
  display: flex;
  gap: 16px;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin: 42px auto;
  max-width: 980px;
}

.stat {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
}

.stat strong {
  font-size: 2.2rem;
  color: var(--brand);
  display: block;
}

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

.testimonial {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.stars {
  color: #f5b400;
  letter-spacing: 4px;
  font-size: 1.1rem;
}

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

.blog-card {
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.blog-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.blog-card .content {
  padding: 24px;
}

.date {
  font-size: .82rem;
  color: var(--brand);
  font-weight: 800;
}

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

.map-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-card .map-img {
  height: 260px;
  background: #eef0f2;
  overflow: hidden;
}

.map-card iframe, .map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.88);
}

.map-card .content {
  padding: 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(143,23,71,.12);
}

.hours td:last-child {
  text-align: right;
  color: var(--muted);
}

.site-footer {
  background: var(--brand-dark);
  color: white;
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 50px;
}

.footer-grid p {
  color: rgba(255,255,255,.82);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 26px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}

.footer-cta {
  text-align: center;
  margin: 30px 0;
}

.subhero {
  background: linear-gradient(180deg,#eef8ff 0%,#fff7fb 100%);
  padding: 82px 0 74px;
  text-align: center;
}

.subhero h1 {
  font-size: clamp(2.25rem,5vw,4.25rem);
  line-height: 1.06;
  color: var(--brand);
  margin: 14px auto;
  max-width: 980px;
}

.subhero p {
  max-width: 790px;
  margin: auto;
  color: var(--muted);
  font-size: 1.1rem;
}

.narrow {
  max-width: 860px;
  margin: auto;
}

.content-page {
  font-size: 1.06rem;
  color: #4d3d47;
}

.content-page h2 {
  color: var(--brand-dark);
  font-size: 2rem;
  margin-top: 36px;
}

.content-page ul {
  padding-left: 20px;
}

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

.related-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.related-card img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.related-card div {
  padding: 18px;
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.faq details {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 22px;
}

.faq summary {
  font-weight: 900;
  color: var(--brand-dark);
  cursor: pointer;
}

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

.breadcrumb {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--brand);
  font-weight: 800;
}

.page-grid {
  display: grid;
  grid-template-columns: 2fr .8fr;
  gap: 34px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.sidebar-box {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.side-list {
  display: grid;
  gap: 10px;
}

.side-list a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(143,23,71,.1);
  font-weight: 800;
  color: var(--brand-dark);
}

.hero-mini-cards {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.mini-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  min-width: 150px;
  color: var(--brand-dark);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.mini-card i {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
}

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

.doc-card {
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.doc-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.doc-card .content {
  padding: 26px;
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.image-collage img {
  height: 190px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.image-collage img:first-child {
  grid-column: 1/3;
  height: 260px;
}

.cta-panel {
  border-radius: 28px;
  background: linear-gradient(135deg,var(--brand),var(--brand-dark));
  padding: 38px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-2);
}

.cta-panel h2, .cta-panel h3 {
  margin-top: 0;
  color: #fff;
}

.table-wrap {
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 10px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th, .data-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(143,23,71,.12);
  text-align: left;
}

.data-table th {
  color: var(--brand-dark);
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width:1100px) {
  .nav {
    position: fixed;
    top: 86px;
    left: 14px;
    right: 14px;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow-2);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width:1100px) {
  .nav.open {
    display: flex;
  }
}

@media (max-width:1100px) {
  .nav a {
    padding: 12px;
    border-radius: 12px;
  }
}

@media (max-width:1100px) {
  .nav a:hover {
    background: #fff0f6;
  }
}

@media (max-width:1100px) {
  .hamburger {
    display: flex;
  }
}

@media (max-width:1100px) {
  .nav-cta span {
    display: inline;
  }
}

@media (max-width:1100px) {
  .cards-4, .service-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width:1100px) {
  .cards-3, .blog-grid, .testimonial-grid, .map-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:1100px) {
  .feature, .split-box, .contact-grid, .page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:1100px) {
  .feature-media img {
    height: 380px;
  }
}

@media (max-width:1100px) {
  .sidebar {
    position: static;
  }
}

@media (max-width:1100px) {
  .hero h1 {
    font-size: clamp(2.2rem,8vw,3.7rem);
  }
}

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

@media (max-width:720px) {
  .topbar {
    font-size: .68rem;
  }
}

@media (max-width:720px) {
  .brand span {
    font-size: 1.08rem;
  }
}

@media (max-width:720px) {
  .brand img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width:720px) {
  .nav-wrap {
    height: 62px;
  }
}

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

@media (max-width:720px) {
  .hero-content {
    padding-top: 78px;
  }
}

@media (max-width:720px) {
  .hero-card {
    width: 100%;
  }
}

@media (max-width:720px) {
  .section {
    padding: 68px 0;
  }
}

@media (max-width:720px) {
  .service-grid, .cards-2, .cards-3, .cards-4, .blog-grid, .testimonial-grid, .map-grid, .stat-grid, .related-grid, .doc-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width:720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width:720px) {
  .split-box .box-content {
    padding: 28px;
  }
}

@media (max-width:720px) {
  .card-img, .service-card img {
    height: 190px;
  }
}

@media (max-width:720px) {
  .image-collage {
    grid-template-columns: 1fr;
  }
}

@media (max-width:720px) {
  .image-collage img:first-child {
    grid-column: auto;
  }
}

@media (max-width:720px) {
  .desktop-only {
    display: none;
  }
}

@media (max-width:720px) {
  .mobile-only {
    display: block;
  }
}

@media (max-width:720px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}

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

@media (max-width:720px) {
  .subhero {
    padding-top: 58px;
  }
}

@media (max-width:720px) {
  .section-title {
    font-size: 2.15rem;
  }
}

@media (max-width:720px) {
  .map-card .map-img {
    height: 220px;
  }
}

