/* ============================================
   FITBULL — Premium Luxury Personal Training
   Black · White · Gold
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-muted: #1a1a1a;
  --white: #fafafa;
  --white-muted: #a0a0a0;
  --gold: #c9a962;
  --gold-light: #d4af37;
  --gold-dark: #a88b4a;
  --gold-glow: rgba(201, 169, 98, 0.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --container: min(1200px, 92vw);
  --section-pad: clamp(5rem, 12vw, 8rem);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-desc {
  color: var(--white-muted);
  font-size: 1rem;
  max-width: 540px;
  margin-top: 1rem;
}

.section-header.centered {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header.centered .section-desc {
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full {
  width: 100%;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  padding: 0.85rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  flex-shrink: 0;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--white-muted);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--transition-fast);
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--gold);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
}

.nav-instagram {
  color: var(--white-muted);
  transition: color var(--transition-fast);
  display: flex;
}

.nav-instagram:hover {
  color: var(--gold);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--black);
  padding: clamp(6rem, 12vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

html[lang="ru"] .hero-title em {
  display: block;
  white-space: nowrap;
}

html[lang="ru"] .hero-stats > .hero-stat:nth-child(7),
html[lang="ru"] .hero-stats > .hero-stat-divider:nth-child(6) {
  display: none !important;
}

html[lang="ru"] .hero-stats {
  grid-template-columns: repeat(3, 1fr);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}

.hero-actions .btn {
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  font-size: 0.78rem;
}

.btn-hero-whatsapp {
  gap: 0.5rem;
}

.btn-icon {
  flex-shrink: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  text-align: center;
}

.hero-stat-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  line-height: 1.4;
  text-align: center;
}

.hero-stat-divider {
  display: none;
}

.hero-trust {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 400px;
  margin-inline: auto;
  text-align: center;
  width: 100%;
}

.hero-trust-line {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.45;
  max-width: 100%;
}

.hero-trust-line--emphasis {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  line-height: 0;
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1402 / 1122;
  object-fit: cover;
  object-position: center center;
}

/* ---- Sections ---- */
.section {
  padding: var(--section-pad) 0;
}

/* ---- About ---- */
.about {
  background: var(--black);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.about-image {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--white-muted);
  margin: 1.5rem 0 2rem;
  line-height: 1.8;
}

.about-credentials {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.credential-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.credential-text {
  font-size: 0.8rem;
  color: var(--white-muted);
  letter-spacing: 0.02em;
}

.achievements-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.about-background {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-background .achievements-title {
  margin-bottom: 1rem;
}

.about-background-text {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.8;
}

.achievements-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--white-muted);
}

.achievements-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ---- Services ---- */
.services {
  background: var(--black-soft);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--black);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(201, 169, 98, 0.2);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ---- Results ---- */
.results {
  background: var(--black);
}

.results-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.result-card {
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: var(--transition);
}

.result-card:hover {
  border-color: rgba(201, 169, 98, 0.2);
}

.result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.result-image {
  position: relative;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.result-card:hover .result-image img {
  transform: scale(1.03);
}

.result-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  color: var(--white-muted);
}

.result-badge.gold {
  color: var(--gold);
  border: 1px solid rgba(201, 169, 98, 0.3);
}

.result-info {
  padding: 1.5rem;
}

.result-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.result-info p {
  font-size: 0.85rem;
  color: var(--white-muted);
}

.result-caption {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.02em;
}

.result-card-featured {
  padding: 0;
  line-height: 0;
}

.result-card-featured .result-featured-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
}

.results-grid > .result-card-featured:nth-child(2) .result-featured-image {
  transform: scale(1.07);
  transform-origin: center center;
}

#results .results-grid > .result-card:nth-child(3) > .result-featured-image {
  transform: translateY(-12px) scale(1.04);
  transform-origin: top left;
}

.results-grid > .result-card-featured:nth-child(3) .result-card-image-wrap-8507 {
  width: 100%;
  aspect-ratio: 1026 / 1195;
  overflow: hidden;
}

.results-grid > .result-card-featured:nth-child(3) .result-featured-image-8507 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  margin: 0;
  padding: 0;
  border: 0;
}

/* ---- Testimonials ---- */
.testimonials {
  background: var(--black-soft);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--black);
  transition: var(--transition);
}

.testimonial-card.featured {
  border-color: rgba(201, 169, 98, 0.25);
  background: linear-gradient(135deg, var(--black) 0%, rgba(201, 169, 98, 0.05) 100%);
}

.testimonial-card:hover {
  border-color: rgba(201, 169, 98, 0.2);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.3);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author cite {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--white-muted);
}

/* ---- Contact ---- */
.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-desc {
  color: var(--white-muted);
  margin: 1rem 0 2rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--white-muted);
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--gold);
}

.contact-link svg {
  flex-shrink: 0;
  color: var(--gold);
}

.contact-form {
  padding: 2rem;
  border: 1px solid rgba(201, 169, 98, 0.15);
  background: var(--black-soft);
}

.form-note {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color var(--transition-fast);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-success {
  text-align: center;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(201, 169, 98, 0.2);
  background: rgba(201, 169, 98, 0.05);
}

/* ---- Footer ---- */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--black);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  color: var(--white-muted);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55); }
}

/* ---- Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.hero-content .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero-content .reveal:nth-child(2) { transition-delay: 0.2s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.3s; }
.hero-content .reveal:nth-child(4) { transition-delay: 0.4s; }
.hero-content .reveal:nth-child(5) { transition-delay: 0.5s; }
.hero-content .reveal:nth-child(6) { transition-delay: 0.6s; }
.hero-visual.reveal { transition-delay: 0.25s; }

/* Hero mobile content order (768px and below) */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: clamp(5rem, 10vw, 5.5rem);
    padding-bottom: 1.5rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-content {
    display: contents;
  }

  .hero-eyebrow { order: 1; }
  .hero-title { order: 2; }
  .hero-subtitle { order: 3; }
  .hero-visual { order: 4; width: 100%; }
  .hero-stats { order: 5; }
  .hero-trust { order: 6; }
  .hero-actions { order: 7; }

  .hero-eyebrow {
    margin-bottom: 1.05rem;
  }

  .hero-title {
    margin-bottom: 1.15rem;
  }

  .hero-subtitle {
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    margin-top: 0.75rem;
    padding-top: 1rem;
  }

  .hero-trust {
    margin-top: 0.75rem;
    padding-top: 0.85rem;
  }

  html[lang="en"] .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  html[lang="en"] .hero-stats > .hero-stat:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: max-content;
    max-width: 100%;
  }

  :root {
    --section-pad: clamp(2.75rem, 6.5vw, 4rem);
  }

  .section-header.centered {
    margin-bottom: clamp(1.65rem, 3.5vw, 2.5rem);
  }

  .section-desc {
    margin-top: 0.65rem;
  }

  .about-grid {
    gap: 1.65rem;
  }

  .about-lead {
    margin: 0.85rem 0 1.1rem;
  }

  .achievements-title {
    margin-bottom: 0.85rem;
  }

  .about-background {
    margin-top: 1.35rem;
    padding-top: 1.1rem;
  }

  .services-grid {
    gap: 1rem;
  }

  .service-card {
    padding: 1.35rem;
  }

  .results-grid {
    gap: 1.1rem;
  }

  .testimonials-grid {
    gap: 1rem;
  }

  .testimonial-card {
    padding: 1.35rem;
  }

  .testimonial-text {
    margin-bottom: 1rem;
  }

  .contact-grid {
    gap: 1.65rem;
  }

  .contact-desc {
    margin: 0.75rem 0 1.1rem;
  }

  .contact-form {
    padding: 1.35rem;
  }

  .footer {
    padding: 1.65rem 0;
  }
}

/* ---- Responsive ---- */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  :root {
    --section-pad: clamp(3.1rem, 7.5vw, 5rem);
  }

  .footer {
    padding: 1.875rem 0;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-subtitle,
  .hero-actions,
  .hero-stats,
  .hero-trust,
  .hero-visual {
    order: 0;
  }

  .hero {
    align-items: center;
    padding-top: calc(clamp(5.7rem, 7.875vw, 6.55rem) - 18px);
    padding-bottom: clamp(1.875rem, 3.75vw, 3.1rem);
  }

  .hero-grid {
    grid-template-columns: 42% 58%;
    gap: clamp(0.75rem, 1.2vw, 1.25rem);
    align-items: stretch;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-self: stretch;
    max-width: none;
    margin-top: 2.4rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 3.8vw, 3.8rem);
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
    max-width: 420px;
  }

  html[lang="en"] .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-width: none;
    width: 100%;
    margin-inline: 0;
  }

  .hero-actions .btn {
    min-height: 54px;
    padding: 1rem 1.75rem;
    font-size: 0.8rem;
  }

  .btn-hero-consult {
    white-space: nowrap;
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    margin-top: 2.25rem;
    padding-top: 2.25rem;
    max-width: none;
    margin-inline: 0;
  }

  html[lang="ru"] .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-stat-value {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 0.6rem;
    max-width: none;
    text-align: center;
  }

  .hero-trust {
    margin-top: auto;
    padding-top: 1.5rem;
    padding-bottom: 0;
    max-width: 100%;
    width: 100%;
    margin-inline: 0;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    box-sizing: border-box;
  }

  .hero-trust-line {
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    max-width: 100%;
  }

  .hero-trust-line--emphasis {
    font-size: 1.05rem;
    letter-spacing: 0.14em;
  }

  .hero-visual {
    justify-content: flex-end;
    align-self: start;
    margin-top: 2.4rem;
  }

  .hero-photo-frame {
    max-width: 100%;
    width: 100%;
  }

  .hero-photo {
    object-fit: cover;
    object-position: center center;
    aspect-ratio: 1402 / 1122;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
  }

  .about-image {
    max-width: none;
    margin-inline: 0;
    align-self: stretch;
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: clamp(2.8rem, 3.5vw, 4rem);
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: stretch;
    width: auto;
  }

  .btn-hero-consult {
    min-width: 320px;
    width: auto;
  }

  .hero-stats {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    grid-template-columns: unset;
  }

  .hero-stat {
    flex: 0 1 auto;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-stat-divider {
    display: block;
    width: 1px;
    align-self: stretch;
    min-height: 48px;
    background: rgba(201, 169, 98, 0.25);
    margin-right: 1.5rem;
    flex-shrink: 0;
  }

  .hero-stat-value {
    font-size: 1.65rem;
  }

  .hero-stat-label {
    font-size: 0.62rem;
    max-width: 120px;
    text-align: center;
  }

  html[lang="ru"] .hero-stats {
    justify-content: space-evenly;
  }

  html[lang="ru"] .hero-stat {
    flex: 1;
    padding-right: 0;
  }

  html[lang="ru"] .hero-stat-label {
    max-width: none;
  }

  .hero-trust-line {
    font-size: 0.88rem;
    letter-spacing: 0.22em;
  }

  .hero-trust-line--emphasis {
    font-size: 1.15rem;
    letter-spacing: 0.15em;
  }

  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .service-card:nth-child(-n+3) {
    grid-column: span 2;
  }

  .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .service-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile nav overlay */
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1rem;
  }

}
