/* ============================================
   WEXEGA NUBUSU — STYLE.CSS
   Design: Kinetic Typography + Card Grid
   ============================================ */


:root {
  --color-bg: #f5f4f0;
  --color-surface: #fdfcf8;
  --color-dark: #141218;
  --color-dark-mid: #1e1b24;
  --color-text: #1e1b24;
  --color-text-mid: #4a4560;
  --color-text-light: #8880a0;

  --color-primary: #5b3af5;
  --color-primary-dark: #3d1fd4;
  --color-primary-light: #7c5ef8;
  --color-secondary: #f5a623;
  --color-accent: #e83e8c;
  --color-accent-light: #f06daa;

  --grad-primary: linear-gradient(135deg, #5b3af5 0%, #3d1fd4 100%);
  --grad-hero: linear-gradient(135deg, #1a0e3d 0%, #2d1b69 40%, #5b3af5 100%);
  --grad-section: linear-gradient(135deg, #2d1b69 0%, #5b3af5 60%, #7c5ef8 100%);
  --grad-accent: linear-gradient(135deg, #e83e8c 0%, #f5a623 100%);

  --shadow-sm: 0 2px 8px rgba(91,58,245,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(91,58,245,0.12), 0 2px 6px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 48px rgba(91,58,245,0.16), 0 4px 12px rgba(0,0,0,0.10);
  --shadow-xl: 0 32px 64px rgba(91,58,245,0.20), 0 8px 24px rgba(0,0,0,0.12);
  --shadow-card: 0 4px 16px rgba(91,58,245,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 16px 40px rgba(91,58,245,0.20), 0 4px 12px rgba(0,0,0,0.10);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --nav-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

ul { list-style: none; }


h1, h2, h3, h4 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text);
}

.section__heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section__heading--light { color: #fdfcf8; }

.section__sub {
  font-size: 1.05rem;
  color: var(--color-text-mid);
  max-width: 600px;
  margin: 0 auto;
}

.section__sub--light { color: rgba(255,255,255,0.75); }

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(91,58,245,0.08);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.label--light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
}

.label--accent {
  color: var(--color-secondary);
  background: rgba(245,166,35,0.12);
}

.body-text {
  font-size: 1.05rem;
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

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


@keyframes kineticShift {
  0%, 100% { letter-spacing: -0.01em; color: #fdfcf8; }
  50% { letter-spacing: 0.02em; color: var(--color-secondary); }
}

@keyframes kineticWeight {
  0%, 100% { font-weight: 800; opacity: 1; }
  50% { font-weight: 700; opacity: 0.85; }
}

@keyframes kineticGlow {
  0%, 100% { color: #fdfcf8; text-shadow: none; }
  50% { color: var(--color-accent-light); text-shadow: 0 0 40px rgba(232,62,140,0.3); }
}

@keyframes kineticPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.kinetic--shift { animation: kineticShift 5s ease-in-out infinite; display: inline-block; }
.kinetic--weight { animation: kineticWeight 4s ease-in-out infinite; display: inline-block; }
.kinetic--glow { animation: kineticGlow 4.5s ease-in-out infinite; display: inline-block; }
.kinetic--pulse { animation: kineticPulse 3s ease-in-out infinite; display: inline-block; }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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


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

.section--light { background: var(--color-bg); }
.section--white { background: var(--color-surface); }
.section--dark { background: var(--color-dark); }
.section--gradient { background: var(--grad-section); }
.section--accent { background: var(--grad-accent); }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-primary-dark);
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(20,18,24,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition-slow), background var(--transition);
}

.nav--hidden { transform: translateY(-100%); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

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

.nav__link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__link:hover { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--active { color: #fff; }
.nav__link--active::after { transform: scaleX(1); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}


.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--color-dark-mid);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.55s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.mobile-menu--open {
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  pointer-events: all;
}

.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
}

.mobile-menu--open .mobile-menu__nav {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__link {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.mobile-menu__link:hover { color: var(--color-secondary); }


.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(20,18,24,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  height: 60px;
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav .bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  transition: color var(--transition);
  padding: 8px 0;
  min-height: 44px;
}

.bottom-nav .bottom-nav__item i { font-size: 1.1rem; }

.bottom-nav .bottom-nav__item--active,
.bottom-nav .bottom-nav__item:hover { color: var(--color-primary-light); }


.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

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

.hero {
  position: relative;
  z-index: 0;
}

.hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
  color: #fdfcf8;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 2rem;
}


.hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.breadcrumb-step__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.breadcrumb-step--active .breadcrumb-step__dot {
  background: var(--color-primary);
  border-color: var(--color-primary-light);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(91,58,245,0.25);
}

.breadcrumb-step__label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  font-weight: 500;
}

.breadcrumb-step--active .breadcrumb-step__label { color: rgba(255,255,255,0.9); }

.breadcrumb-step__line {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }


.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card-stack {
  position: relative;
  width: 280px;
  height: 320px;
}

.hero__doc {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__doc--back {
  width: 220px;
  height: 260px;
  top: 40px;
  left: 20px;
  transform: rotate(-8deg);
  opacity: 0.4;
  box-shadow: var(--shadow-md);
}

.hero__doc--mid {
  width: 240px;
  height: 280px;
  top: 20px;
  left: 10px;
  transform: rotate(-3deg);
  opacity: 0.65;
  box-shadow: var(--shadow-lg);
}

.hero__doc--front {
  width: 260px;
  height: 300px;
  top: 0;
  left: 0;
  transform: rotate(2deg);
  box-shadow: var(--shadow-xl);
  animation: float 4s ease-in-out infinite;
}

.hero__doc-badge {
  display: inline-block;
  background: var(--grad-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  letter-spacing: 0.08em;
}

.hero__doc-line {
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-bg);
}

.hero__doc-line--long { width: 100%; }
.hero__doc-line--med { width: 70%; }
.hero__doc-line--short { width: 45%; }

.hero__doc-line--vivid { background: rgba(91,58,245,0.15); }


.page-hero {
  background: var(--grad-hero);
  padding: calc(var(--nav-h) + var(--space-2xl)) var(--space-md) var(--space-2xl);
  text-align: center;
}

.page-hero__content {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero__heading {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fdfcf8;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}


.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card--service {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(91,58,245,0.3);
  flex-shrink: 0;
}

.card__title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
}

.card__body {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.65;
  flex: 1;
}

.card__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}

.card__link:hover { gap: 0.7rem; color: var(--color-primary-dark); }

.card--thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.75rem 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text-mid);
  font-weight: 500;
  text-align: center;
}

.card--thanks i { font-size: 1.5rem; color: var(--color-primary); }
.card--thanks:hover { color: var(--color-primary); }


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}


.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.problem-text { display: flex; flex-direction: column; }

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


.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.ba-arrow {
  font-size: 1.5rem;
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
}

.ba-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.ba-card--before { border-top: 3px solid #e74c3c; }
.ba-card--after { border-top: 3px solid #27ae60; }

.ba-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.ba-card--before .ba-card__tag { background: #fdf0ef; color: #e74c3c; }
.ba-card--after .ba-card__tag { background: #edfbf1; color: #27ae60; }

.ba-card__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.ba-card__body {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.ba-card__issues, .ba-card__wins {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.issue-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: #fdf0ef;
  color: #c0392b;
  font-weight: 500;
}

.win-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: #edfbf1;
  color: #1e8449;
  font-weight: 500;
}


.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.who-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.who-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background var(--transition), border-color var(--transition);
}

.who-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(91,58,245,0.4);
}

.who-card__icon {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-top: 2px;
  flex-shrink: 0;
}

.who-card__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fdfcf8;
  margin-bottom: 0.25rem;
}

.who-card__body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}


.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

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

.experience-img-wrap { position: relative; }

.exp-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.exp-step:last-child { border-bottom: none; }

.exp-step__num {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: rgba(91,58,245,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.exp-step__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.exp-step__body {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.65;
}


.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.faq-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
}

.faq-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.faq-card__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fdfcf8;
}

.faq-card__icon {
  font-size: 0.9rem;
  color: var(--color-secondary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-card--open .faq-card__icon { transform: rotate(45deg); }

.faq-card__answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
}

.faq-card--open .faq-card__answer { display: block; }


.photo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.photo-feature__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-strip__heading {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #fff;
  line-height: 1.2;
}

.cta-strip__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
}


.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
}

.footer__cta-heading {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fdfcf8;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.footer__cta-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer__contact-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact-info p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer__contact-info i { color: var(--color-primary-light); font-size: 0.85rem; }
.footer__contact-info a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__contact-info a:hover { color: #fff; }

.footer__links {
  display: flex;
  gap: var(--space-xl);
}

.footer__col h4 { 
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fdfcf8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__col-title { color: #fdfcf8; }

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__col a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem var(--space-md);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  max-width: 1200px;
  margin: 0 auto;
}


.think-patterns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pattern-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: background var(--transition), transform var(--transition);
}

.pattern-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.pattern-card__num {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.pattern-card__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fdfcf8;
  margin-bottom: 0.6rem;
}

.pattern-card__body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.think-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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


.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.workshop-item {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-primary);
  transition: box-shadow var(--transition), transform var(--transition);
}

.workshop-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.workshop-item__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.workshop-item__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(91,58,245,0.3);
}

.workshop-item__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.workshop-item__meta {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.workshop-item__body p {
  font-size: 0.97rem;
  color: var(--color-text-mid);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.workshop-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(91,58,245,0.08);
  color: var(--color-primary);
  font-weight: 500;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.format-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.format-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-3px);
}

.format-card__icon {
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.format-card__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fdfcf8;
  margin-bottom: 0.6rem;
}

.format-card__body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.works-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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


.method-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

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

.method-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.method-step--reverse { direction: rtl; }
.method-step--reverse > * { direction: ltr; }

.method-step__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.method-step__num {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.method-step__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fdfcf8;
  margin-bottom: 0.75rem;
}

.method-step__body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.method-step__visual--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ref-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  width: 280px;
}

.ref-card__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-primary);
}

.ref-card__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-mid);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.ref-card__item i { color: #27ae60; font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }


.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: 3rem;
}


.wizard-steps {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.wizard-step__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(91,58,245,0.1);
  border: 2px solid rgba(91,58,245,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-light);
  transition: all var(--transition);
}

.wizard-step--active .wizard-step__dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(91,58,245,0.15);
}

.wizard-step--done .wizard-step__dot {
  background: #27ae60;
  border-color: #27ae60;
  color: #fff;
}

.wizard-step__label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-light);
  white-space: nowrap;
}

.wizard-step--active .wizard-step__label { color: var(--color-primary); }
.wizard-step--done .wizard-step__label { color: #27ae60; }

.wizard-step__connector {
  flex: 1;
  height: 2px;
  background: rgba(91,58,245,0.15);
  margin-bottom: 18px;
}

.wizard-panel { display: flex; flex-direction: column; gap: 1.25rem; }
.wizard-panel--hidden { display: none; }

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

.form-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
}

.required { color: var(--color-accent); }

.form-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(91,58,245,0.15);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(91,58,245,0.12);
}

.form-select { cursor: pointer; appearance: none; }

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-mid);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.form-checkbox-label a { color: var(--color-primary); text-decoration: underline; }

.wizard-nav { display: flex; justify-content: flex-end; padding-top: 0.5rem; }
.wizard-nav--two { display: flex; justify-content: space-between; padding-top: 0.5rem; }


.contact-info {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.contact-info__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-info__item:last-of-type { border-bottom: none; }

.contact-info__icon {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.5;
}

.contact-info__value a { color: var(--color-primary); }
.contact-info__value a:hover { color: var(--color-primary-dark); }

.contact-info__building {
  background: rgba(91,58,245,0.04);
  border: 1px solid rgba(91,58,245,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
}

.contact-info__building-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info__building-title i { color: var(--color-primary); }

.contact-info__building p {
  font-size: 0.88rem;
  color: var(--color-text-mid);
  line-height: 1.65;
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 1rem;
}


.thanks-hero {
  background: var(--grad-hero);
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-2xl);
}

.thanks-hero__content { max-width: 600px; }

.thanks-icon {
  font-size: 3.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.thanks-hero__heading {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fdfcf8;
  margin-bottom: 1rem;
}

.thanks-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}

.thanks-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}


.legal-hero {
  background: var(--grad-hero);
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-xl);
}

.legal-hero__heading {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fdfcf8;
  margin-bottom: 0.5rem;
}

.legal-hero__meta {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.legal-doc { display: flex; flex-direction: column; gap: 2rem; }

.legal-qa { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.07); }
.legal-qa:last-child { border-bottom: none; }

.legal-q {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.legal-qa p {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-intro {
  font-size: 1rem;
  color: var(--color-text-mid);
  line-height: 1.75;
  padding: 1.25rem 1.5rem;
  background: rgba(91,58,245,0.05);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1rem;
}

.legal-intro a { color: var(--color-primary); text-decoration: underline; }


.terms-section { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.07); }
.terms-section:last-child { border-bottom: none; }

.terms-heading {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.legal-doc--terms p {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}


.cookie-heading {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  margin: 1.5rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.cookie-heading:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

.legal-doc--cookies p {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.cookie-category {
  background: rgba(91,58,245,0.04);
  border: 1px solid rgba(91,58,245,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.cookie-category__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.cookie-category__body {
  font-size: 0.92rem;
  color: var(--color-text-mid);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.cookie-browser-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.cookie-browser-list li {
  font-size: 0.92rem;
  color: var(--color-text-mid);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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


@media (max-width: 1024px) {
  .problem-grid,
  .who-grid,
  .photo-feature,
  .experience-grid,
  .works-two-col,
  .method-intro,
  .think-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero__sub { margin: 0 auto 2rem; }
  .hero__breadcrumb { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }

  .before-after {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ba-arrow { transform: rotate(90deg); }

  .method-step {
    grid-template-columns: 1fr;
  }

  .method-step--reverse { direction: ltr; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 768px) {
  :root { --space-2xl: 4rem; --space-xl: 2.5rem; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .bottom-nav { display: flex; }

  body { padding-bottom: 60px; }

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

  .hero__breadcrumb { gap: 0.25rem; }
  .breadcrumb-step__line { width: 20px; }
  .breadcrumb-step__label { display: none; }

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

  .footer__links { flex-direction: column; gap: 1.5rem; }

  .thanks-links { flex-direction: column; align-items: center; }

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

  .problem-img,
  .experience-img,
  .photo-feature__img,
  .works-img,
  .method-img,
  .think-img { height: 260px; }

  .method-step__img { height: 240px; }

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

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero__headline { font-size: 2.2rem; }
  .page-hero__heading { font-size: 2rem; }
  .section { padding: 3rem 0; }
  .wizard-steps { gap: 0.25rem; }
  .wizard-step__label { display: none; }
}