/* ============================================================
   NOVIN AUTO GROUP — Sections Styles
   ============================================================ */

/* ── Section Commons ── */
.section { padding: var(--sec-y) var(--pad-x); }
.sec-label {
  display: flex; align-items: center; gap: 11px;
  margin-bottom: clamp(44px, 5.5vw, 72px);
}
.sec-label-bar { width: 18px; height: 1.5px; background: var(--c-gold); flex-shrink: 0; }
.sec-label-text { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--c-gold); }
.sec-label-num { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.13em; color: var(--c-rim); margin-right: auto; }
[dir=ltr] .sec-label-num { margin-right: 0; margin-left: auto; }

/* ── Reveal animation ── */
/* NOTE: .reveal class is added by JS; elements start visible by default
   and only get animated if JS+IntersectionObserver works */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.will-animate {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.will-animate.animated {
  opacity: 1;
  transform: translateY(0);
}
.reveal.will-animate.d1 { transition-delay: 0.1s; }
.reveal.will-animate.d2 { transition-delay: 0.2s; }
.reveal.will-animate.d3 { transition-delay: 0.3s; }
.reveal.will-animate.d4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-fa); font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  color: var(--c-bg); background: var(--c-gold);
  border: 1px solid var(--c-gold);
  padding: 13px 28px;
  position: relative; overflow: hidden;
  transition: color 0.3s var(--ease-out);
  cursor: pointer;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: #fff;
  transform: translateY(102%);
  transition: transform 0.35s var(--ease-out);
}
.btn-primary:hover { color: var(--c-bg); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-fa); font-size: 13px; font-weight: 300; letter-spacing: 0.04em;
  color: var(--c-text3); border: 1px solid rgba(255,255,255,0.1);
  padding: 13px 22px; cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  background: none;
}
.btn-secondary:hover { color: var(--c-text); border-color: rgba(255,255,255,0.22); }

/* ── About ── */
#about { background: var(--c-bg2); position: relative; overflow: hidden; }
#about::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent); }
.about-deco {
  position: absolute; left: -1%; top: 50%; transform: translateY(-50%);
  font-family: var(--f-display); font-size: min(44vw, 500px); font-weight: 400; font-style: italic;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,0.025);
  pointer-events: none; user-select: none; line-height: 1; z-index: 0;
}
[dir=ltr] .about-deco { left: auto; right: -1%; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 7vw, 100px); align-items: start; position: relative; z-index: 1; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-h {
  font-family: var(--f-fa); font-size: clamp(26px, 3.8vw, 54px);
  font-weight: 200; line-height: 1.18; color: var(--c-text);
}
.about-h .gold { color: var(--c-gold); }
.about-right { display: flex; flex-direction: column; gap: 22px; padding-top: 4px; }
.about-body { font-size: clamp(13px, 1.05vw, 14.5px); color: var(--c-text3); line-height: 1.95; font-weight: 300; }
/* Routes widget */
.routes-widget { border: 1px solid rgba(201,168,76,0.09); padding: 22px 20px; background: var(--c-bg4); }
.routes-title { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 16px; }
.route-row { display: flex; align-items: center; height: 34px; margin-bottom: 10px; }
.route-row:last-child { margin-bottom: 0; }
.r-origin { font-size: 13.5px; font-weight: 400; color: var(--c-text); min-width: 68px; flex-shrink: 0; }
.r-line { flex: 1; height: 1px; background: rgba(201,168,76,0.1); position: relative; overflow: hidden; margin: 0 10px; }
.r-line::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  animation: route-travel var(--spd,3.5s) ease-in-out var(--dl,0s) infinite;
}
[dir=ltr] .r-line::after { right: auto; left: 0; }
@keyframes route-travel { 0%{transform:translateX(100%)} 100%{transform:translateX(-200%)} }
.r-dest { font-size: 13px; color: var(--c-gold); min-width: 40px; flex-shrink: 0; text-align: center; }
.r-tag { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.13em; color: var(--c-text3); min-width: 44px; margin-right: auto; }
[dir=ltr] .r-tag { margin-right: 0; margin-left: auto; text-align: right; }
/* Pillars grid */
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,168,76,0.06); }
.pillar {
  background: var(--c-bg2); padding: 18px 15px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.3s;
}
.pillar:hover { background: var(--c-bg4); }
.pillar-icon { width: 19px; height: 19px; color: var(--c-gold); }
.pillar-title { font-size: 13.5px; font-weight: 500; color: var(--c-text); }
.pillar-text { font-size: 13px; color: var(--c-text3); line-height: 1.65; }

/* ── Services ── */
#services { background: var(--c-bg); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: end; margin-bottom: clamp(44px, 6vw, 80px); }
@media (max-width: 680px) { .services-header { grid-template-columns: 1fr; gap: 16px; } }
.services-h { font-family: var(--f-fa); font-size: clamp(26px, 4.2vw, 60px); font-weight: 200; line-height: 1.04; color: var(--c-text); }
.services-desc { font-size: clamp(12px, 1.05vw, 13.5px); color: var(--c-text3); line-height: 1.9; max-width: 300px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.03); }
@media (max-width: 840px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--c-bg); padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 210px; position: relative; overflow: hidden;
  transition: background 0.4s;
}
.service-card:hover { background: var(--c-bg2); }
.service-card::after {
  content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 1.5px;
  background: var(--c-gold); transition: width 0.55s var(--ease-out);
}
[dir=ltr] .service-card::after { right: auto; left: 0; }
.service-card:hover::after { width: 100%; }
.service-num { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.18em; color: var(--c-gold); opacity: 0.6; }
.service-icon-wrap { flex: 1; display: flex; align-items: flex-end; }
.service-icon { width: 28px; height: 28px; color: rgba(201,168,76,0.38); transition: color 0.35s, transform 0.35s var(--ease-out); }
.service-card:hover .service-icon { color: var(--c-gold); transform: scale(1.1) translateY(-2px); }
.service-title { font-size: clamp(14px, 1.6vw, 17px); font-weight: 400; color: var(--c-text); line-height: 1.3; }
.service-text { font-size: 13.5px; color: var(--c-text3); line-height: 1.78; }
.service-more { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-gold); display: flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.service-card:hover .service-more { gap: 12px; }

/* ── Cinema Break ── */
.cinema-break {
  position: relative; height: clamp(300px, 44vw, 540px);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.cinema-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 110% 70% at 50% 50%, #0E1525 0%, #080C17 60%); }
.cinema-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.013) 1px,transparent 1px),linear-gradient(90deg,rgba(201,168,76,0.013) 1px,transparent 1px); background-size: 72px 72px; }
.cinema-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,76,0.04); animation: ring-rotate 32s linear infinite; }
.cinema-ring:nth-child(3) { width: min(460px,82vw); aspect-ratio: 1; }
.cinema-ring:nth-child(4) { width: min(300px,55vw); aspect-ratio: 1; animation-duration: 20s; animation-direction: reverse; }
.cinema-ring:nth-child(5) { width: min(180px,34vw); aspect-ratio: 1; animation-duration: 12s; }
@keyframes ring-rotate { to { transform: rotate(360deg); } }
.cinema-car { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: center; align-items: flex-end; pointer-events: none; }
.cinema-car svg { width: min(52%, 560px); opacity: 0.07; animation: cinema-float 7s ease-in-out infinite alternate; }
@keyframes cinema-float { 0%{transform:translateY(0)} 100%{transform:translateY(-12px)} }
.cinema-content { position: relative; z-index: 2; text-align: center; padding: 0 clamp(20px, 6vw, 80px); }
.cinema-quote {
  font-family: var(--f-fa); font-size: clamp(18px, 3vw, 44px);
  font-weight: 200; color: var(--c-text); line-height: 1.38; max-width: 720px;
}
.cinema-quote .gold { color: var(--c-gold); }
.cinema-caption { margin-top: 16px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--c-text3); }

/* ── Vehicles ── */
#vehicles { background: var(--c-bg2); }
.vehicles-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(40px, 5vw, 66px); gap: 16px; flex-wrap: wrap; }
.vehicles-h { font-family: var(--f-fa); font-size: clamp(26px, 4.2vw, 60px); font-weight: 200; line-height: 0.98; color: var(--c-text); }
.vehicles-h .gold { color: var(--c-gold); }
.vehicles-all { font-size: 13.5px; color: var(--c-text3); display: flex; align-items: center; gap: 7px; transition: color 0.25s; flex-shrink: 0; }
.vehicles-all:hover { color: var(--c-gold); }
.vehicles-scroll { overflow-x: auto; scrollbar-width: none; margin: 0 calc(-1 * var(--pad-x)); padding: 0 var(--pad-x) 2px; cursor: grab; }
.vehicles-scroll:active { cursor: grabbing; }
.vehicles-scroll::-webkit-scrollbar { display: none; }
.vehicles-track { display: flex; gap: 2px; width: max-content; }
.vehicle-card {
  width: clamp(260px, 30vw, 360px); flex-shrink: 0;
  background: var(--c-bg4); display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease-out); position: relative; overflow: hidden;
}
.vehicle-card:hover { transform: translateY(-8px); }
.vc-image { aspect-ratio: 16/9; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--c-bg); }
.vc-image svg { width: 88%; position: relative; z-index: 2; transition: filter 0.5s, transform 0.5s var(--ease-out); }
.vehicle-card:hover .vc-image svg { filter: drop-shadow(0 0 18px rgba(201,168,76,0.22)); transform: scale(1.04) translateY(-3px); }
.vc-glow { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 90%; height: 35%; background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 65%); filter: blur(10px); z-index: 1; }
.vc-badge { position: absolute; top: 10px; right: 10px; z-index: 4; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 8px; }
[dir=ltr] .vc-badge { right: auto; left: 10px; }
.vc-badge.available { background: var(--c-gold); color: var(--c-bg); }
.vc-badge.reserved { background: transparent; color: var(--c-gold); border: 1px solid rgba(201,168,76,0.35); }
.vc-info { padding: 16px 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.vc-make { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); }
.vc-name { font-size: clamp(14px, 1.7vw, 18px); font-weight: 300; color: var(--c-text); line-height: 1.3; }
.vc-specs { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 2px; }
.vc-spec { display: flex; flex-direction: column; gap: 1px; }
.vc-spec-val { font-family: var(--f-mono); font-size: 11px; color: var(--c-text); }
.vc-spec-key { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--c-text3); }
.vc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; padding-top: 11px; border-top: 1px solid rgba(255,255,255,0.05); }
.vc-price { font-family: var(--f-display); font-size: clamp(15px, 1.8vw, 20px); font-weight: 300; color: var(--c-text); }
.vc-inquire { font-size: 13px; font-weight: 400; color: var(--c-gold); border: 1px solid rgba(201,168,76,0.28); padding: 6px 12px; background: none; cursor: pointer; transition: all 0.3s var(--ease-out); }
.vehicle-card:hover .vc-inquire { background: var(--c-gold); color: var(--c-bg); border-color: var(--c-gold); }

/* ── Testimonials ── */
#testimonials { background: var(--c-bg); border-top: 1px solid rgba(201,168,76,0.07); }
.testimonials-header { text-align: center; margin-bottom: clamp(44px, 5.5vw, 72px); }
.testimonials-h { font-family: var(--f-fa); font-size: clamp(24px, 3.5vw, 46px); font-weight: 200; color: var(--c-text); line-height: 1.2; margin-bottom: 8px; }
.testimonials-h .gold { color: var(--c-gold); }
.testimonials-sub { font-size: clamp(12px, 1.05vw, 13.5px); color: var(--c-text3); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.03); }
@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--c-bg); padding: clamp(24px, 3.2vw, 38px);
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.35s; position: relative;
}
.testi-card:hover { background: var(--c-bg2); }
.testi-card::before {
  content: '"'; position: absolute; top: 14px; left: 18px;
  font-family: Georgia, serif; font-size: 64px; font-weight: 300;
  color: rgba(201,168,76,0.07); line-height: 1; pointer-events: none;
}
[dir=ltr] .testi-card::before { left: auto; right: 18px; }
.testi-stars { display: flex; gap: 3px; }
.testi-star { width: 12px; height: 12px; color: var(--c-gold); }
.testi-text { font-size: clamp(12px, 1.05vw, 13.5px); color: var(--c-text2); line-height: 1.88; font-style: italic; }
.testi-footer { display: flex; align-items: center; gap: 11px; margin-top: auto; padding-top: 13px; border-top: 1px solid rgba(255,255,255,0.05); }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--c-bg4); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; font-size: 13.5px; font-weight: 500; color: var(--c-gold); flex-shrink: 0; }
.testi-name { font-size: 13.5px; font-weight: 500; color: var(--c-text); }
.testi-meta { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--c-text3); margin-top: 2px; }
.testi-badge { margin-right: auto; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--c-gold); border: 1px solid rgba(201,168,76,0.18); padding: 3px 8px; }
[dir=ltr] .testi-badge { margin-right: 0; margin-left: auto; }

/* ── Numbers ── */
#numbers { background: var(--c-bg2); border-top: 1px solid rgba(201,168,76,0.07); }
.numbers-layout { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(40px, 7.5vw, 110px); align-items: start; }
@media (max-width: 840px) { .numbers-layout { grid-template-columns: 1fr; gap: 44px; } }
.numbers-left { position: sticky; top: 95px; }
.numbers-h { font-family: var(--f-fa); font-size: clamp(24px, 3.5vw, 50px); font-weight: 200; line-height: 1.22; color: var(--c-text); }
.numbers-h .gold { color: var(--c-gold); }
.numbers-body { margin-top: 14px; font-size: clamp(12px, 1.05vw, 13.5px); color: var(--c-text3); line-height: 1.95; }
.numbers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,168,76,0.04); }
.number-item { background: var(--c-bg2); padding: clamp(22px, 3.2vw, 42px) clamp(18px, 3vw, 36px); display: flex; flex-direction: column; gap: 12px; transition: background 0.3s; cursor: default; }
.number-item:hover { background: var(--c-bg4); }
.number-val { font-family: var(--f-display); font-size: clamp(40px, 5.5vw, 72px); font-weight: 300; color: var(--c-text); line-height: 0.88; }
.number-val sup { font-size: 0.38em; color: var(--c-gold); vertical-align: super; }
.number-label { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-text3); line-height: 1.55; }
.number-desc { font-size: 13px; color: var(--c-rim); line-height: 1.68; max-width: 190px; margin-top: 3px; }

/* ── Process ── */
#process { background: var(--c-bg); }
.process-h { font-family: var(--f-fa); font-size: clamp(24px, 4vw, 58px); font-weight: 200; color: var(--c-text); max-width: 480px; margin-bottom: clamp(44px, 6vw, 84px); line-height: 1.18; }
.process-h .gold { color: var(--c-gold); }
.process-step {
  display: grid; grid-template-columns: 72px 1fr 48px;
  align-items: start; padding: clamp(22px, 3.2vw, 40px) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  gap: clamp(16px, 3.5vw, 48px);
  transition: background 0.3s, padding-right 0.3s;
}
.process-step:last-child { border-bottom: 1px solid rgba(255,255,255,0.04); }
.process-step:hover { background: rgba(201,168,76,0.018); }
@media (max-width: 580px) { .process-step { grid-template-columns: 48px 1fr; } .process-arrow { display: none; } }
.process-num { font-family: var(--f-display); font-size: clamp(38px, 5vw, 60px); font-weight: 300; color: rgba(201,168,76,0.09); line-height: 1; transition: color 0.35s; }
.process-step:hover .process-num { color: rgba(201,168,76,0.32); }
.process-content { padding-top: 4px; }
.process-title { font-size: clamp(14px, 2vw, 22px); font-weight: 400; color: var(--c-text); margin-bottom: 7px; }
.process-text { font-size: clamp(11px, 1.05vw, 13px); color: var(--c-text3); line-height: 1.84; max-width: 420px; }
.process-arrow { font-family: var(--f-mono); font-size: 14px; color: rgba(201,168,76,0.16); padding-top: 7px; transition: color 0.3s, transform 0.3s var(--ease-out); }
[dir=rtl] .process-arrow { transform: scaleX(-1); }
.process-step:hover .process-arrow { color: var(--c-gold); }
[dir=rtl] .process-step:hover .process-arrow { transform: scaleX(-1) translateX(-5px); }
[dir=ltr] .process-step:hover .process-arrow { transform: translateX(5px); }

/* ── CTA ── */
#cta { background: var(--c-bg2); position: relative; overflow: hidden; padding: clamp(88px, 12vw, 160px) var(--pad-x); }
#cta::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent); }
.cta-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid rgba(201,168,76,0.04); animation: ring-rotate 40s linear infinite; pointer-events: none; }
.cta-ring:nth-child(1) { width: min(640px,92vw); aspect-ratio: 1; }
.cta-ring:nth-child(2) { width: min(440px,66vw); aspect-ratio: 1; animation-duration: 26s; animation-direction: reverse; }
.cta-ring:nth-child(3) { width: min(260px,40vw); aspect-ratio: 1; animation-duration: 15s; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(500px,80vw); aspect-ratio: 1; background: radial-gradient(circle,rgba(201,168,76,0.03) 0%,transparent 64%); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 3vw, 36px); }
.cta-eyebrow { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--c-gold); }
.cta-h { font-family: var(--f-fa); font-size: clamp(28px, 5.5vw, 76px); font-weight: 200; line-height: 1.1; color: var(--c-text); }
.cta-h .gold { color: var(--c-gold); }
.cta-sub { font-size: clamp(12px, 1.2vw, 14px); color: var(--c-text3); line-height: 1.96; max-width: 420px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-contacts { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.cta-contact { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.cta-contact-label { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-text3); }
.cta-contact-val { font-size: 13.5px; color: var(--c-text2); transition: color 0.2s; }
.cta-contact-val:hover { color: var(--c-gold); }

/* ── Footer ── */
footer { background: var(--c-bg); border-top: 1px solid rgba(201,168,76,0.07); padding: clamp(48px, 7.5vw, 90px) var(--pad-x) clamp(26px, 3.5vw, 40px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(24px, 5vw, 66px); padding-bottom: clamp(40px, 5.5vw, 68px); border-bottom: 1px solid rgba(255,255,255,0.04); }
@media (max-width: 840px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 440px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name { font-size: 14px; font-weight: 500; color: var(--c-text); }
.footer-brand-tag { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--c-gold); }
.footer-brand-desc { font-size: 13px; color: var(--c-text3); line-height: 1.85; max-width: 220px; }
.footer-socials { display: flex; gap: 12px; margin-top: 4px; }
.footer-soc { width: 31px; height: 31px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.18); display: flex; align-items: center; justify-content: center; transition: all 0.25s; color: var(--c-text3); }
.footer-soc svg { width: 13px; height: 13px; }
.footer-soc:hover { border-color: rgba(201,168,76,0.5); color: var(--c-gold); background: rgba(201,168,76,0.06); }
.footer-col-title { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13.5px; color: var(--c-text3); transition: color 0.2s; }
.footer-links a:hover { color: var(--c-text); }
.footer-bottom { margin-top: clamp(22px, 3.2vw, 38px); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--c-rim); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--c-rim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--c-text3); }

/* ── Footer Credit ── */
.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: clamp(14px,2vw,20px) var(--pad-x);
  border-top: 1px solid rgba(201,168,76,0.07);
  margin-top: clamp(22px,3.2vw,38px);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--c-text4);
}
.credit-name {
  color: var(--c-gold);
  font-weight: 400;
  letter-spacing: 0.18em;
  transition: color 0.3s;
}
.credit-name:hover { color: var(--c-gold-l); }
.credit-dot { color: var(--c-rim); }
.credit-year { color: var(--c-text4); }

/* ── Why Novin Section ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.06);
}
@media (max-width: 860px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--c-bg);
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 2.8vw, 34px);
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.35s;
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 0; height: 1.5px; background: var(--c-gold);
  transition: width 0.55s var(--ease-out);
}
[dir=ltr] .why-card::after { right: auto; left: 0; }
.why-card:hover { background: var(--c-bg2); }
.why-card:hover::after { width: 100%; }
.why-icon {
  width: 24px; height: 24px; color: var(--c-gold);
  opacity: 0.7; transition: opacity 0.3s, transform 0.35s var(--ease-out);
  flex-shrink: 0;
}
.why-card:hover .why-icon { opacity: 1; transform: scale(1.1) translateY(-2px); }
.why-card h3 {
  font-family: var(--f-fa); font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 500; color: var(--c-text); line-height: 1.3;
}
.why-card p {
  font-size: 13.5px; color: var(--c-text3); line-height: 1.82;
}

/* ── Team Section ── */
.team-section { background: var(--c-bg) !important; }
.team-header { margin-bottom: clamp(44px, 5.5vw, 68px); }
.team-h {
  font-family: var(--f-fa); font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 200; color: var(--c-text); line-height: 1.2;
  margin-bottom: 10px;
}
.team-sub { font-size: clamp(12px, 1.05vw, 13.5px); color: var(--c-text3); max-width: 460px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.05);
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--c-bg);
  padding: clamp(28px, 3.5vw, 42px) clamp(22px, 2.8vw, 32px);
  display: flex; flex-direction: column; gap: 20px;
  transition: background 0.35s;
  position: relative; overflow: hidden;
}
.team-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--c-gold);
  transition: width 0.55s var(--ease-out);
}
.team-card:hover { background: var(--c-bg2); }
.team-card:hover::after { width: 100%; }

/* Avatar */
.team-avatar {
  position: relative; width: fit-content;
}
.team-avatar-inner {
  width: clamp(64px, 7vw, 88px);
  height: clamp(64px, 7vw, 88px);
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: border-color 0.35s;
}
.team-card:hover .team-avatar-inner { border-color: rgba(201,168,76,0.45); }
.team-avatar-inner svg { width: 80%; height: 80%; }
/* If real photo added */
.team-avatar-inner img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
}
.team-role-badge {
  position: absolute;
  bottom: -4px; right: -8px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-bg);
  background: var(--c-gold); padding: 3px 7px;
  white-space: nowrap;
}

/* Info */
.team-info { display: flex; flex-direction: column; gap: 6px; }
.team-name  { font-size: clamp(14px, 1.6vw, 17px); font-weight: 500; color: var(--c-text); }
.team-title { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-gold); opacity: .8; }
.team-bio   { font-size: 13.5px; color: var(--c-text3); line-height: 1.82; margin-top: 4px; }

.team-note {
  margin-top: clamp(28px, 3.5vw, 44px);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--c-rim); font-style: italic;
}

/* ── Team Section ── */
.team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px; align-items: end;
  margin-bottom: clamp(44px, 5.5vw, 72px);
}
@media (max-width: 640px) { .team-header { grid-template-columns: 1fr; gap: 14px; } }
.team-h {
  font-family: var(--f-fa);
  font-size: clamp(26px, 4vw, 56px);
  font-weight: 200; line-height: 1.1; color: var(--c-text);
}
.team-sub {
  font-size: clamp(12px, 1.05vw, 14px);
  color: var(--c-text3); line-height: 1.9; max-width: 340px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.05);
  margin-bottom: 1px;
}
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--c-bg);
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 18px;
  transition: background 0.35s;
  position: relative; overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 0; height: 1.5px;
  background: var(--c-gold);
  transition: width 0.55s var(--ease-out);
}
[dir=ltr] .team-card::before { right: auto; left: 0; }
.team-card:hover { background: var(--c-bg2); }
.team-card:hover::before { width: 100%; }

/* Avatar */
.team-avatar {
  position: relative; width: 64px; height: 64px;
  flex-shrink: 0;
}
.ta-inner {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--c-bg4);
  border: 1px solid rgba(201,168,76,0.22);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-fa); font-size: 22px; font-weight: 500;
  color: var(--c-gold);
  position: relative; z-index: 1;
}
.ta-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  animation: ring-spin 12s linear infinite;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }
.ta-ring::before {
  content: '';
  position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-gold); opacity: 0.6;
}

/* Info */
.team-info { display: flex; flex-direction: column; gap: 8px; }
.team-role {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-gold); opacity: 0.8;
}
.team-name {
  font-family: var(--f-fa);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400; color: var(--c-text); line-height: 1.2;
}
.team-bio {
  font-size: 13.5px; color: var(--c-text3);
  line-height: 1.85; max-width: 340px;
}
.team-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px;
}
.team-tag {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-gold); opacity: 0.7;
  border: 1px solid rgba(201,168,76,0.18);
  padding: 3px 8px;
}

/* Experts */
.experts-section {
  background: var(--c-bg2);
  border: 1px solid rgba(201,168,76,0.07);
  padding: clamp(22px, 3vw, 36px);
  margin-top: 1px;
}
.experts-title {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: 20px;
}
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.05);
}
@media (max-width: 640px) { .experts-grid { grid-template-columns: repeat(2, 1fr); } }

.expert-card {
  background: var(--c-bg2);
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 5px;
  transition: background 0.3s;
  position: relative;
}
.expert-card:hover { background: var(--c-bg4); }
.expert-flag {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--c-gold);
}
.expert-country {
  font-size: 13.5px; font-weight: 400; color: var(--c-text);
}
.expert-city {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--c-text3);
}
.expert-bio {
  font-size: 13px; color: var(--c-text3); line-height: 1.72;
  margin-top: 4px;
}
.expert-dot {
  position: absolute; top: 14px; left: 14px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-green);
  animation: dot-blink 2.5s ease-in-out infinite;
}
[dir=ltr] .expert-dot { left: auto; right: 14px; }
@keyframes dot-blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* ══════════════════════════════════════════════
   OFFERS SECTION — طرح‌های ویژه
══════════════════════════════════════════════ */
.offers-section { background: var(--c-bg2); }

.offers-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: clamp(36px, 5vw, 60px); flex-wrap: wrap; gap: 16px;
}
.offers-h {
  font-family: var(--f-fa); font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400; line-height: 1.3; color: var(--c-text);
}
.offers-ig-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--c-text3);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 9px 16px; transition: all 0.3s;
  text-decoration: none; flex-shrink: 0;
}
.offers-ig-link:hover { color: #E1306C; border-color: rgba(225,48,108,0.3); }

/* Loading */
.offers-loading {
  display: flex; align-items: center; gap: 14px;
  padding: clamp(40px,6vw,80px) 0; color: var(--c-text3); font-size: 13.5px;
  transition: opacity 0.3s;
}
.offers-loading.hidden { display: none !important; }
.offers-spinner {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.15);
  border-top-color: var(--c-gold);
  animation: spin 0.9s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Empty */
.offers-empty {
  padding: clamp(40px,6vw,80px) 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  color: var(--c-text3); font-size: 13.5px; line-height: 1.8;
}

/* Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 360px));
  gap: 16px;
  width: 100%;
  justify-content: center;
}
@media (max-width: 700px) {
  .offers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .offers-grid { grid-template-columns: 1fr; } }

/* Card */
.offer-card {
  background: var(--c-bg);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  opacity: 1 !important;
  transform: none;
  transition: transform 0.45s var(--ease-out);
}
.offer-card:hover { transform: translateY(-6px); }

/* Expired overlay */
.offer-card.expired { opacity: 0.45; pointer-events: none; }
.offer-card.expired::after {
  content: attr(data-expired-text);
  position: absolute; inset: 0;
  background: rgba(8,12,23,0.72);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-fa); font-size: 18px; color: var(--c-text3);
}

/* Image */
.oc-image {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--c-bg3);
  display: flex; align-items: center; justify-content: center;
}
.oc-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.offer-card:hover .oc-image img { transform: scale(1.04); }
/* placeholder when no image */
.oc-image-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--c-rim); background: var(--c-bg3);
}
.oc-image-placeholder span { font-size: 13px; }

/* Badge */
.oc-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--c-gold); color: var(--c-bg);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px;
}
[dir=ltr] .oc-badge { right: auto; left: 12px; }

/* Timer */
.oc-timer {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to top, rgba(8,12,23,0.95), transparent);
  padding: 24px 14px 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.oc-timer-label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(201,168,76,0.7);
}
.oc-timer-value {
  font-family: var(--f-mono); font-size: 13px; color: var(--c-gold); letter-spacing: 0.06em;
}
.oc-timer-value.urgent { color: #f55; animation: urgentPulse 1s ease-in-out infinite alternate; }
@keyframes urgentPulse { 0%{opacity:1} 100%{opacity:0.6} }

/* Info */
.oc-info { padding: 16px 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.oc-make { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); }
.oc-name { font-size: clamp(15px, 1.8vw, 19px); font-weight: 300; color: var(--c-text); line-height: 1.2; }
.oc-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 2px; }
.oc-meta-item { display: flex; flex-direction: column; gap: 2px; }
.oc-meta-val { font-family: var(--f-mono); font-size: 11px; color: var(--c-text); }
.oc-meta-key { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text3); }
.oc-footer {
  margin-top: 6px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.oc-price { font-family: var(--f-display); font-size: clamp(16px, 2vw, 21px); font-weight: 300; color: var(--c-text); }
.oc-actions { display: flex; gap: 8px; align-items: center; }
.oc-wa-btn {
  display: flex; align-items: center; gap: 6px;
  background: #25D366; color: #fff;
  font-family: var(--f-fa); font-size: 13px; font-weight: 400;
  border: none; cursor: pointer; padding: 8px 14px;
  transition: background 0.25s, transform 0.2s;
  text-decoration: none;
}
.oc-wa-btn:hover { background: #1da851; transform: scale(1.03); }
.oc-wa-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.oc-ig-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1); color: var(--c-text3);
  transition: all 0.25s; background: none; text-decoration: none;
}
.oc-ig-btn:hover { border-color: #E1306C; color: #E1306C; }
.oc-ig-btn svg { width: 15px; height: 15px; }
