:root {
  color-scheme: light;
  --bg: #f5f3f8;
  --surface: #ffffff;
  --surface-strong: #efeaf4;
  --text: #1f1320;
  --text-muted: #6a5b73;
  --primary: #6a3a8a;
  --primary-dark: #4d2766;
  --accent: #b89dcd;
  --border: #e1d5ec;
  --shadow: 0 22px 60px rgba(106, 58, 138, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(106, 58, 138, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-name {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
  font-size: 1.16rem;
}

.brand-tag {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button-icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 28px rgba(106, 58, 138, 0.22);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(106, 58, 138, 0.18);
}

.hero {
  position: relative;
  min-height: 660px;
  padding: 4rem 0 5rem;
  background: url("Reference/hero-banner.jpeg") center/cover no-repeat;
  background-size: cover;
  color: white;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: white;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #f6f0fb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  color: white;
}

.hero p {
  margin: 0;
  max-width: 46rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.section {
  padding: 5.5rem 0;
  border-bottom: 1px solid rgba(106, 58, 138, 0.08);
}

.section-light {
  background: #faf7fc;
}

.section-white {
  background: #ffffff;
}

.section-dark {
  background: #1a0f23;
  color: #f3eaf9;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(243, 234, 249, 0.82);
}

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

.section-heading h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--text);
}

.section-heading p {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 2rem;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.4rem 2rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(106, 58, 138, 0.06);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 18px;
  background: rgba(106, 58, 138, 0.10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 1.25rem;
}

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

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 240px;
  background: rgba(106, 58, 138, 0.08);
  box-shadow: 0 10px 28px rgba(106, 58, 138, 0.10);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 240px;
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 12px 28px rgba(106, 58, 138, 0.08);
}

.testimonial-quote {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  color: var(--primary-dark);
}

.testimonial-role {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content h2 {
  margin: 0.75rem 0 1.2rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.about-content p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.priority-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.priority-logo {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.priority-logo img {
  max-width: 280px;
  width: 100%;
}

.priority-content h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.priority-content p {
  margin: 0 0 1.2rem;
}

.priority-content .button {
  margin-top: 0.8rem;
}

.site-footer {
  padding: 2.5rem 0;
  background: #1a0f23;
  color: white;
}

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

.footer-brand {
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: white;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  z-index: 50;
  transition: transform 180ms ease;
}

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

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.3);
}

@media (max-width: 960px) {
  .grid-3,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .priority-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .priority-logo {
    padding: 1.8rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.9rem;
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 460px;
    padding: 3rem 0 3.5rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .section {
    padding: 3rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .grid,
  .gallery-grid,
  .testimonial-grid {
    gap: 1.25rem;
  }

  .grid-3,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .testimonial-card {
    padding: 1.8rem;
    border-radius: 20px;
  }

  .button {
    padding: 0.85rem 1.4rem;
    width: 100%;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 200px;
  }

  .priority-logo img {
    max-width: 220px;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }
}
