﻿/* BRAND SLIDERS */
.brand-sliders-section { padding: 88px 52px; max-width: 1500px; margin: 0 auto; }
.brand-sliders-section .section-label { margin-bottom: 40px; }
.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: opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}
.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);
}
.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); }

/* 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 {
  display: flex; align-items: center; gap: 4px;
  border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; margin-left: 8px;
}
.lang-btn {
  padding: 6px 10px; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; color: var(--text-dim);
  background: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active { background: var(--white); color: var(--bg); }
.lang-btn:hover:not(.active) { color: var(--white); }

*, *::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 */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px; height: 72px;
  display: flex; justify-content: space-between; align-items: center;
  backdrop-filter: blur(24px) saturate(1.2);
  background: rgba(11,11,11,0.8);
  border-bottom: 1px solid var(--border);
}
.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: 36px; align-items: center; }
.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;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 13px;
  font-weight: 500; letter-spacing: 0.3px; transition: color 0.3s;
}
.nav-links a:hover { 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; }

/* 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;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero-label {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  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: 28px; 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;
}
.hero-sub {
  font-size: 16px; color: var(--text-muted); max-width: 560px;
  line-height: 1.75; margin-bottom: 48px;
  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: all 0.3s; border: 1px solid rgba(255,255,255,0.12); cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: #2a2a2a; border-color: rgba(255,255,255,0.25); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: #111111; color: #e8e8e8;
  padding: 20px 56px; border-radius: 6px;
  font-weight: 600; font-size: 16px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12); transition: all 0.3s;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-ghost:hover { background: #1e1e1e; border-color: rgba(255,255,255,0.25); color: var(--white); }

@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-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;
}
.advantages-table tr:first-child { border-top: 1px solid var(--border); }
.advantages-table tr:hover { background: rgba(255,255,255,0.015); }
.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(--white); font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 600; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; transition: color 0.3s; line-height: 1.4;
}
.faq-question:hover { color: var(--text-muted); }
.faq-toggle {
  width: 20px; height: 20px; flex-shrink: 0; position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--text-dim); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
}
.faq-toggle::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.faq-toggle::after { width: 1px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.active .faq-toggle::before { background: var(--text-muted); }
.faq-item.active .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg); opacity: 0;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  opacity: 0;
}
.faq-item.active .faq-answer { max-height: 300px; opacity: 1; }
.faq-answer-inner {
  padding: 0 0 28px; 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; }
.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: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}
.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: '—'; 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: 32px 40px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg-card);
  text-decoration: none; color: var(--white); transition: border-color 0.3s;
  text-align: center; min-width: 200px;
}
.contact-card:hover { border-color: var(--border-hover); }
.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; margin: 0 auto;
}
.contact-cta:hover { opacity: 0.85; }

/* 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) {
  nav { padding: 0 24px; height: 64px; }
  .nav-links, nav > .lang-switcher { 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; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 24px; }
}

@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'); }

