:root {
  --bg: #fff8fb;
  --bg-soft: #fff0f7;
  --bg-card: rgba(255, 255, 255, 0.78);
  --text: #211728;
  --muted: #746578;
  --primary: #8f4cff;
  --primary-dark: #5f2ec4;
  --accent: #ff6ca8;
  --gold: #f2b84b;
  --white: #ffffff;
  --dark: #1b1024;
  --dark-2: #2b183d;
  --border: rgba(92, 50, 119, 0.16);
  --shadow: 0 28px 80px rgba(80, 35, 115, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 108, 168, 0.22), transparent 32rem),
    radial-gradient(circle at 80% 8%, rgba(143, 76, 255, 0.18), transparent 30rem),
    var(--bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--primary-dark);
  border-radius: 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 251, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 42px rgba(42, 18, 64, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 1.06rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary-dark);
  background: rgba(143, 76, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(42, 18, 64, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 92px 0 72px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.hero::before {
  right: -110px;
  top: 60px;
  background: rgba(255, 108, 168, 0.18);
}

.hero::after {
  left: -120px;
  bottom: 20px;
  background: rgba(242, 184, 75, 0.18);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.085em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.28rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-heading p,
.split-copy p,
.process-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 36px rgba(143, 76, 255, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 48px rgba(143, 76, 255, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
}

.btn-ghost.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 247, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  border-radius: 30px;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(42, 18, 64, 0.14);
  backdrop-filter: blur(14px);
}

.floating-card strong {
  font-size: 0.95rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.card-one {
  top: 28px;
  left: -18px;
}

.card-two {
  right: -20px;
  bottom: 42px;
}

.section {
  padding: 82px 0;
}

.intro-band {
  padding-top: 30px;
}

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

.intro-grid article,
.service-card,
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 58px rgba(42, 18, 64, 0.08);
  backdrop-filter: blur(16px);
}

.intro-grid article {
  min-height: 245px;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.stat {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  color: var(--primary-dark);
  background: rgba(143, 76, 255, 0.1);
  border-radius: 50%;
  font-weight: 900;
}

.intro-grid p,
.service-card p,
.faq-item p {
  color: var(--muted);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 38px;
  text-align: center;
}

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

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

.service-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
  background: #fff0f7;
}

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

.service-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary-dark);
  font-weight: 900;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 240, 247, 0.46), rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at 0% 70%, rgba(242, 184, 75, 0.14), transparent 34rem);
}

.split,
.process-grid,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 46px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  padding: 10px 13px;
  color: var(--primary-dark);
  background: rgba(143, 76, 255, 0.1);
  border-radius: 999px;
  font-weight: 900;
}

.split-panel {
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.split-panel img {
  width: 100%;
  border-radius: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  margin: 0;
  border-radius: 30px;
  box-shadow: 0 18px 54px rgba(42, 18, 64, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(27, 16, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(143, 76, 255, 0.46), transparent 28rem),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.section-dark .eyebrow,
.contact-card .eyebrow {
  color: #ffd1e6;
}

.section-dark p,
.steps span,
.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 24px 24px 24px 78px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 23px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--dark);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.faq-section {
  padding-bottom: 36px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.faq-item {
  border-radius: 22px;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
}

.contact-section {
  padding-top: 36px;
}

.contact-card {
  padding: 44px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 108, 168, 0.42), transparent 24rem),
    linear-gradient(135deg, var(--primary-dark), #231034);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 760px;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 52px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  background: #130b1a;
}

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

.footer-brand {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.reveal {
  transform: translateY(22px);
  opacity: 0;
  transition: transform 640ms var(--ease), opacity 640ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .process-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .intro-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }

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

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

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    inset: 68px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 16px;
  }

  .hero {
    padding: 48px 0 50px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .hero-visual,
  .split-panel {
    padding: 14px;
    border-radius: 30px;
  }

  .floating-card {
    position: static;
    margin-top: 10px;
  }

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

  .gallery-item {
    min-height: 285px;
  }

  .section {
    padding: 58px 0;
  }

  .contact-card {
    padding: 28px;
    border-radius: 28px;
  }

  .footer-bottom {
    display: grid;
  }
}
