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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --text-primary: #f5f5f5;
  --text-secondary: #888888;
  --accent: #c8956c;
  --accent-hover: #daa882;
  --accent-dark: #a87450;
  --accent-glow: rgba(200, 149, 108, 0.15);
  --border: #222222;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Page load overlay */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__logo {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 8px;
  color: var(--accent);
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent));
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Noise Texture Overlay === */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10000;
  opacity: 0.4;
}

/* === Scroll Reveal Animations === */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* === Text Split Animation === */
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(5deg);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-text.visible .char {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* === Decorative === */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.section-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 0 auto 64px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.section-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: lineSweep 3s ease-in-out infinite;
}

@keyframes lineSweep {
  0% { left: -60%; }
  100% { left: 160%; }
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 5px;
  color: var(--accent);
  position: relative;
  transition: all 0.4s ease;
}

.logo:hover {
  text-shadow: 0 0 20px rgba(200, 149, 108, 0.4);
}

.nav {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__cta {
  font-size: 0.85rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(200, 149, 108, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--accent::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.btn--accent:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(200, 149, 108, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn--accent:hover::after {
  opacity: 1;
}

.btn--accent:active {
  transform: translateY(-1px) scale(0.99);
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(200, 149, 108, 0.4);
  color: var(--accent);
  backdrop-filter: blur(10px);
}

.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn--outline:hover {
  color: #0a0a0a;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 149, 108, 0.25);
}

.btn--outline:hover::before {
  opacity: 1;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn--full {
  width: 100%;
}

/* Magnetic button wrapper */
.magnetic {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 149, 108, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 149, 108, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 10%, transparent 70%);
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero__orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.1), transparent 70%);
  top: -15%;
  right: -15%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero__orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.06), transparent 70%);
  bottom: -15%;
  left: -10%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero__orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.08), transparent 70%);
  top: 40%;
  left: 50%;
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -40px) scale(1.1); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
  opacity: 0.04;
  animation: heroImgZoom 30s ease-in-out infinite alternate;
}

@keyframes heroImgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 80px 0 180px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(200, 149, 108, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: rgba(200, 149, 108, 0.04);
  opacity: 0;
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero__label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--accent); }
  50% { opacity: 0.4; box-shadow: 0 0 20px var(--accent); }
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
  opacity: 0;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero__title .accent-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover), #e8c4a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 580px;
  opacity: 0;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero__badges {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__badge:hover {
  border-color: rgba(200, 149, 108, 0.25);
  background: rgba(200, 149, 108, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero__badge svg {
  flex-shrink: 0;
  color: var(--accent);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: heroReveal 1s ease 1.5s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* === Sections === */
.section {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

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

.section__title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section__title .accent-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover), #e8c4a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__lead {
  text-align: center;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 16px;
  font-size: 1.05rem;
}

/* === About === */
.about__text {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}

.about__text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
  padding: 40px 16px;
  background: linear-gradient(135deg, var(--bg-secondary), rgba(200, 149, 108, 0.02));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200, 149, 108, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stat:hover {
  border-color: rgba(200, 149, 108, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.stat:hover::before,
.stat:hover::after {
  opacity: 1;
}

.stat__number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* === Services === */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Animated gradient border on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent, var(--accent), transparent, var(--accent-dark), transparent);
  background-size: 300% 300%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(200, 149, 108, 0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__icon {
  color: var(--accent);
  margin-bottom: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 149, 108, 0.06);
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__icon {
  background: rgba(200, 149, 108, 0.12);
  border-color: rgba(200, 149, 108, 0.2);
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(200, 149, 108, 0.15);
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === Advantages === */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid transparent;
}

.advantage:hover {
  background: rgba(255, 255, 255, 0.015);
  border-color: rgba(200, 149, 108, 0.08);
  transform: translateY(-4px);
}

.advantage__icon {
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.advantage__icon svg {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.advantage:hover .advantage__icon svg {
  transform: scale(1.2) rotate(-8deg);
  filter: drop-shadow(0 4px 12px rgba(200, 149, 108, 0.3));
}

.advantage__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.advantage__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === Process === */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.process__step {
  position: relative;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.process__step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover), transparent);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.process__step:hover {
  border-color: rgba(200, 149, 108, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.process__step:hover::after {
  width: 100%;
}

.process__number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(200, 149, 108, 0.15), rgba(200, 149, 108, 0.03));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
  transition: all 0.5s ease;
}

.process__step:hover .process__number {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  background-clip: text;
}

.process__step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process__step-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === Portfolio === */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.portfolio__card:hover {
  border-color: rgba(200, 149, 108, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.portfolio__image-wrap {
  overflow: hidden;
  position: relative;
}

.portfolio__image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-card);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7), transparent 60%);
}

.portfolio__card:hover .portfolio__image {
  transform: scale(1.08);
}

/* Image reveal clip animation */
.portfolio__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio__card.revealed .portfolio__image-wrap::before {
  transform: scaleX(0);
}

.portfolio__info {
  padding: 28px;
  position: relative;
}

.portfolio__tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(200, 149, 108, 0.08);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(200, 149, 108, 0.12);
}

.portfolio__name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.portfolio__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--accent);
}

.portfolio__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.portfolio__meta span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.portfolio__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === Clients Marquee === */
.clients-marquee {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.clients__track {
  display: flex;
  gap: 20px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  min-width: 160px;
  flex-shrink: 0;
}

.client-type svg {
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.client-type:hover {
  border-color: rgba(200, 149, 108, 0.25);
  color: var(--text-primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  background: rgba(200, 149, 108, 0.03);
}

.client-type:hover svg {
  transform: scale(1.15);
}

/* === FAQ === */
.faq__list {
  max-width: 750px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__question svg {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.faq__question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq__question[aria-expanded="true"] {
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__answer.open {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* === Contact === */
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.contact__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, var(--accent), transparent 90%);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form__group {
  margin-bottom: 16px;
  position: relative;
}

.form__group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.form__group:focus-within label {
  color: var(--accent);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 149, 108, 0.08);
  background: rgba(200, 149, 108, 0.02);
}

.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.form__group--checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.form__group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form__group--checkbox label {
  margin-bottom: 0;
  font-size: 0.8rem;
  cursor: pointer;
}

.contact__info {
  padding: 40px 0;
}

.contact__info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact__item:hover {
  transform: translateX(6px);
  color: var(--text-primary);
}

.contact__item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact__item a {
  transition: color 0.3s ease;
}

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

.contact__messengers {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.messenger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.messenger:hover {
  color: #0a0a0a;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-4px) rotate(-5deg);
  box-shadow: 0 12px 28px rgba(200, 149, 108, 0.25);
}

/* === Footer === */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg-primary);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--accent);
  opacity: 0.4;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* === Cursor Glow === */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.035), transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* === Mobile === */
@media (max-width: 1024px) {
  .services__grid,
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .cursor-glow { display: none; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 48px 24px;
    gap: 28px;
    animation: mobileNavIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav.open { display: flex; }
  .nav.open .nav__link { font-size: 1.2rem; }
  .header__cta { display: none; }
  .burger { display: flex; }

  .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .burger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
  .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero__content {
    padding: 40px 20px 20px;
    max-width: 100%;
  }
  .hero__title {
    font-size: 1.7rem;
    letter-spacing: -0.3px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero__subtitle {
    font-size: 0.98rem;
    overflow-wrap: anywhere;
  }
  .hero__subtitle br { display: none; }
  .hero__badges { flex-direction: column; gap: 10px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }

  .section { padding: 80px 0; }
  .section__title { font-size: 2rem; }

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

  .services__grid,
  .advantages__grid,
  .process__steps,
  .portfolio__grid { grid-template-columns: 1fr; }

  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px; }

  .footer__inner { flex-direction: column; gap: 8px; text-align: center; }
  .cursor-glow { display: none; }
}

/* ============================================
   v2 — Logo, About, Manifesto, Partner
   ============================================ */

/* === Logo === */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

.logo__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo__mark {
  transform: rotate(-6deg) scale(1.05);
}

.logo__text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--text-primary);
}

.logo--footer {
  opacity: 0.85;
}

.logo--footer .logo__mark {
  width: 32px;
  height: 32px;
}

.logo--footer .logo__text {
  font-size: 1.1rem;
  color: var(--accent);
}

/* === Page Loader mark === */
.page-loader {
  flex-direction: column;
  gap: 20px;
}

.page-loader__mark {
  width: 70px;
  height: 70px;
  color: var(--accent);
  animation: loaderSpin 1.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes loaderSpin {
  0% { transform: rotate(0deg) scale(0.95); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(0.95); }
}

.page-loader__text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 6px;
  color: var(--text-secondary);
}

/* === Reveal directional === */
.reveal-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === About === */
.about {
  position: relative;
}

.about__shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.about__shape {
  position: absolute;
  display: block;
  border: 1.5px solid rgba(200, 149, 108, 0.12);
}

.about__shape--1 {
  width: 120px;
  height: 120px;
  top: 12%;
  right: 6%;
  background: rgba(176, 104, 72, 0.05);
  animation: shapeFloat 14s ease-in-out infinite;
}

.about__shape--2 {
  width: 80px;
  height: 80px;
  bottom: 16%;
  left: 4%;
  background: rgba(95, 104, 80, 0.06);
  animation: shapeFloat 18s ease-in-out infinite reverse;
}

.about__shape--3 {
  width: 56px;
  height: 56px;
  top: 50%;
  left: 12%;
  background: rgba(200, 149, 108, 0.05);
  animation: shapeFloat 11s ease-in-out infinite;
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -30px) rotate(8deg); }
  66% { transform: translate(-15px, 20px) rotate(-6deg); }
}

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
}

.about__media-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=900&q=80') center/cover no-repeat;
  filter: grayscale(0.3) brightness(0.8);
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.18) translate(-3%, -4%); }
}

.about__media-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85), transparent 55%),
              linear-gradient(135deg, rgba(200, 149, 108, 0.12), transparent 50%);
}

.about__media-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: rgba(14, 14, 14, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 149, 108, 0.2);
  border-radius: 14px;
}

.about__media-badge-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about__media-badge-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about__text p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__text-accent {
  color: var(--text-primary) !important;
  font-size: 1.12rem !important;
  font-weight: 500;
  padding-left: 22px;
  border-left: 3px solid var(--accent);
  margin-bottom: 0 !important;
}

/* === Service card number === */
.service-card {
  position: relative;
}

.service-card__num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
  opacity: 0.35;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__num {
  opacity: 1;
  color: var(--accent);
  transform: translateY(-2px);
}

/* === Advantages — Manifesto === */
.advantages {
  position: relative;
}

.manifesto {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.manifesto__item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 28px;
  border-top: 1px solid var(--border);
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto__item:last-child {
  border-bottom: 1px solid var(--border);
}

.manifesto__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto__item:hover {
  background: rgba(200, 149, 108, 0.03);
  padding-left: 40px;
}

.manifesto__item:hover::before {
  transform: scaleY(1);
}

.manifesto__num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, rgba(200, 149, 108, 0.25), rgba(200, 149, 108, 0.06));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 70px;
  transition: all 0.5s ease;
}

.manifesto__item:hover .manifesto__num {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  background-clip: text;
}

.manifesto__body {
  flex: 1;
  padding-top: 4px;
}

.manifesto__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.manifesto__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === Partner === */
.partner {
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
}

.partner__orb {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.partner .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner__eyebrow {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(200, 149, 108, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  background: rgba(200, 149, 108, 0.04);
}

.partner__title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
  width: 100%;
  max-width: 760px;
  text-wrap: balance;
}

.partner__text {
  max-width: 620px;
  margin-bottom: 40px;
}

.partner__text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.partner__text-accent {
  color: var(--text-primary) !important;
  font-weight: 600;
  font-size: 1.2rem !important;
  margin-bottom: 0 !important;
}

/* === v2 Mobile === */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__media {
    max-width: 440px;
    margin: 0 auto;
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 768px) {
  .logo__text { font-size: 1.15rem; letter-spacing: 3px; }
  .logo__mark { width: 34px; height: 34px; }

  .manifesto__item {
    gap: 18px;
    padding: 28px 16px;
  }

  .manifesto__item:hover { padding-left: 24px; }

  .manifesto__num {
    font-size: 1.9rem;
    width: 48px;
  }

  .manifesto__title { font-size: 1.12rem; }

  .partner__title { font-size: 1.5rem; }
  .partner__text p { font-size: 1rem; }
  .partner__text-accent { font-size: 1.05rem !important; }

  .about__media-badge { left: 16px; bottom: 16px; padding: 12px 16px; }
  .about__media-badge-num { font-size: 1.7rem; }
}

/* === Form Success Panel === */
.form-success {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
  z-index: 5;
}

.form-success.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.form-success__check {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(200, 149, 108, 0.35);
}

.form-success.show .form-success__check {
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.1s both;
}

@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.form-success.show .form-success__check svg {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: successDraw 0.5s ease 0.45s forwards;
}

@keyframes successDraw {
  to { stroke-dashoffset: 0; }
}

.form-success__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 6px;
}

.form-success__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 340px;
  line-height: 1.6;
}

.form-success__close,
#formSuccessClose {
  margin-top: 10px;
}
