/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
  /* Colors - Candy Gradient Palette */
  --clr-pink:       #f472b6;
  --clr-pink-light: #fce7f3;
  --clr-purple:     #a855f7;
  --clr-purple-mid: #c084fc;
  --clr-blue:       #60a5fa;
  --clr-blue-light: #dbeafe;
  --clr-teal:       #2dd4bf;
  --clr-teal-light: #ccfbf1;

  /* Gradient Definitions */
  --grad-hero:    linear-gradient(135deg, #fce7f3 0%, #ede9fe 40%, #dbeafe 80%, #ccfbf1 100%);
  --grad-primary: linear-gradient(135deg, #f472b6 0%, #a855f7 50%, #60a5fa 100%);
  --grad-accent:  linear-gradient(135deg, #a855f7 0%, #60a5fa 100%);
  --grad-warm:    linear-gradient(135deg, #f472b6 0%, #c084fc 100%);
  --grad-soft:    linear-gradient(135deg, #fce7f3 0%, #ede9fe 100%);
  --grad-dark:    linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a5f 100%);

  /* Text */
  --txt-base:    #1e1b2e;
  --txt-muted:   #6b6580;
  --txt-light:   #a09ab8;
  --txt-on-dark: #f0ecff;

  /* Backgrounds */
  --bg-base:   #fdfcff;
  --bg-soft:   #f8f4ff;
  --bg-card:   #ffffff;
  --bg-dark:   #1a1730;

  /* Border */
  --border-soft: rgba(168, 85, 247, 0.15);
  --border-card: rgba(168, 85, 247, 0.12);

  /* Spacing Scale */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* Border Radius Scale */
  --rad-sm:   8px;
  --rad-md:   16px;
  --rad-lg:   24px;
  --rad-xl:   32px;
  --rad-pill: 999px;

  /* Shadow Scale */
  --shadow-sm:  0 1px 3px rgba(168,85,247,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 12px rgba(168,85,247,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 12px 32px rgba(168,85,247,0.14), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl:  0 24px 64px rgba(168,85,247,0.18), 0 8px 16px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 40px rgba(168,85,247,0.25);

  /* Typography */
  --font-head: 'Familjen Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--txt-base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =========================================
   LAYOUT
   ========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section {
  padding-block: var(--space-9);
}

.section--soft {
  background: var(--bg-soft);
}

.section--dark {
  background: var(--bg-dark);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.section__header--light {
  color: var(--txt-on-dark);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-3);
}

.section__label--light {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--txt-base);
  margin-bottom: var(--space-4);
}

.section__title--light {
  color: var(--txt-on-dark);
}

.section__desc {
  font-size: 1.05rem;
  color: var(--txt-muted);
  line-height: 1.7;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(253, 252, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.nav__logo img { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--txt-muted);
  transition: color 0.25s var(--ease-in-out);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: var(--rad-pill);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover { color: var(--clr-purple); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  background: var(--grad-primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--rad-pill);
  font-weight: 600;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), opacity 0.25s;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  opacity: 0.9;
}

.nav__border {
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
}

.nav--scrolled .nav__border {
  transform: scaleX(1);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--txt-base);
  border-radius: var(--rad-pill);
  transition: all 0.3s var(--ease-out);
}

/* =========================================
   MOBILE MENU
   ========================================= */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 46, 0.5);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
  backdrop-filter: blur(3px);
}

.mobile-overlay--active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--bg-card);
  z-index: 960;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: var(--space-8) var(--space-6) var(--space-6);
  box-shadow: var(--shadow-xl);
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rad-pill);
  background: var(--bg-soft);
  color: var(--txt-muted);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu__close:hover {
  background: var(--grad-soft);
  color: var(--clr-purple);
}

.mobile-menu__links {
  margin-top: var(--space-7);
  flex: 1;
}

.mobile-menu__links li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition-delay: calc(var(--i) * 0.07s);
  border-bottom: 1px solid var(--border-soft);
}

.mobile-menu--open .mobile-menu__links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu__links a {
  display: block;
  padding: var(--space-4) 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--txt-base);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu__links a:hover {
  color: var(--clr-purple);
  padding-left: var(--space-3);
}

.mobile-menu__footer {
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-5);
  font-size: 0.85rem;
  color: var(--txt-muted);
  line-height: 1.8;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--rad-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), opacity 0.2s;
  cursor: pointer;
  min-height: 48px;
}

.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168,85,247,0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168,85,247,0.45);
  opacity: 0.95;
}

.btn--outline {
  background: transparent;
  color: var(--clr-purple);
  border: 2px solid var(--clr-purple);
}

.btn--outline:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  background: var(--grad-hero);
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f9a8d4 0%, transparent 70%);
  top: -100px; right: -100px;
}

.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #c4b5fd 0%, transparent 70%);
  bottom: 0; left: -80px;
}

.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #7dd3fc 0%, transparent 70%);
  top: 40%; right: 20%;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  padding-block: var(--space-9);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-card);
  border-radius: var(--rad-pill);
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-purple);
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.hero__badge i { color: var(--clr-teal); }

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--txt-base);
  margin-bottom: var(--space-5);
}

.hero__typed-wrapper {
  display: block;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-height: 1.3em;
}

.typed-cursor {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--txt-muted);
  line-height: 1.7;
  margin-bottom: var(--space-7);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero__img-card {
  border-radius: var(--rad-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__img-card--main {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/3;
  position: relative;
  z-index: 2;
}

.hero__img-card--float {
  position: absolute;
  width: 180px;
  aspect-ratio: 3/4;
  bottom: -20px;
  right: -20px;
  z-index: 3;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__stat-chip {
  position: absolute;
  top: 20px;
  left: -20px;
  z-index: 4;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-card);
  border-radius: var(--rad-pill);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt-base);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.hero__stat-chip i { color: var(--clr-teal); font-size: 1rem; }

.hero__stat-chip--2 {
  top: auto;
  bottom: 60px;
  left: -30px;
}

.hero__stat-chip--2 i { color: var(--clr-purple); }

/* =========================================
   SERVICES CARDS
   ========================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.card {
  background: var(--bg-card);
  border-radius: var(--rad-lg);
  padding: var(--space-7);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

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

.card--featured {
  background: linear-gradient(145deg, #fff 60%, #fce7f3 100%);
  border-color: rgba(244, 114, 182, 0.25);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(244,114,182,0.1);
}

.card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.card__icon-wrap--pink   { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #db2777; }
.card__icon-wrap--purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #7c3aed; }
.card__icon-wrap--teal   { background: linear-gradient(135deg, #ccfbf1, #99f6e4); color: #0d9488; }
.card__icon-wrap--blue   { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #2563eb; }

.card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--txt-base);
  margin-bottom: var(--space-3);
}

.card__text {
  font-size: 0.95rem;
  color: var(--txt-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.card__list li {
  font-size: 0.88rem;
  color: var(--txt-muted);
  padding-left: var(--space-5);
  position: relative;
}

.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-primary);
}

/* =========================================
   PROCESS
   ========================================= */
.process__track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
  position: relative;
}

.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-5);
  align-items: start;
  position: relative;
}

.process__step--alt {
  grid-template-columns: 1fr 80px;
  direction: rtl;
}

.process__step--alt > * { direction: ltr; }

.process__number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  padding-top: var(--space-2);
  text-align: center;
}

.process__content {
  background: var(--bg-card);
  border-radius: var(--rad-lg);
  padding: var(--space-6);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-3);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.process__content:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.process__step--alt .process__content:hover {
  transform: translateX(-4px);
}

.process__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--rad-md);
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-purple);
  font-size: 1.1rem;
  margin-bottom: var(--space-3);
}

.process__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--txt-base);
  margin-bottom: var(--space-2);
}

.process__text {
  font-size: 0.93rem;
  color: var(--txt-muted);
  line-height: 1.7;
}

.process__connector {
  width: 2px;
  height: var(--space-5);
  background: linear-gradient(180deg, var(--clr-purple), var(--clr-blue));
  margin-left: 39px;
  border-radius: var(--rad-pill);
  opacity: 0.4;
}

/* =========================================
   BENEFITS
   ========================================= */
.benefits__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.benefits__intro {
  font-size: 1.05rem;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}

.benefits__img {
  width: 100%;
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 16/10;
}

.benefits__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.benefit {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  background: var(--bg-card);
  border-radius: var(--rad-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.benefit:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(168,85,247,0.25);
}

.benefit__check {
  width: 36px;
  height: 36px;
  border-radius: var(--rad-pill);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(168,85,247,0.3);
}

.benefit__body { flex: 1; }

.benefit__title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--txt-base);
  margin-bottom: var(--space-1);
}

.benefit__text {
  font-size: 0.88rem;
  color: var(--txt-muted);
  line-height: 1.65;
}

/* =========================================
   ABOUT
   ========================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about__visual {
  position: relative;
  height: 480px;
}

.about__img {
  border-radius: var(--rad-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about__img--main {
  width: 80%;
  height: 380px;
  position: absolute;
  top: 0;
  left: 0;
}

.about__img--accent {
  width: 55%;
  height: 240px;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 4px solid var(--bg-card);
  box-shadow: var(--shadow-xl);
}

.about__tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--rad-pill);
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-purple);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  z-index: 5;
}

.about__tag i { color: var(--clr-pink); }

.about__text {
  font-size: 0.98rem;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.pillar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--bg-card);
  border-radius: var(--rad-md);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-card);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--txt-base);
  box-shadow: var(--shadow-sm);
}

.pillar i {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
}

/* =========================================
   GALLERY STRIP
   ========================================= */
.gallery__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.gallery__item {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30,27,46,0.85));
  color: #fff;
  padding: var(--space-5) var(--space-4) var(--space-3);
  font-size: 0.88rem;
  font-weight: 500;
}

/* =========================================
   CONTACT
   ========================================= */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-7);
  align-items: start;
}

.contact__card {
  background: var(--bg-card);
  border-radius: var(--rad-lg);
  padding: var(--space-6);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-4);
}

.contact__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--border-soft);
}

.contact__item:last-child { border-bottom: none; }

.contact__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--rad-md);
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-purple);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact__item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}

.contact__item p {
  font-size: 0.93rem;
  color: var(--txt-base);
  line-height: 1.5;
}

.contact__item a {
  color: var(--clr-purple);
  transition: color 0.2s;
}

.contact__item a:hover { color: var(--clr-pink); }

/* =========================================
   WIZARD FORM
   ========================================= */
.contact__form-wrap {
  background: var(--bg-card);
  border-radius: var(--rad-lg);
  padding: var(--space-7);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
}

.wizard__steps {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-7);
}

.wizard__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
}

.wizard__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 2px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--txt-muted);
  transition: all 0.3s var(--ease-out);
}

.wizard__step span {
  font-size: 0.72rem;
  color: var(--txt-light);
  font-weight: 500;
  white-space: nowrap;
}

.wizard__step--active .wizard__dot {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(168,85,247,0.4);
}

.wizard__step--active span {
  color: var(--clr-purple);
  font-weight: 600;
}

.wizard__step--done .wizard__dot {
  background: var(--clr-teal);
  border-color: transparent;
  color: #fff;
}

.wizard__line {
  flex: 1;
  height: 2px;
  background: var(--border-soft);
  max-width: 60px;
  margin-bottom: var(--space-5);
  border-radius: var(--rad-pill);
}

.wizard__panel {
  display: none;
  animation: slideIn 0.35s var(--ease-out);
}

.wizard__panel--active { display: block; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wizard__nav {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.wizard__nav--right { justify-content: flex-end; }

.form__group {
  margin-bottom: var(--space-5);
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--txt-muted);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--rad-md);
  border: 1.5px solid var(--border-soft);
  background: var(--bg-soft);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--txt-base);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
  min-height: 48px;
}

.form__input:focus {
  border-color: var(--clr-purple);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.12);
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a855f7' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form__check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.form__check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--border-soft);
  cursor: pointer;
  accent-color: var(--clr-purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.form__check-text {
  font-size: 0.88rem;
  color: var(--txt-muted);
  line-height: 1.5;
}

.form__check-text a {
  color: var(--clr-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-dark);
  color: var(--txt-on-dark);
  position: relative;
  overflow: hidden;
}

.footer__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
}

.footer .container {
  padding-block: var(--space-9) var(--space-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-7);
  margin-bottom: var(--space-8);
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(240,236,255,0.6);
  line-height: 1.7;
  margin-top: var(--space-4);
}

.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(240,236,255,0.5);
  margin-bottom: var(--space-4);
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__nav a {
  font-size: 0.9rem;
  color: rgba(240,236,255,0.75);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--clr-pink); }

.footer__contact p {
  font-size: 0.88rem;
  color: rgba(240,236,255,0.7);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  line-height: 1.5;
}

.footer__contact i {
  color: var(--clr-purple-mid);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact a {
  color: rgba(240,236,255,0.7);
  transition: color 0.2s;
}

.footer__contact a:hover { color: var(--clr-pink); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(240,236,255,0.4);
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-page {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-hero {
  background: var(--grad-hero);
  padding-block: var(--space-9) var(--space-7);
}

.legal-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-purple);
  margin-bottom: var(--space-3);
}

.legal-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--txt-base);
  margin-bottom: var(--space-3);
}

.legal-hero__date {
  font-size: 0.88rem;
  color: var(--txt-muted);
}

.legal-content {
  flex: 1;
  padding-block: var(--space-8);
}

.legal-content .container {
  max-width: 820px;
}

.legal-section {
  margin-bottom: var(--space-7);
}

.legal-summary {
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
  border-left: 4px solid var(--clr-purple);
  border-radius: 0 var(--rad-md) var(--rad-md) 0;
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-4);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--txt-base);
}

.legal-detail {
  font-size: 0.93rem;
  color: var(--txt-muted);
  line-height: 1.8;
}

.legal-detail p { margin-bottom: var(--space-3); }

.legal-detail ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-detail ul li { margin-bottom: var(--space-2); }

h2.legal-heading {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--txt-base);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border-soft);
}

h3.legal-sub {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt-base);
  margin-bottom: var(--space-2);
}

/* =========================================
   THANKS PAGE
   ========================================= */
.thanks-page {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thanks-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--grad-hero);
  padding-block: var(--space-10);
}

.thanks-card {
  background: var(--bg-card);
  border-radius: var(--rad-xl);
  padding: var(--space-9) var(--space-8);
  box-shadow: var(--shadow-xl);
  max-width: 520px;
  width: 100%;
}

.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  box-shadow: 0 8px 24px rgba(168,85,247,0.4);
}

.thanks-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--txt-base);
  margin-bottom: var(--space-3);
}

.thanks-text {
  font-size: 1rem;
  color: var(--txt-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.thanks-countdown {
  font-size: 0.9rem;
  color: var(--txt-light);
  margin-bottom: var(--space-5);
}

.thanks-countdown strong {
  color: var(--clr-purple);
  font-size: 1.1rem;
}

.thanks-link {
  color: var(--clr-purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.thanks-link:hover { color: var(--clr-pink); }

/* =========================================
   COOKIE CONSENT PANEL
   ========================================= */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,27,46,0.45);
  z-index: 1800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
  backdrop-filter: blur(2px);
}

.cookie-overlay--active {
  opacity: 1;
  pointer-events: all;
}

.cookie-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--bg-card);
  z-index: 1900;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}

.cookie-panel--open {
  transform: translateX(0);
}

.cookie-panel__header {
  padding: var(--space-6) var(--space-5) var(--space-4);
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(135deg, #fce7f3 0%, #ede9fe 100%);
}

.cookie-panel__shield {
  width: 44px;
  height: 44px;
  border-radius: var(--rad-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-md);
}

.cookie-panel__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--txt-base);
  margin-bottom: var(--space-2);
}

.cookie-panel__desc {
  font-size: 0.82rem;
  color: var(--txt-muted);
  line-height: 1.6;
}

.cookie-panel__body {
  flex: 1;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-category {
  background: var(--bg-soft);
  border-radius: var(--rad-md);
  padding: var(--space-4);
  border: 1px solid var(--border-card);
}

.cookie-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2);
}

.cookie-category__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--txt-base);
}

.cookie-category__desc {
  font-size: 0.78rem;
  color: var(--txt-muted);
  line-height: 1.5;
}

/* Toggle Switch */
.toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.toggle input { opacity: 0; width: 0; height: 0; }

.toggle__slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: var(--rad-pill);
  cursor: pointer;
  transition: background 0.3s;
}

.toggle__slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform 0.3s var(--ease-out);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle input:checked + .toggle__slider { background: var(--clr-purple); }
.toggle input:checked + .toggle__slider::before { transform: translateX(18px); }
.toggle input:disabled + .toggle__slider { background: var(--clr-teal); cursor: not-allowed; opacity: 0.8; }

.cookie-panel__footer {
  padding: var(--space-5);
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cookie-panel__footer .btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger {
    display: flex;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
  }

  .hero__container {
    grid-template-columns: 1fr;
    padding-block: var(--space-7);
    gap: var(--space-6);
  }

  .hero__visual { display: none; }

  .hero__title { font-size: clamp(1.8rem, 8vw, 2.5rem); }

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

  .process__step,
  .process__step--alt {
    grid-template-columns: 60px 1fr;
    direction: ltr;
  }

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

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

  .about__visual {
    height: 300px;
  }

  .about__img--main {
    width: 70%;
    height: 250px;
  }

  .about__img--accent {
    width: 50%;
    height: 180px;
  }

  .gallery__strip {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

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

  .wizard__nav {
    flex-direction: column;
  }

  .wizard__nav .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding-block: var(--space-7);
  }

  .section__header {
    margin-bottom: var(--space-6);
  }

  .cookie-panel {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .contact__form-wrap {
    padding: var(--space-5);
  }

  .thanks-card {
    padding: var(--space-6) var(--space-5);
    margin-inline: var(--space-4);
  }
}