/* BRAND SLIDERS */
a,
button,
input,
textarea,
select,
[role="button"],
.brand-slider-img {
  -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[role="button"]:focus,
.brand-slider-img:focus {
  outline: none;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible),
.brand-slider-img:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.brand-sliders-section { padding: 88px 52px; max-width: 1500px; margin: 0 auto; }
.brand-sliders-section .section-label {
  text-align: center;
  font-size: 14px;
  letter-spacing: 3.6px;
  margin-bottom: 22px;
}
.brand-sliders-section .section-title {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  text-align: center;
  font-size: clamp(36px, 4.85vw, 66px);
  line-height: 1.12;
}
.brand-sliders-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; align-items: start; }
.brand-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 10px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.04);
}
.brand-slider-name {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-dim); text-align: center;
}
.brand-slider-img {
  position: relative; aspect-ratio: 3/4; border-radius: 12px;
  overflow: hidden; cursor: pointer;
  border: 1px solid var(--border); background: var(--bg-card);
}
.brand-slider-img:hover { border-color: var(--border); }
.brand-slider-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Lift framing for MOD44 shots */
.brand-slider-wrap[data-brand-wrap-id="mod44"] .brand-slider-img img {
  object-position: center 24%;
}
.brand-slider-img .brand-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
  transition: opacity 0.24s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.24s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.brand-slider-dots { display: flex; justify-content: center; gap: 6px; }
.brand-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--border-hover); cursor: pointer;
  border: none; padding: 0; appearance: none; display: block;
  transition: background 0.3s, transform 0.3s;
}
.brand-dot.active { background: var(--white); transform: scale(1.4); }

.brand-slider-img .brand-ghost {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  transition: opacity 0.42s ease-in, transform 0.42s ease-in, filter 0.42s ease-in;
}

.brand-slider-img .brand-ghost.fade-out {
  opacity: 0;
  transform: scale(0.94);
  filter: blur(8px);
}

@keyframes brandImgEnter {
  from { opacity: 0; transform: scale(1.08); filter: blur(4px); }
  to   { opacity: 1; transform: scale(1);    filter: blur(0); }
}
.brand-img-enter {
  animation: brandImgEnter 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.brand-slider-wrap.is-switching .brand-slider-img img:not(.brand-ghost) {
  /* handled by brand-img-enter animation */
}

.brand-slider-img .brand-label.is-switching {
  opacity: 0.72;
  transform: translateY(1px);
}

/* Slightly softer frame for Lilcorner */
.brand-slider-wrap--lilcorner {
  border-color: rgba(255,255,255,0.08);
}
@media (max-width: 1250px) {
  .brand-sliders-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .brand-sliders-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .brand-sliders-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-sliders-section { padding: 60px 20px; }
  .brand-slider-wrap { padding: 8px 8px 12px; }
}
@media (max-width: 560px) {
  .brand-sliders-grid { grid-template-columns: 1fr; }
}


/* LANG SWITCHER */
.lang-switcher {
  --lang-pill-x: 3px;
  --lang-pill-y: 3px;
  --lang-pill-width: 42px;
  --lang-pill-height: 34px;
  position: relative;
  display: flex; align-items: center; gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.09); border-radius: 8px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: border-color 0.28s ease, background 0.28s ease;
}
.lang-switcher::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--lang-pill-width);
  height: var(--lang-pill-height);
  border-radius: 5px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
  transform: translate3d(var(--lang-pill-x), var(--lang-pill-y), 0);
  pointer-events: none;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 260ms ease;
}
.lang-switcher:hover {
  border-color: rgba(255,255,255,0.14);
}
.lang-btn {
  position: relative;
  z-index: 1;
  min-width: 42px;
  min-height: 34px;
  padding: 8px 9px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.8px; color: rgba(255,255,255,0.34);
  background: transparent; border: none; border-radius: 5px; cursor: pointer;
  transition:
    color 260ms ease,
    background 260ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.lang-btn.active { background: transparent; color: var(--bg); }
.lang-btn:hover:not(.active) { color: rgba(255,255,255,0.78); background: rgba(255,255,255,0.06); }
.lang-btn:active:not(.active) { transform: scale(0.96); }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0b0b0b;
  --bg-card: #111111;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --text: #e8e8e8;
  --text-muted: #888888;
  --text-dim: #555555;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
body.mobile-nav-open {
  overflow: hidden;
}
.security-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.security-card {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  padding: 24px;
  text-align: center;
}
.security-card h3 {
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  color: var(--white);
}
.security-card p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 14px;
}
.security-unlocked .security-overlay {
  display: none;
}



#about, #portfolio, .brand-sliders-section, #advantages, #how, #faq, #pricing, #contact {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

::selection { background: rgba(255,255,255,0.15); color: var(--white); }

/* INTERACTIVE HOVER HIGHLIGHT */
.btn-primary, .btn-ghost, .nav-cta,
.slider-btn, .portfolio-thumb,
.process-card, .pricing-card, .contact-card, .how-card {
  transition:
    transform 0.28s cubic-bezier(0.4,0,0.2,1),
    border-color 0.28s cubic-bezier(0.4,0,0.2,1),
    box-shadow 0.28s cubic-bezier(0.4,0,0.2,1),
    background-color 0.28s cubic-bezier(0.4,0,0.2,1);
}
.btn-primary:hover, .btn-ghost:hover, .nav-cta:hover,
.slider-btn:hover, .portfolio-thumb:hover,
.process-card:hover, .pricing-card:hover, .contact-card:hover, .how-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}

/* NAV */
@keyframes navEnter {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px; height: 100px;
  display: flex; justify-content: flex-start; align-items: center; gap: 40px;
  backdrop-filter: blur(24px) saturate(1.4);
  background: rgba(11,11,11,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  animation: navEnter 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
body > nav.nav-scrolled {
  background: rgba(11,11,11,0.96);
  border-bottom-color: rgba(255,255,255,0.09);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.nav-logo {
  font-weight: 800; font-size: 18px; letter-spacing: -0.3px;
  color: var(--white); text-decoration: none;
}
.nav-logo span { font-weight: 300; color: var(--text-muted); margin-left: 2px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-contacts {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 4px;
}
.nav-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-contact-link:hover {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
}
.nav-contacts-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.12);
  margin: 0 6px;
}
.nav-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 100px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255,255,255,0.04);
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}
.nav-action-btn:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.72);
  color: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,0.07);
}
.nav-btn-arrow {
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.nav-action-btn:hover .nav-btn-arrow {
  opacity: 1;
  transform: translateX(3px);
}
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.nav-burger span {
  width: 18px;
  height: 1.5px;
  background: var(--white);
  display: block;
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  border: 0;
  width: 100%;
}
.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(86vw, 340px);
  background: #0d0d0d;
  border-left: 1px solid var(--border);
  padding: 18px 18px 24px;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  padding: 12px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
}
.mobile-nav-links a:active {
  border-color: var(--border);
  background: rgba(255,255,255,0.03);
}
.mobile-nav-lang .lang-switcher {
  margin-left: 0;
  width: fit-content;
}
.mobile-nav-lang .lang-btn,
body > nav .lang-btn {
  min-width: 42px !important;
  min-height: 34px !important;
  padding-left: 9px !important;
  padding-right: 9px !important;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 16px;
  font-weight: 550; letter-spacing: 0px;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-active { color: var(--white); }

.nav-links a:focus-visible,
.lang-btn:focus-visible,
.slider-dot:focus-visible,
.portfolio-thumb:focus-visible,
.pricing-btn:focus-visible,
.contact-card:focus-visible,
.contact-cta:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.slider-btn:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid rgba(255,255,255,0.85);
  outline-offset: 2px;
  border-radius: 8px;
}
.nav-cta {
  background: var(--white) !important; color: var(--bg) !important;
  padding: 10px 28px !important; border-radius: 6px;
  font-weight: 700 !important; font-size: 12px !important;
  letter-spacing: 0.5px !important; transition: opacity 0.3s !important;
}
.nav-cta:hover { opacity: 0.85; }

/* NAV DROPDOWN */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: -14px;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: default;
  line-height: 1;
}
.nav-dropdown-trigger > svg {
  opacity: 0.45;
  transition: opacity 0.25s, transform 0.25s;
  transform: rotate(180deg);
  transform-origin: 50% 50%;
  flex-shrink: 0;
  align-self: center;
}
.nav-dropdown:hover .nav-dropdown-trigger > svg {
  opacity: 0.9;
  transform: rotate(0deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding-top: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #151515;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: -1;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none;
  font-size: 13px !important;
  font-weight: 500 !important;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff !important;
}

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 140px 24px 100px; position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 38%, rgba(44,44,44,0.58) 0%, transparent 68%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.038;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none; z-index: 1;
}
.hero > * { position: relative; z-index: 2; }
.hero-canvas {
  position: absolute !important; inset: 0;
  width: 100% !important; height: 100% !important;
  z-index: 1 !important; pointer-events: none;
  opacity: 0;
}
.hero-label {
  font-size: 15px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6vw, 80px); font-weight: 700;
  line-height: 1.1; letter-spacing: -1.5px; max-width: 900px;
  margin-bottom: 36px; animation: fadeUp 0.8s ease 0.35s both;
}
.hero h1 strong {
  font-weight: 900;
  background: linear-gradient(180deg, #ffffff 20%, #555555 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.72); max-width: 560px;
  line-height: 1.75; margin-bottom: 52px;
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-buttons {
  display: flex; gap: 12px;
  animation: fadeUp 0.8s ease 0.65s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1a1a1a; color: #e8e8e8;
  padding: 20px 56px; border-radius: 6px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  border: 1px solid rgba(255,255,255,0.12); cursor: pointer;
  font-family: 'Inter', sans-serif;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.09), transparent);
  transform: skewX(-18deg);
  transition: left 0.9s ease;
}
.btn-primary:hover::after { left: 160%; }
.btn-primary:hover {
  background: #252525; border-color: rgba(255,255,255,0.26);
  box-shadow: 0 8px 28px rgba(0,0,0,0.38);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: #ffffff; color: #0b0b0b;
  padding: 20px 56px; border-radius: 6px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-ghost:hover {
  background: #f0f0f0;
  box-shadow: 0 0 40px rgba(255,255,255,0.22), 0 12px 32px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.btn-ghost .btn-arrow { opacity: 0.4; transition: opacity 0.24s, transform 0.28s cubic-bezier(0.34,1.56,0.64,1); }
.btn-ghost:hover .btn-arrow { opacity: 1; transform: translateX(5px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SHARED */
.divider { height: 1px; background: var(--border); margin: 0 60px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 300;
  line-height: 1.15; letter-spacing: -1px;
}
.section-title strong {
  font-weight: 600;
  background: linear-gradient(180deg, #ffffff 20%, #555555 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-subtitle {
  font-size: 15px; color: var(--text-muted); margin-top: 16px;
  max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

/* ABOUT */
.about-section { padding: 120px 60px; max-width: 1200px; margin: 0 auto; }
.about-heading {
  font-family: 'Inter', sans-serif; font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800; letter-spacing: -0.5px; color: var(--white); margin-bottom: 32px;
}
.about-card {
  border: 1px solid var(--border); border-radius: 16px;
  background: var(--bg-card); padding: 48px; margin-bottom: 0;
}
.about-card-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.about-card-label {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 24px;
}
.about-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 400; font-style: italic;
  line-height: 1.5; color: var(--text);
}
.about-card-right {
  border-left: 1px solid var(--border); padding-left: 48px;
  display: flex; flex-direction: column; gap: 20px; align-self: stretch; justify-content: center;
}
.about-desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.8;
}
.about-stats {
  display: flex; gap: 48px; margin-top: 64px; padding-top: 48px;
  border-top: 1px solid var(--border);
}
.about-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px; font-weight: 400; color: var(--white); margin-bottom: 4px;
}
.about-stat-label { font-size: 12px; font-weight: 500; color: var(--text-dim); }

/* PORTFOLIO SLIDER */
.portfolio-section { padding: 120px 60px; max-width: 1200px; margin: 0 auto; }
.portfolio-section .section-label {
  font-size: 14px;
  letter-spacing: 3.6px;
  margin-bottom: 22px;
}
.portfolio-section .section-title {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(36px, 4.85vw, 66px);
  line-height: 1.12;
}
.portfolio-section .section-subtitle {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.65;
}
.portfolio-slider-wrap { position: relative; }
.portfolio-slider {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: 14px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  touch-action: pan-y;
}
.portfolio-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.portfolio-slide.active { opacity: 1; pointer-events: auto; }
.portfolio-slide img { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.portfolio-slide-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.portfolio-slide-info h4 { font-size: 14px; font-weight: 500; margin-bottom: 0; color: rgba(255,255,255,0.78); }
.portfolio-slide-info span { font-size: 12px; color: rgba(255,255,255,0.62); }
.portfolio-slide-num {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: rgba(255,255,255,0.5); letter-spacing: 1px;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(130,130,130,0.86); border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.96); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s; z-index: 10;
}
.slider-btn:hover { background: rgba(155,155,155,0.95); }
.slider-btn:hover { transform: translateY(-50%); }
.slider-btn-prev { left: 12px; }
.slider-btn-next { right: 12px; }
.slider-dots { display: flex; justify-content: center; gap: 7px; margin-top: 10px; }
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.36); cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none; padding: 0; appearance: none; display: block;
}
.slider-dot.active { background: var(--white); transform: scale(1.2); }
.portfolio-thumbs {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 14px;
}
.portfolio-thumb {
  aspect-ratio: 16/8; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: border-color 0.3s;
  background: var(--bg-card);
  padding: 0; appearance: none; line-height: 0;
}
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-thumb.active { border-color: var(--white); }
@media (max-width: 768px) {
  .slider-btn-prev { left: 8px; }
  .slider-btn-next { right: 8px; }
  .portfolio-thumbs { grid-template-columns: repeat(3, 1fr); }
  .portfolio-thumb { aspect-ratio: 16/9; }
}

/* HOW IT WORKS */
.how-section { padding: 120px 60px; max-width: 1200px; margin: 0 auto; }
.how-pairs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.how-card {
  aspect-ratio: 4/5; border-radius: 10px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.how-card-visual {
  flex: 1; display: flex; align-items: center; justify-content: center;
}
.how-card-visual svg {
  width: 48px; height: 48px; stroke: var(--text-dim); stroke-width: 1; fill: none;
}
.how-card-footer {
  padding: 18px 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.how-card-footer h4 { font-size: 13px; font-weight: 600; }
.how-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-dim);
  padding: 4px 12px; border: 1px solid var(--border); border-radius: 4px;
}
.how-notice {
  margin-top: 48px; text-align: center; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted);
  line-height: 1.9; max-width: 700px; margin-left: auto; margin-right: auto;
}
.how-notice strong { color: var(--white); }

/* ADVANTAGES */
.advantages-section { padding: 120px 60px; max-width: 1200px; margin: 0 auto; }
.advantages-table { width: 100%; border-collapse: collapse; }
.advantages-table tr {
  border-bottom: 1px solid var(--border); transition: background 0.3s, box-shadow 0.3s;
}
.advantages-table tr:first-child { border-top: 1px solid var(--border); }
.advantages-table tr:hover { background: rgba(255,255,255,0.018); box-shadow: inset 3px 0 0 rgba(255,255,255,0.38); }
.advantages-table td { padding: 32px 0; vertical-align: top; }
.advantages-table td:first-child {
  width: 180px; padding-right: 40px;
  font-family: 'Montserrat', sans-serif; font-size: 22px;
  font-weight: 400; color: var(--white);
}
.advantages-table td:last-child { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.advantages-table td:last-child strong { color: var(--text); font-weight: 600; }

/* PROCESS */
.process-section { padding: 120px 60px; max-width: 1200px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.process-card {
  padding: 40px 32px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg-card);
  transition: border-color 0.3s;
}
.process-card:hover { border-color: var(--border-hover); }
.process-num {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--text-dim); margin-bottom: 24px; letter-spacing: 1px;
}
.process-card h3 {
  font-family: 'Montserrat', sans-serif; font-size: 24px;
  font-weight: 400; margin-bottom: 16px; color: var(--white);
}
.process-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* MARQUEE */
.marquee-wrap {
  padding: 40px 0; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee {
  display: flex; animation: marqueeScroll 20s linear infinite; white-space: nowrap;
}
.marquee span {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim); padding: 0 32px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FAQ */
.faq-section { padding: 120px 60px; max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; padding: 28px 0; background: none; border: none;
  color: var(--text-muted); font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; transition: color 0.4s ease; line-height: 1.4;
}
.faq-question:hover { color: var(--text); }
.faq-item.active .faq-question { color: var(--white); }

/* Шеврон — плавно вращается при открытии */
.faq-toggle {
  width: 18px; height: 18px; flex-shrink: 0; position: relative;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-toggle::before {
  content: '';
  position: absolute;
  top: 2px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--text-dim);
  border-bottom: 1.5px solid var(--text-dim);
  transition: border-color 0.4s ease;
}
.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-item.active .faq-toggle::before { border-color: rgba(255,255,255,0.4); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
  opacity: 0;
}
.faq-item.active .faq-answer { max-height: 300px; opacity: 1; }
.faq-answer-inner {
  padding: 0 40px 28px 0; font-size: 14px; color: var(--text-muted);
  line-height: 1.85; max-width: 740px;
}

/* PRICING */
.pricing-section { padding: 120px 60px; max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 60px; align-items: end; padding-bottom: 20px; }
.pricing-card {
  padding: 40px 36px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--bg-card);
  display: flex; flex-direction: column; gap: 24px;
  position: relative; transition: border-color 0.3s;
}
.pricing-card:hover { border-color: var(--border-hover); }
.pricing-card-featured {
  border-color: transparent;
  background:
    linear-gradient(160deg, rgba(28,28,36,1) 0%, rgba(18,18,24,1) 100%) padding-box,
    linear-gradient(145deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.10) 45%, rgba(255,255,255,0.30) 100%) border-box;
  transform: translateY(-20px);
  align-self: end;
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--bg);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 16px; border-radius: 20px;
}
.pricing-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-dim);
}
.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px; font-weight: 400; color: var(--white);
}
.pricing-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.pricing-list li {
  font-size: 13px; color: var(--text-muted); padding-left: 18px; position: relative; line-height: 1.5;
}
.pricing-list li::before {
  content: "\2014"; position: absolute; left: 0; color: var(--text-dim);
}
.pricing-btn {
  display: block; text-align: center;
  padding: 14px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--white);
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}
.pricing-btn:hover { background: rgba(255,255,255,0.07); border-color: var(--border-hover); }
.pricing-card-featured .pricing-btn {
  background: var(--white); color: var(--bg); border-color: var(--white);
}
.pricing-card-featured .pricing-btn:hover { opacity: 0.85; }
.pricing-payment {
  margin-top: 48px; display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.pricing-payment-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-dim);
}
.pricing-payment-methods { display: flex; gap: 24px; }
.pricing-payment-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted);
  padding: 12px 24px; border: 1px solid var(--border);
  border-radius: 8px; background: var(--bg-card);
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-payment-methods { flex-direction: column; align-items: center; }
}

.usdt-block {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 8px; padding: 24px 32px; border: 1px solid var(--border);
  border-radius: 12px; background: var(--bg-card); width: 100%; max-width: 560px;
}
.usdt-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-dim);
}
.usdt-address {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: var(--white); word-break: break-all; text-align: center; line-height: 1.6;
}
.usdt-copy {
  padding: 8px 24px; border-radius: 6px;
  border: 1px solid var(--border); background: none;
  color: var(--text-muted); font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px;
}
.usdt-copy:hover { border-color: var(--border-hover); color: var(--white); }

/* CONTACT */
.contact-section {
  padding: 120px 60px 100px; max-width: 900px; margin: 0 auto; text-align: center;
}
.contact-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 34px); font-weight: 300; font-style: italic;
  line-height: 1.5; color: var(--text); max-width: 700px;
  margin: 0 auto 48px;
}
.contact-methods {
  display: flex; justify-content: center; gap: 12px; margin-bottom: 48px;
}
.contact-card {
  padding: 36px 44px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg-card);
  text-decoration: none; color: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.28s cubic-bezier(0.4,0,0.2,1), background 0.3s;
  text-align: center; min-width: 210px;
}
.contact-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 0 24px rgba(255,255,255,0.07), 0 10px 30px rgba(0,0,0,0.32);
  background: rgba(255,255,255,0.035);
}
.contact-card-icon {
  width: 32px; height: 32px; margin: 0 auto 16px;
  color: var(--text-dim);
  transition: color 0.3s;
}
.contact-card-icon svg { width: 100%; height: 100%; }
.contact-card:hover .contact-card-icon { color: rgba(255,255,255,0.65); }
.contact-card-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px;
}
.contact-card-value { font-size: 15px; font-weight: 600; }
.contact-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--bg);
  padding: 16px 44px; border-radius: 6px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: opacity 0.3s, box-shadow 0.3s; margin: 0 auto;
}
.contact-cta:hover { opacity: 0.9; box-shadow: 0 0 28px rgba(255,255,255,0.18); }
.cta-arrow {
  display: inline-block;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.contact-cta:hover .cta-arrow { transform: translateX(5px); }

/* ORDER MODAL */
body.order-modal-open { overflow: hidden; }

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.order-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.order-modal__card {
  width: min(1380px, calc(100vw - 96px));
  min-height: min(830px, calc(100vh - 62px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  padding: clamp(56px, 5vw, 76px) clamp(48px, 5vw, 72px) clamp(48px, 4.8vw, 72px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.11);
  background: #0d0d0d;
  box-shadow: none;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.order-modal.is-open .order-modal__card {
  transform: translateY(0) scale(1);
}
.order-modal__close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255,255,255,0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.order-modal__close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transform: rotate(90deg);
}
.order-modal__eyebrow {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.order-modal__title {
  color: var(--white);
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.order-modal__subtitle {
  max-width: 860px;
  color: rgba(255,255,255,0.56);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 46px;
}
.order-modal__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.order-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-field span,
.order-contact legend,
.order-contact-title {
  color: rgba(255,255,255,0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.order-field input,
.order-service-trigger {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  padding: 0 16px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.order-service-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}
.order-service-trigger svg {
  flex: 0 0 auto;
  color: rgba(255,255,255,0.55);
  transition: transform 0.2s ease, color 0.2s ease;
}
.order-service-trigger[aria-expanded="true"] {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.075);
}
.order-service-trigger[aria-expanded="true"] svg {
  color: rgba(255,255,255,0.82);
  transform: rotate(180deg);
}
.order-service-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 4;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  background: rgba(17,17,17,0.98);
  box-shadow: 0 20px 48px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.order-service-list.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.order-service-list button {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255,255,255,0.72);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}
.order-service-list button:hover,
.order-service-list button.is-selected {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.order-field input::placeholder { color: rgba(255,255,255,0.28); }
.order-field input:focus,
.order-service-trigger:focus {
  border-color: rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.045);
}
.order-field--service {
  position: relative;
  margin-top: 24px;
}
.order-contact {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.order-contact legend,
.order-contact-title {
  width: 100%;
  margin-bottom: 4px;
}
.order-contact label {
  cursor: pointer;
}
.order-contact input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.order-contact span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.order-contact input:checked + span,
.order-contact span:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.1);
}
.order-modal__error {
  min-height: 20px;
  margin: 12px 0 8px;
  color: #ff8b8b;
  font-size: 13px;
  line-height: 1.4;
}
.order-modal__submit {
  width: 100%;
  min-height: 70px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: var(--white);
  color: var(--bg);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.order-modal__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(255,255,255,0.12);
}
.order-modal__submit:disabled {
  opacity: 0.45;
  cursor: wait;
  transform: none;
}
.order-modal__agree {
  margin-top: 26px;
  color: rgba(255,255,255,0.34);
  font-size: 12px;
  line-height: 1.55;
}
.order-modal__agree a {
  color: rgba(255,255,255,0.72);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.order-modal__agree a:hover {
  color: var(--white);
}

/* FOOTER */
footer {
  padding: 40px 60px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
footer p { font-size: 12px; color: var(--text-dim); }
.footer-ai-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
}
.footer-ai-icon {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.footer-ai-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

/* REVEAL */
.reveal {
  opacity: 1; transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .marquee { animation: none !important; }
}

/* MOBILE */
@media (max-width: 768px) {
  body > nav { padding: 0 24px; height: 100px; }
  .nav-links, body > nav > .nav-right { display: none; }
  .nav-burger { display: inline-flex; }
  .hero { padding: 120px 24px 80px; }
  .about-section, .portfolio-section, .how-section, .advantages-section,
  .process-section, .faq-section, .contact-section { padding: 80px 24px; }
  .divider { margin: 0 24px; }
  .about-stats { flex-direction: column; gap: 24px; }
  .about-card { padding: 28px; }
  .about-card-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-card-right { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 28px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .how-pairs { grid-template-columns: 1fr; }
  .advantages-table td:first-child { width: 120px; font-size: 18px; padding-right: 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-methods { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost {
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    font-size: 16px;
  }
  .contact-cta, .pricing-btn, .contact-card, .slider-btn {
    min-height: 50px;
  }
  .slider-btn { width: 42px; height: 42px; }
  .portfolio-thumb img { height: auto; }
  .order-modal { padding: 16px; align-items: flex-end; }
  .order-modal__card {
    max-height: calc(100vh - 32px);
    padding: 28px 20px 22px;
    border-radius: 18px;
  }
  .order-modal__close { top: 14px; right: 14px; }
  .order-modal__fields { grid-template-columns: 1fr; }
  .order-modal__subtitle { font-size: 14px; margin-bottom: 22px; }
  .order-contact span { min-height: 36px; padding: 0 13px; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 24px; }
}

/* =====================================================
   PRICING IMPROVEMENTS
   ===================================================== */

/* Hover — scale + правильный translateY для featured */
.pricing-section .pricing-card:hover {
  transform: translateY(-4px) scale(1.022);
}
.pricing-section .pricing-card-featured:hover {
  transform: translateY(-24px) scale(1.022);
}


/* Mobile — убрать translateY на маленьких экранах */
@media (max-width: 768px) {
  .pricing-card-featured { transform: none; }
  .pricing-section .pricing-card:hover { transform: translateY(-2px); }
  .pricing-section .pricing-card-featured:hover { transform: translateY(-2px); }
}

/* =====================================================
   PORTFOLIO SLIDER IMPROVEMENTS
   ===================================================== */

/* 2. Slide info — animated text entrance */
@keyframes slideInfoIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.portfolio-slide.active .portfolio-slide-num {
  animation: slideInfoIn 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.18s both;
}
.portfolio-slide.active .portfolio-slide-info h4 {
  animation: slideInfoIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.32s both;
}

/* 3. Thumbnails — gradient glow border + opacity layering */
.portfolio-thumb {
  opacity: 0.45;
  transition: border-color 0.3s, opacity 0.3s, box-shadow 0.3s, transform 0.25s;
}
.portfolio-thumb:hover {
  opacity: 0.8;
}
.portfolio-thumb.active {
  opacity: 1;
  border-color: transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.18) 100%) border-box;
  box-shadow: 0 0 14px rgba(255,255,255,0.16);
}

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/inter-v20-cyrillic_latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-v20-cyrillic_latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-v20-cyrillic_latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-v20-cyrillic_latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-v20-cyrillic_latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/inter-v20-cyrillic_latin-800.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/montserrat-v31-cyrillic_latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/montserrat-v31-cyrillic_latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/montserrat-v31-cyrillic_latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/montserrat-v31-cyrillic_latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/cormorant-garamond-v21-cyrillic_latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/cormorant-garamond-v21-cyrillic_latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/cormorant-garamond-v21-cyrillic_latin-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/cormorant-garamond-v21-cyrillic_latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/cormorant-garamond-v21-cyrillic_latin-700.woff2') format('woff2'); }

.agency-footer-inactive {
  display: flex; align-items: baseline; gap: 6px;
  color: var(--text-dim, #555); cursor: default; user-select: none;
}
.agency-footer-soon {
  font-style: normal; font-size: 11px;
  color: var(--text-dim, #555); white-space: nowrap;
}

