@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=JetBrains+Mono:wght@400&family=Outfit:wght@400;500;600&display=swap');
.foundation-icons {
  font-family: "foundation-icons", sans-serif;
}
:root {
  --pure-white: #FFFFFF;
  --warm-cream: #FFFBF5;
  --deep-plum: #3B0764;
  --warm-stone: #78716C;
  --muted-rose: #FDA4AF;
  --vibrant-purple: #A855F7;
  --soft-rose: #F472B6;
  --purple-shadow: rgba(168, 85, 247, 0.1);
  --purple-shadow-strong: rgba(168, 85, 247, 0.12);
  --purple-glow: rgba(168, 85, 247, 0.06);
  --font-editorial: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-card: 24px;
  --radius-card-lg: 28px;
  --radius-card-sm: 20px;
  --shadow-card: 0 24px 80px var(--purple-shadow);
  --shadow-card-hover: 0 32px 96px var(--purple-shadow-strong);
  --transition-magnetic: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--warm-stone);
  background: var(--pure-white);
  overflow-x: hidden;
}
strong, p, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--vibrant-purple), #9333EA);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: 
    linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  filter: blur(40px);
  animation: gridMove 25s ease-in-out infinite alternate;
}
@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}
.vertical-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 72px;
  height: 100vh;
  background: rgba(255, 251, 245, 0.99);
  border-right: 1px solid rgba(168, 85, 247, 0.12);
  box-shadow: 4px 0 32px rgba(168, 85, 247, 0.04);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  justify-content: space-between;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.vertical-nav:hover {
  width: 280px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--vibrant-purple), var(--soft-rose));
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.logo-icon svg {
  width: 24px;
  height: 24px;
}
.logo-short {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 9px;
  color: var(--deep-plum);
  margin-top: 12px;
  text-align: center;
  opacity: 1;
  max-width: none;
  overflow: hidden;
  white-space: nowrap;
}
.logo-full {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 14px;
  color: var(--deep-plum);
  margin-top: 12px;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.vertical-nav:hover .logo-full {
  opacity: 1;
  max-width: 200px;
}
.nav-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  border-radius: 16px;
  transition: all 0.25s ease;
  cursor: pointer;
  width: 56px;
  overflow: hidden;
}
.nav-item:hover {
  background: rgba(168, 85, 247, 0.08);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.15);
}
.nav-item svg {
  width: 24px;
  height: 24px;
  stroke: rgba(71, 85, 105, 0.5);
  stroke-width: 2px;
  fill: none;
  flex-shrink: 0;
}
.nav-item-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--warm-stone);
  margin-top: 8px;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.vertical-nav:hover .nav-item-text {
  opacity: 1;
  max-width: 150px;
}
.nav-bottom {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.nav-cta {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--vibrant-purple), #9333EA);
  color: var(--pure-white);
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 10px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
  transition: all 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  padding: 16px 7px;
}
.nav-cta:hover {
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}
.nav-phone {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--vibrant-purple);
  letter-spacing: 0.02em;
  writing-mode: vertical-rl;
}
main {
  margin-left: 72px;
}
.hero-section {
  min-height: 100vh;
  background: var(--pure-white);
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(var(--purple-glow) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  position: relative;
  z-index: 4;
  padding: 120px 80px 140px 80px;
}
.hero-left {
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.hero-decor {
  margin-bottom: 28px;
}
.hero-decor svg {
  width: 56px;
  height: 56px;
  stroke: rgba(168, 85, 247, 0.4);
  stroke-width: 2px;
  fill: none;
}
.hero-title-main {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: clamp(60px, 10vw, 120px);
  letter-spacing: -0.03em;
  line-height: 0.72;
  color: var(--deep-plum);
  max-width: 480px;
}
.hero-title-sub {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 0.88;
  color: var(--vibrant-purple);
  margin-top: 8px;
}
.hero-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(120, 113, 108, 0.5);
  margin-top: 20px;
}
.hero-description {
  font-size: 17px;
  color: var(--warm-stone);
  line-height: 1.65;
  max-width: 440px;
  margin-top: 20px;
}
.hero-markers {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.hero-marker {
  width: 24px;
  height: 12px;
  background: var(--vibrant-purple);
  border-radius: 6px;
  filter: drop-shadow(4px 4px 0 rgba(168, 85, 247, 0.15));
}
.hero-line {
  height: 4px;
  width: 200px;
  background: linear-gradient(90deg, var(--vibrant-purple), var(--soft-rose));
  margin-top: 16px;
  box-shadow: 4px 4px 0 rgba(168, 85, 247, 0.1);
}
.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 24px 52px;
  background: linear-gradient(135deg, var(--vibrant-purple), #9333EA);
  color: var(--pure-white);
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(168, 85, 247, 0.3);
  transition: all 0.25s ease-out;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  box-shadow: 0 16px 64px rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}
.btn-secondary {
  padding: 22px 44px;
  background: transparent;
  border: 2px solid var(--deep-plum);
  color: var(--deep-plum);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 24px;
  transition: all 0.25s ease-out;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  border-color: var(--vibrant-purple);
  color: var(--deep-plum);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.15);
}
.hero-right {
  z-index: 0;
  position: relative;
  height: 520px;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
}
.hero-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(168, 85, 247, 0.08);
  transition: all var(--transition-magnetic);
  will-change: transform;
}
.hero-photo:hover {
  z-index: 40;
  transform: scale(1.06) translateY(-8px);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}
.hero-photo-main {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 28px;
  margin-right: -64px;
  margin-top: -64px;
  box-shadow: 0 32px 96px rgba(168, 85, 247, 0.12);
  position: relative;
  z-index: 3;
}
.hero-photo-main img {
  height: 100%;
}
.hero-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  z-index: 5;
  margin-bottom: -64px;
  transition: all var(--transition-magnetic);
}
.hero-stat-card:hover {
  z-index: 40;
  transform: scale(1.06) translateY(-8px);
}
.hero-stat-card.top-right {
  top: 40px;
  right: 24px;
}
.hero-stat-card.bottom-right {
  bottom: 40px;
  right: 24px;
  z-index: 4;
}
.stat-label {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 12px;
  color: var(--deep-plum);
}
.stat-value {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vibrant-purple);
}
.section {
  padding: 100px 80px 80px;
  position: relative;
}
.section-cream {
  background: var(--warm-cream);
}
.section-white {
  background: var(--pure-white);
}
.section-plum {
  background: var(--deep-plum);
}
.section-title {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--deep-plum);
}
.section-title-light {
  color: var(--pure-white);
}
.section-subtitle {
  font-size: 17px;
  color: var(--warm-stone);
  max-width: 600px;
  margin-top: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: var(--radius-card-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  margin-bottom: -64px;
  position: relative;
  z-index: 1;
  will-change: transform;
}
.service-card:hover {
  z-index: 40;
  transform: scale(1.04) translateY(-8px);
  border-color: rgba(168, 85, 247, 0.15);
  box-shadow: var(--shadow-card-hover);
}
.service-card.large {
  grid-column: span 2;
  grid-row: span 2;
}
.service-photo {
  height: 160px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 16px;
  width: 100%;
}
.service-accent {
  height: 4px;
  width: 40px;
  background: linear-gradient(90deg, var(--vibrant-purple), var(--soft-rose));
  margin-bottom: 16px;
  border-radius: 2px;
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
.service-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  color: var(--deep-plum);
}
.service-text {
  font-size: 14px;
  color: var(--warm-stone);
  margin-top: 6px;
  line-height: 1.6;
}
.service-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--vibrant-purple);
  margin-top: 8px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.about-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all var(--transition-magnetic);
  will-change: transform;
}
.about-card:hover {
  z-index: 40;
  transform: scale(1.06) translateY(-8px);
}
.about-card-img {
  height: 320px;
  object-fit: cover;
  width: 100%;
}
.about-card-content {
  padding: 24px;
}
.about-card-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 32px;
  color: var(--deep-plum);
}
.about-card-text {
  font-size: 16px;
  color: var(--warm-stone);
  line-height: 1.75;
  margin-top: 12px;
}
.about-accent {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--vibrant-purple), var(--soft-rose));
  margin: 20px 0;
}
.stat-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: var(--radius-card-sm);
  padding: 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
  margin-bottom: -64px;
  transition: all var(--transition-magnetic);
  will-change: transform;
}
.stat-card:hover {
  z-index: 40;
  transform: scale(1.06) translateY(-8px);
}
.stat-number {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: 48px;
  color: var(--vibrant-purple);
}
.stat-label-text {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 14px;
  color: var(--deep-plum);
  margin-top: 4px;
}
.stat-desc {
  font-size: 13px;
  color: var(--warm-stone);
  margin-top: 4px;
}
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 48px auto 0;
}
.process-line {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, var(--vibrant-purple), var(--soft-rose), var(--vibrant-purple));
  transform: translateX(-50%);
  border-radius: 2px;
}
.process-step {
  width: calc(50% - 60px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  border: 1px solid rgba(168, 85, 247, 0.08);
  box-shadow: var(--shadow-card);
  position: relative;
  margin-bottom: -64px;
  transition: all var(--transition-magnetic);
  will-change: transform;
}
.process-step:hover {
  z-index: 40;
  transform: scale(1.06) translateY(-8px);
}
.process-step.odd {
  align-self: flex-start;
  margin-right: auto;
}
.process-step.even {
  align-self: flex-end;
  margin-left: auto;
  margin-top: 72px;
}
.process-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--vibrant-purple);
  border-radius: 50%;
  border: 4px solid var(--pure-white);
  box-shadow: 0 0 0 4px var(--vibrant-purple);
}
.process-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}
.process-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
.process-step-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  color: var(--deep-plum);
}
.process-step-text {
  font-size: 14px;
  color: var(--warm-stone);
  margin-top: 6px;
  line-height: 1.6;
}
.process-step-photo {
  height: 100px;
  object-fit: cover;
  border-radius: 20px;
  margin-top: 12px;
  width: 100%;
}
.process-number {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: 32px;
  color: rgba(168, 85, 247, 0.15);
  position: absolute;
  top: 16px;
  right: 20px;
}
.portfolio-masonry {
  columns: 3;
  column-gap: 24px;
  margin-top: 48px;
}
.portfolio-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  break-inside: avoid;
  transition: all var(--transition-magnetic);
  will-change: transform;
  overflow: hidden;
}
.portfolio-card:hover {
  z-index: 40;
  transform: scale(1.04);
  border-color: rgba(168, 85, 247, 0.15);
  box-shadow: var(--shadow-card-hover);
}
.portfolio-card.tall {
  margin-bottom: -64px;
}
.portfolio-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-card-lg) var(--radius-card-lg) 0 0;
}
.portfolio-content {
  padding: 20px 22px 22px;
}
.portfolio-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  color: var(--deep-plum);
}
.portfolio-category {
  font-size: 11px;
  color: var(--vibrant-purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.portfolio-desc {
  font-size: 14px;
  color: var(--warm-stone);
  margin-top: 8px;
  line-height: 1.6;
}
.portfolio-accent {
  height: 4px;
  width: 40px;
  background: linear-gradient(90deg, var(--vibrant-purple), var(--soft-rose));
  margin-top: 16px;
}
.testimonials-carousel {
  position: relative;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  margin-top: 48px;
}
.testimonial-card {
  width: 300px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: absolute;
  transition: all 0.5s ease;
  overflow: hidden;
}
.testimonial-card.active {
  z-index: 40;
  transform: scale(1.06);
  box-shadow: var(--shadow-card-hover);
}
.testimonial-img {
  height: 120px;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.testimonial-content {
  padding: 24px;
}
.testimonial-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.testimonial-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
.testimonial-name {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  color: var(--deep-plum);
}
.testimonial-role {
  font-size: 12px;
  color: var(--warm-stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.testimonial-text {
  font-size: 13px;
  color: var(--warm-stone);
  margin-top: 8px;
  line-height: 1.5;
}
.testimonial-stars {
  width: 96px;
  margin-top: 8px;
  display: flex;
}
.testimonial-stars svg {
  width: 100%;
  height: auto;
  fill: var(--vibrant-purple);
}
.testimonial-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--vibrant-purple), var(--soft-rose));
}
.carousel-arrow {
  position: absolute;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 50;
}
.carousel-arrow:hover {
  background: var(--vibrant-purple);
}
.carousel-arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
.carousel-arrow:hover svg {
  stroke: var(--pure-white);
}
.carousel-arrow.prev {
  left: 20%;
}
.carousel-arrow.next {
  right: 20%;
}
.faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.faq-panel {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-panel:hover {
  z-index: 40;
  transform: scale(1.04);
  border-color: rgba(168, 85, 247, 0.15);
  box-shadow: 0 32px 96px rgba(168, 85, 247, 0.08);
}
.faq-question {
  display: flex;
  align-items: center;
  padding: 24px;
  cursor: pointer;
}
.faq-icon {
  width: 44px;
  height: 44px;
  margin-right: 16px;
  flex-shrink: 0;
}
.faq-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
.faq-title {
  flex: 1;
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  color: var(--deep-plum);
}
.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.faq-chevron svg {
  width: 100%;
  height: 100%;
  stroke: var(--muted-rose);
  stroke-width: 2px;
  fill: none;
}
.faq-panel.active .faq-chevron {
  transform: rotate(180deg);
}
.faq-panel.active .faq-chevron svg {
  stroke: var(--vibrant-purple);
}
.faq-panel.active {
  border-left: 4px solid var(--vibrant-purple);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-panel.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}
.faq-answer-content {
  font-size: 16px;
  color: var(--warm-stone);
  line-height: 1.75;
}
.faq-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--vibrant-purple), var(--soft-rose));
  margin-bottom: 16px;
}
.achievements-container {
  position: relative;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.achievement-center {
  width: 160px;
  height: 160px;
  position: relative;
}
.achievement-center svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.achievement-node {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: var(--radius-card-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: -64px;
  position: absolute;
  transition: all var(--transition-magnetic);
  will-change: transform;
  text-align: center;
  width: 140px;
}
.achievement-node:hover {
  z-index: 40;
  transform: scale(1.06);
  opacity: 1;
}
.achievement-img {
  height: 70px;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  margin-bottom: 10px;
}
.achievement-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.achievement-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
.achievement-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 14px;
  color: var(--deep-plum);
}
.achievement-text {
  font-size: 12px;
  color: var(--warm-stone);
  margin-top: 4px;
  line-height: 1.5;
}
.achievement-value {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: 32px;
  color: var(--vibrant-purple);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  margin-top: 48px;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-card {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: var(--radius-card-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: -64px;
}
.team-card:hover {
  background: var(--pure-white);
  border-color: rgba(168, 85, 247, 0.15);
  box-shadow: 0 32px 96px rgba(168, 85, 247, 0.08);
  z-index: 40;
  transform: scale(1.06) translateY(-8px);
}
.team-card-icon {
  width: 40px;
  height: 40px;
  margin-right: 16px;
  flex-shrink: 0;
}
.team-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
.team-card-name {
  flex: 1;
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 14px;
  color: var(--deep-plum);
}
.team-card-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
.team-card-chevron svg {
  width: 100%;
  height: 100%;
  stroke: rgba(120, 113, 108, 0.3);
  stroke-width: 2px;
  fill: none;
}
.team-card:hover .team-card-chevron {
  transform: translateX(4px);
}
.team-card:hover .team-card-chevron svg {
  stroke: var(--vibrant-purple);
}
.team-reveal {
  position: relative;
  min-height: 320px;
}
.team-photo {
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 32px 96px rgba(168, 85, 247, 0.1);
  width: 100%;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-magnetic);
  cursor: grab;
  will-change: transform;
}
.contact-card:active {
  cursor: grabbing;
}
.contact-card:hover {
  z-index: 40;
  transform: scale(1.06);
  border-color: rgba(168, 85, 247, 0.2);
  box-shadow: var(--shadow-card-hover);
}
.contact-accent {
  height: 4px;
  width: 40px;
  background: linear-gradient(90deg, var(--vibrant-purple), var(--soft-rose));
  margin-bottom: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
.contact-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 14px;
  color: var(--deep-plum);
}
.contact-text {
  font-size: 13px;
  color: var(--warm-stone);
  margin-top: 4px;
  line-height: 1.5;
}
.contact-form {
  max-width: 600px;
  margin: 48px auto 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: var(--radius-card-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--deep-plum);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--deep-plum);
  background: var(--pure-white);
  transition: all 0.25s ease;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--vibrant-purple);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--vibrant-purple), #9333EA);
  color: var(--pure-white);
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(168, 85, 247, 0.3);
  transition: all 0.25s ease-out;
}
.form-submit:hover {
  box-shadow: 0 16px 64px rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}
footer {
  background: var(--warm-cream);
  padding: 60px 80px 40px;
  margin-left: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand {
  max-width: 300px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--vibrant-purple), var(--soft-rose));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--pure-white);
  stroke-width: 2px;
  fill: none;
}
.footer-logo-text {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  color: var(--deep-plum);
}
.footer-desc {
  font-size: 14px;
  color: var(--warm-stone);
  line-height: 1.7;
}
.footer-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 14px;
  color: var(--deep-plum);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--warm-stone);
  transition: color 0.25s ease;
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vibrant-purple);
  transition: width 0.25s ease;
}
.footer-links a:hover::after {
  width: 100%;
}
.footer-links a:hover {
  color: var(--vibrant-purple);
}
.footer-bottom {
  border-top: 1px solid rgba(168, 85, 247, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copyright {
  font-size: 13px;
  color: var(--warm-stone);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--warm-stone);
  transition: color 0.25s ease;
}
.footer-legal a:hover {
  color: var(--vibrant-purple);
}
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 96px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 24px 80px rgba(168, 85, 247, 0.15);
  z-index: 999;
  max-width: 420px;
  display: block;
}
.cookie-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 15px;
  color: var(--deep-plum);
  margin-bottom: 8px;
}
.cookie-text {
  font-size: 13px;
  color: var(--warm-stone);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  transition: all 0.25s ease;
}
.cookie-btn.accept {
  background: linear-gradient(135deg, var(--vibrant-purple), #9333EA);
  color: var(--pure-white);
}
.cookie-btn.accept:hover {
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}
.cookie-btn.decline {
  background: transparent;
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--deep-plum);
}
.cookie-btn.decline:hover {
  border-color: var(--vibrant-purple);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.reveal-fade.visible {
  opacity: 1;
}
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.65s ease-out;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.6s ease-out;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: all 0.6s ease-out;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-editorial {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease-out;
}
.reveal-editorial.visible {
  opacity: 1;
  transform: scale(1);
}
[data-magnetic="true"] {
  transition: transform 0.1s ease-out;
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(24px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  padding-top: 100px;
}
.mobile-menu-overlay.active {
  display: flex;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
.mobile-menu-links {
  list-style: none;
  margin-left: 40px;
}
.mobile-menu-links li {
  margin-bottom: 8px;
}
.mobile-menu-links a {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 26px;
  color: var(--deep-plum);
  display: block;
  padding: 8px 0;
  position: relative;
}
.mobile-menu-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: var(--vibrant-purple);
}
.mobile-menu-contact {
  margin-left: 40px;
  margin-top: auto;
  padding-bottom: 40px;
}
.mobile-menu-phone {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--vibrant-purple);
}
.mobile-menu-address {
  font-size: 14px;
  color: var(--warm-stone);
  margin-top: 8px;
}
.hero-internal {
  min-height: 280px;
  background: var(--pure-white);
  position: relative;
  padding: 60px 80px;
  display: flex;
  align-items: center;
}
.hero-internal-content {
  max-width: 560px;
  margin-left: 40px;
}
.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-rose);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.hero-internal-title {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.03em;
  color: var(--deep-plum);
}
.hero-internal-decor {
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}
.hero-internal-decor svg {
  width: 24px;
  height: 24px;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
.hero-internal-markers {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.hero-internal-marker {
  width: 12px;
  height: 6px;
  background: var(--vibrant-purple);
  border-radius: 3px;
}
.thank-you-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
}
.thank-you-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}
.thank-you-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
.thank-you-title {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: 48px;
  color: var(--deep-plum);
}
.thank-you-text {
  font-size: 18px;
  color: var(--warm-stone);
  max-width: 500px;
  margin-top: 16px;
}
.thank-you-btn {
  margin-top: 32px;
}
.legal-section {
  padding: 80px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-title {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: 36px;
  color: var(--deep-plum);
  margin-bottom: 24px;
}
.legal-content {
  font-size: 15px;
  color: var(--warm-stone);
  line-height: 1.8;
}
.legal-content h2 {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 20px;
  color: var(--deep-plum);
  margin-top: 32px;
  margin-bottom: 16px;
}
.legal-content p {
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .vertical-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 64px;
    transform: none;
    padding: 0 20px;
    border-radius: 0;
    flex-direction: row;
    justify-content: space-between;
  }
  .vertical-nav:hover {
    width: 100%;
  }
  .nav-logo {
    flex-direction: row;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  .logo-icon svg {
    width: 18px;
    height: 18px;
  }
  .logo-short {
    font-size: 14px;
    margin-top: 0;
    margin-left: 8px;
  }
  .logo-full,
  .nav-items,
  .nav-bottom {
    display: none;
  }
  .mobile-toggle {
    display: flex !important;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
  }
  main {
    margin-left: 0;
    padding-top: 64px;
  }
  footer {
    margin-left: 0;
  }
  .cookie-banner {
    left: 24px;
    bottom: 16px;
    max-width: calc(100vw - 48px);
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 80px 40px 100px;
  }
  .hero-right {
    height: 400px;
  }
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .hero-photo-main {
    grid-column: 1;
    grid-row: 1;
    margin-right: 0;
    margin-top: 0;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .process-step.even {
    margin-top: 0;
  }
  .process-line {
    left: 24px;
  }
  .process-dot {
    left: 24px;
  }
  .portfolio-masonry {
    columns: 2;
  }
  .faq-container {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .section {
    padding: 80px 40px 60px;
  }
  .hero-internal {
    padding: 40px;
  }
  .hero-internal-title {
    font-size: 36px;
  }
}
@media (max-width: 640px) {
  .hero-title-main {
    font-size: 48px;
  }
  .hero-title-sub {
    font-size: 28px;
  }
  .hero-right {
    height: 300px;
  }
  .hero-stat-card {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.large {
    grid-column: span 1;
  }
  .portfolio-masonry {
    columns: 1;
  }
  .testimonials-carousel {
    height: auto;
    flex-direction: column;
    gap: 24px;
  }
  .carousel-arrow {
    display: none;
  }
  .testimonial-card {
    position: relative;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .section {
    padding: 60px 24px 40px;
  }
  .hero-content {
    padding: 60px 24px 80px;
  }
  .hero-internal {
    padding: 32px 24px;
  }
  .hero-internal-title {
    font-size: 28px;
  }
  .contact-form {
    padding: 24px;
  }
  .legal-section {
    padding: 40px 24px;
  }
}
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: rgba(168, 85, 247, 0.08);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.mobile-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--vibrant-purple);
  stroke-width: 2px;
  fill: none;
}
