


:root {
  --candy-pink: #f472b6;
  --candy-purple: #a855f7;
  --candy-blue: #60a5fa;
  --candy-teal: #2dd4bf;
  --candy-peach: #fb923c;

  --grad-primary: linear-gradient(135deg, #f472b6 0%, #a855f7 40%, #60a5fa 100%);
  --grad-candy: linear-gradient(135deg, #fce7f3 0%, #ede9fe 50%, #dbeafe 100%);
  --grad-vibrant: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #3b82f6 100%);
  --grad-teal: linear-gradient(135deg, #a855f7 0%, #2dd4bf 100%);
  --grad-warm: linear-gradient(135deg, #fb923c 0%, #f472b6 100%);

  --color-bg: #fafafa;
  --color-bg-light: #f8f4ff;
  --color-surface: #ffffff;
  --color-surface-tint: #fdf4ff;

  --color-text: #1e1333;
  --color-text-muted: #6b5f7a;
  --color-text-light: #a897bb;

  --color-border: #ede8f7;
  --color-border-strong: #d8cef0;

  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw, 0.75rem);
  --space-md: clamp(0.75rem, 1.5vw, 1.25rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 5vw, 4rem);
  --space-2xl: clamp(3rem, 8vw, 7rem);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

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

  --font: 'Outfit', sans-serif;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  --header-h: 72px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a {
  color: var(--candy-purple);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--candy-pink); }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.container--narrow {
  max-width: 860px;
}


h1, h2, h3, h4, h5 {
  font-family: var(--font);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; }

p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--color-text-muted); }


.text--gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.text--light { color: rgba(255,255,255,0.85); }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--grad-vibrant);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(168,85,247,0);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 24px rgba(168,85,247,0.35);
  color: #fff;
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--candy-purple);
  border-color: var(--candy-purple);
}
.btn--outline:hover {
  background: var(--color-surface-tint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--candy-purple);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  color: #fff;
}

.btn--large {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--space-md);
}

.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-img { height: 36px; width: auto; }

.header__nav {
  display: none;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-left: auto;
}

@media (min-width: 900px) {
  .header__nav { display: flex; }
}

.header__nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--transition-fast);
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.header__nav-link:hover { color: var(--candy-purple); }
.header__nav-link:hover::after { transform: scaleX(1); }
.header__nav-link--active { color: var(--candy-purple); }
.header__nav-link--active::after { transform: scaleX(1); }

.header__cta {
  margin-left: auto;
  display: none;
}
@media (min-width: 900px) {
  .header__cta { display: inline-flex; }
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.header__hamburger:hover { background: var(--color-bg-light); }
.header__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}
@media (min-width: 900px) {
  .header__hamburger { display: none; }
}


.nav-pill {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all var(--transition-base);
}
.nav-pill.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.nav-pill__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--grad-vibrant);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  font-size: 1.1rem;
  transition: all var(--transition-base);
}
.nav-pill__btn:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}


.mobile-sheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-sheet.is-open { pointer-events: auto; }

.mobile-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30,19,51,0.5);
  opacity: 0;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(4px);
}
.mobile-sheet.is-open .mobile-sheet__backdrop { opacity: 1; }

.mobile-sheet__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 0.75rem 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -8px 40px rgba(168,85,247,0.18);
}
.mobile-sheet.is-open .mobile-sheet__panel { transform: translateY(0); }

.mobile-sheet__handle {
  width: 40px;
  height: 4px;
  background: var(--color-border-strong);
  border-radius: var(--radius-full);
  margin: 0 auto 1.5rem;
}

.mobile-sheet__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.mobile-sheet__link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-text);
  transition: all var(--transition-fast);
}
.mobile-sheet__link i {
  width: 20px;
  color: var(--candy-purple);
  font-size: 1rem;
}
.mobile-sheet__link:hover {
  background: var(--color-bg-light);
  color: var(--candy-purple);
}

.mobile-sheet__cta { width: 100%; justify-content: center; }


.hero {
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--grad-candy);
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,114,182,0.2) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.18) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3%) scale(1.03); }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--candy-purple);
  margin-bottom: var(--space-md);
}
.hero__badge i { color: var(--candy-blue); }

.hero__heading {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 580px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

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

.hero__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  padding-bottom: var(--space-xl);
  padding-top: var(--space-md);
}


.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.card--hero {
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.card--hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.card--hero:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-strong);
}
.card--hero:hover::before { opacity: 1; }

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--grad-candy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--candy-purple);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}
.card--hero:hover .card__icon {
  background: var(--grad-vibrant);
  color: #fff;
}

.card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.card--service {
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  cursor: default;
}
.card--service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(168,85,247,0.25);
}

.card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--grad-candy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--candy-purple);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}
.card--service:hover .card__icon-wrap {
  background: var(--grad-vibrant);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.card--review {
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card__stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 0.9rem;
}

.card__quote {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.card__author { margin-top: auto; }

.card__author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 600;
}
.card__author-info span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}


.section {
  padding: var(--space-2xl) 0;
}

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

.section--gradient-bg {
  background: var(--grad-vibrant);
  position: relative;
  overflow: hidden;
}
.section--gradient-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.section--cta {
  background: var(--grad-vibrant);
  position: relative;
  overflow: hidden;
}
.section--cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section__header--light { color: #fff; }
.section__header--light .section__heading { color: #fff; }
.section__header--light .section__sub { color: rgba(255,255,255,0.75); }

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--candy-purple);
  background: var(--grad-candy);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.9rem;
  margin-bottom: var(--space-sm);
}
.section__label--light {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.section__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.section__heading--light { color: #fff; }

.section__sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}


.problem-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .problem-layout { grid-template-columns: 1fr 1fr; }
}

.problem-visual { position: relative; }

.problem-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.problem-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(30,19,51,0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}
.problem-badge i { color: var(--candy-peach); font-size: 1rem; flex-shrink: 0; }

.problem-text { padding: var(--space-sm) 0; }
.problem-text .section__label { display: block; margin-bottom: var(--space-sm); }
.problem-text h2 { margin-bottom: var(--space-md); }
.problem-text p { margin-bottom: var(--space-md); }


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}


.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

.benefit {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
}
.benefit:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.benefit__check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefit__title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.benefit__text {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}


.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: var(--space-md);
}
@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.bento {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}
.bento:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.bento--wide { grid-column: 1 / 3; }
.bento--tall { grid-row: 1 / 3; }
@media (max-width: 640px) {
  .bento--wide, .bento--tall { grid-column: auto; grid-row: auto; }
}

.bento__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.bento:hover .bento__img { transform: scale(1.04); }

.bento__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(30,19,51,0.9) 0%, transparent 100%);
}

.bento__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--candy-pink);
  margin-bottom: 0.35rem;
}

.bento__title {
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 0.35rem;
}

.bento__text {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.5;
}


.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .cta-block {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.cta-block__heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-block__sub {
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}
.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  flex-shrink: 0;
}


.page-hero {
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-xl);
  background: var(--grad-candy);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 50vw;
  height: 80%;
  background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero--compact {
  padding-top: calc(var(--header-h) + var(--space-lg));
  padding-bottom: var(--space-lg);
}

.page-hero__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-sm);
}

.page-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}


.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.breadcrumb__link {
  color: var(--candy-purple);
  font-weight: 500;
  transition: color var(--transition-fast);
}
.breadcrumb__link:hover { color: var(--candy-pink); }
.breadcrumb__sep { font-size: 0.65rem; color: var(--color-text-light); }
.breadcrumb__current { color: var(--color-text-muted); font-weight: 500; }


.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.why-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.why-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(168,85,247,0.25);
  transform: translateY(-3px);
}

.why-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--grad-candy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--candy-purple);
  flex-shrink: 0;
  transition: all var(--transition-base);
}
.why-item:hover .why-item__icon {
  background: var(--grad-vibrant);
  color: #fff;
}

.why-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.why-item__body p {
  font-size: 0.9rem;
  line-height: 1.6;
}


.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .split-layout { grid-template-columns: 1fr 1fr; }
  .split-layout--reverse .split-layout__visual { order: -1; }
}

.split-layout__text { display: flex; flex-direction: column; gap: var(--space-md); }
.split-layout__text .section__label { display: block; }
.split-layout__text h2 { margin-bottom: 0; }
.split-layout__text p { margin: 0; }

.split-layout__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}


.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.region-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}
.region-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}

.region-card i {
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-sm);
  display: block;
}
.region-card h4 { color: #fff; margin-bottom: 0.5rem; }
.region-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.region-note {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}


.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: var(--grad-primary);
  opacity: 0.3;
}
@media (max-width: 480px) {
  .process-steps::before { left: 20px; }
}

.process-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-base);
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { padding-left: var(--space-sm); }

.process-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-vibrant);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.process-step__body p {
  font-size: 0.95rem;
  line-height: 1.65;
}


.limits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.limit-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.limit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.limit-card--no { border-left: 3px solid #f87171; }
.limit-card--yes { border-left: 3px solid var(--candy-teal); }

.limit-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}
.limit-card--no .limit-card__icon { background: #fef2f2; color: #f87171; }
.limit-card--yes .limit-card__icon { background: #f0fdfa; color: var(--candy-teal); }

.limit-card h4 { margin-bottom: 0.4rem; font-size: 0.95rem; }
.limit-card p { font-size: 0.875rem; }


.cycle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.cycle-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.cycle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(168,85,247,0.2);
}

.cycle-card__season {
  font-size: 1.8rem;
  color: var(--candy-purple);
  margin-bottom: var(--space-sm);
  display: block;
}

.cycle-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.cycle-card__text { font-size: 0.9rem; line-height: 1.6; }


.house-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.house-type {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}
.house-type:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.house-type__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.house-type:hover .house-type__img { transform: scale(1.04); }

.house-type__body { padding: var(--space-lg); }
.house-type__title { margin-bottom: 0.5rem; font-size: 1rem; }
.house-type__body p { font-size: 0.9rem; }


.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1.6fr 1fr; }
}

.contact-form-wrap__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}


.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

.form-field__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-field__req { color: var(--candy-pink); }

.form-field__input {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  transition: all var(--transition-base);
  outline: none;
  width: 100%;
}
.form-field__input:focus {
  border-color: var(--candy-purple);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.12);
}
.form-field__input::placeholder { color: var(--color-text-light); }

.form-field__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 d='M1 1l5 5 5-5' stroke='%23a855f7' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-field__textarea { resize: vertical; min-height: 130px; }

.form-field--checkbox { flex-direction: row; align-items: flex-start; gap: 0.75rem; }

.form-field__checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.form-field__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--candy-purple);
  cursor: pointer;
}
.form-field__checkbox-text a { color: var(--candy-purple); text-decoration: underline; }

.form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #dc2626;
  font-size: 0.875rem;
}

.form-submit { align-self: flex-start; min-width: 180px; justify-content: center; }


.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info__block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}
.contact-info__item:last-child { margin-bottom: 0; }

.contact-info__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--grad-candy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--candy-purple);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-info__item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.contact-info__item a, .contact-info__item span {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}
.contact-info__item a:hover { color: var(--candy-purple); }


.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: var(--grad-primary);
  opacity: 0.2;
}

.timeline-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-md) 0;
  transition: padding var(--transition-base);
}
.timeline-item:hover { padding-left: var(--space-sm); }

.timeline-item__dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-vibrant);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.timeline-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--color-text);
}

.timeline-item__text { font-size: 0.9rem; line-height: 1.6; }


.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.map-iframe { display: block; }


.swiper { padding-bottom: 3rem !important; }

.swiper-pagination-bullet {
  background: var(--color-border-strong);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all var(--transition-base);
}
.swiper-pagination-bullet-active {
  background: var(--candy-purple);
  width: 24px;
  border-radius: 4px;
}

.swiper-button-prev, .swiper-button-next {
  color: var(--candy-purple) !important;
  background: var(--color-surface);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background: var(--grad-vibrant);
  color: #fff !important;
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 0.9rem !important;
  font-weight: 900;
}


.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.75);
  padding: var(--space-2xl) 0 0;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; }
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
  position: relative;
  display: inline-block;
}
.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--candy-pink);
  transition: width var(--transition-base);
}
.footer__links a:hover { color: #fff; }
.footer__links a:hover::after { width: 100%; }

.footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__address p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.footer__address i {
  color: var(--candy-purple);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.footer__address a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}
.footer__address a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}


.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  padding-top: calc(var(--header-h) + var(--space-2xl));
  background: var(--grad-candy);
}

.thanks-block {
  text-align: center;
  max-width: 520px;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.thanks-block__icon {
  font-size: 4rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  display: block;
}

.thanks-block__heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

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

.thanks-block__sub {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.thanks-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}


.legal-doc {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.legal-doc__intro {
  background: var(--color-bg-light);
  border-left: 3px solid var(--candy-purple);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.legal-section {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}
.legal-section:last-child { border-bottom: none; }

.legal-section__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-bg-light);
}
.legal-section__heading--letter {
  color: var(--candy-purple);
}

.legal-section p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}
.legal-section a {
  color: var(--candy-purple);
  text-decoration: underline;
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-block__actions { flex-direction: column; width: 100%; }
  .cta-block__actions .btn { justify-content: center; }
  .thanks-block__actions { flex-direction: column; }
  .thanks-block__actions .btn { width: 100%; justify-content: center; }
  .bento-grid { grid-template-columns: 1fr; }
}


.header.is-scrolled {
  height: 56px;
  box-shadow: var(--shadow-md);
}
.header.is-hidden {
  transform: translateY(-100%);
}