/* === TOKENS === */
:root {
  --clr-bg:        #F5F5F5;
  --clr-bg-alt:    #EBEBEB;
  --clr-black:     #111111;
  --clr-black-h:   #000000;
  --clr-charcoal:  #1E1E1E;
  --clr-dark:      #2A2A2A;
  --clr-mid:       #555555;
  --clr-muted:     #777777;
  --clr-pale:      #FFF3B0;
  --clr-yellow:    #F5C200;
  --clr-yellow-h:  #D9AA00;
  --clr-yellow-lt: #FFF0A0;
  --clr-white:     #FFFFFF;
  --clr-text:      #111111;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 2px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.18);
  --transition: .2s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--clr-bg); color: var(--clr-text); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font: inherit; }

/* === UTILS === */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-yellow); color: var(--clr-black);
  border-color: var(--clr-yellow);
  box-shadow: 0 4px 14px rgba(245,194,0,.4);
}
.btn--primary:hover {
  background: var(--clr-yellow-h); border-color: var(--clr-yellow-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,194,0,.5);
}
.btn--dark {
  background: var(--clr-black); color: var(--clr-white);
  border-color: var(--clr-black);
}
.btn--dark:hover { background: var(--clr-dark); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--clr-black);
  border-color: var(--clr-black);
}
.btn--ghost:hover { background: var(--clr-black); color: var(--clr-white); }
.btn--nav {
  background: var(--clr-yellow); color: var(--clr-black);
  padding: 10px 20px; font-size: .875rem;
  box-shadow: 0 2px 8px rgba(245,194,0,.3);
}
.btn--nav:hover { background: var(--clr-yellow-h); transform: translateY(-1px); }
.btn--full { width: 100%; justify-content: center; }
.btn--white { background: var(--clr-white); color: var(--clr-black); border-color: var(--clr-white); }
.btn--white:hover { background: var(--clr-yellow-lt); }
.btn--outline-white { background: transparent; color: var(--clr-white); border-color: rgba(255,255,255,.6); }
.btn--outline-white:hover { background: rgba(255,255,255,.15); }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17,17,17,.97);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--clr-yellow);
}
.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.05rem; color: var(--clr-white);
}
.nav__logo strong { font-weight: 800; color: var(--clr-yellow); }
.logo-icon {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--clr-yellow); color: var(--clr-black);
  border-radius: 50%; font-size: 1rem; font-weight: 900;
}
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a:not(.btn) {
  font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.nav__links a:not(.btn):hover { color: var(--clr-yellow); }
.nav__burger { display: none; background: none; border: none; font-size: 1.5rem; color: var(--clr-white); cursor: pointer; }
.nav__mobile {
  display: none; flex-direction: column;
  background: var(--clr-charcoal);
  border-top: 1px solid #333;
  padding: 16px 24px; gap: 16px;
}
.nav__mobile a { font-weight: 600; color: rgba(255,255,255,.75); }
.nav__mobile a:hover { color: var(--clr-yellow); }
.nav__mobile.open { display: flex; }

/* === HERO === */
.hero {
  background: var(--clr-black);
  padding: 0;
}
.hero__banner {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}
.hero__cta-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  background: var(--clr-charcoal);
  padding: 20px 24px;
  border-top: 3px solid var(--clr-yellow);
}

/* === LANG SWITCH === */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
}
.lang-sep { color: rgba(255,255,255,.3); font-size: .85rem; }
.lang-btn {
  background: none; border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.55); border-radius: 6px;
  padding: 4px 10px; font-size: .78rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  letter-spacing: .05em;
}
.lang-btn:hover { border-color: var(--clr-yellow); color: var(--clr-yellow); }
.lang-btn.is-active {
  background: var(--clr-yellow); border-color: var(--clr-yellow);
  color: var(--clr-black);
}
.lang-switch--mobile { padding-top: 8px; border-top: 1px solid #333; }
.lang-switch--mobile .lang-sep { color: rgba(255,255,255,.3); }

/* === HERO (image swap) === */
.hero { background: var(--clr-black); padding: 0; }
.hero__banner { width: 100%; height: auto; display: block; cursor: pointer; }
.hero__cta-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  background: var(--clr-charcoal);
  padding: 20px 24px;
  border-top: 3px solid var(--clr-yellow);
}

/* === HERO BANNER (unused — kept for reference) === */
.hero-banner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--clr-black);
  min-height: 500px;
  overflow: hidden;
}
.hero-banner__left {
  padding: 36px 40px 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; z-index: 2;
}
.hero-banner__right {
  position: relative;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-banner__right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.hero-brand { line-height: .95; }
.hero-brand__top {
  font-size: 1.1rem; font-weight: 700;
  color: rgba(255,255,255,.85); letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-brand__main {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900; color: var(--clr-white);
  text-transform: uppercase; line-height: 1;
}
.hero-brand__express {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900; color: var(--clr-yellow);
  text-transform: uppercase; line-height: 1;
  display: flex; align-items: center; gap: 10px;
}
.hero-brand__lines {
  font-size: .7em; letter-spacing: -.1em;
  color: rgba(245,194,0,.6);
}
.hero-tagline {
  display: inline-block;
  background: rgba(255,255,255,.93);
  color: var(--clr-black);
  padding: 8px 16px;
  font-size: .8rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .05em;
  align-self: flex-start;
}
.hero-icons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.hero-icon {
  display: flex; gap: 10px; align-items: flex-start;
}
.hero-icon__circle {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border: 2px solid var(--clr-yellow);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.hero-icon__title {
  font-size: .68rem; font-weight: 900;
  color: var(--clr-yellow);
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 2px; line-height: 1.2;
}
.hero-icon__desc {
  font-size: .68rem; color: rgba(255,255,255,.6); line-height: 1.35;
}
.hero-badges {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid #2A2A2A;
  padding-top: 14px;
}
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.8);
}
.hero-badge svg { color: var(--clr-yellow); flex-shrink: 0; }
.hero-cta-btns {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hero-slogan {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--clr-yellow);
  padding: 12px 20px;
}
.hero-slogan__line1 {
  font-size: .72rem; font-weight: 800;
  color: rgba(0,0,0,.7); text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-slogan__line2 {
  font-size: 1.15rem; font-weight: 900;
  color: var(--clr-black); text-transform: uppercase;
  letter-spacing: .02em; line-height: 1.1;
}

/* === STATS STRIP === */
.stats { background: var(--clr-black); padding: 0; }
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid #2A2A2A;
  color: var(--clr-white);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-size: 2.6rem; font-weight: 800;
  color: var(--clr-yellow);
  line-height: 1; margin-bottom: 6px;
}
.stat__label {
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .06em;
}

/* === SECTIONS === */
.section { padding: 88px 0; }
.section--alt { background: var(--clr-bg-alt); }
.section--dark { background: var(--clr-black); }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__tag {
  display: inline-block;
  background: var(--clr-yellow); color: var(--clr-black);
  padding: 5px 16px; border-radius: 100px;
  font-size: .78rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.section__header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--clr-black);
  margin-bottom: 14px; line-height: 1.15;
}
.section--dark .section__header h2 { color: var(--clr-white); }
.section__header p { color: var(--clr-muted); font-size: 1.05rem; }
.section--dark .section__header p { color: rgba(255,255,255,.55); }

/* === CARDS === */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 24px; }
.card {
  background: var(--clr-white);
  border: 1px solid #E0E0E0;
  border-top: 4px solid var(--clr-yellow);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--clr-black); }
.card__icon {
  width: 56px; height: 56px;
  background: var(--clr-yellow);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.05rem; font-weight: 800; color: var(--clr-black); margin-bottom: 10px; }
.card p  { font-size: .92rem; color: var(--clr-muted); line-height: 1.7; }

/* === SPLIT (image + features) === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.split__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.split__img:hover img { transform: scale(1.03); }
.split__credit {
  position: absolute; bottom: 10px; right: 12px;
  font-size: .65rem; color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.35); padding: 2px 8px;
  border-radius: 100px; backdrop-filter: blur(4px);
}

/* === FEATURES === */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--clr-white);
  border: 1px solid #E0E0E0;
  border-left: 4px solid var(--clr-yellow);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.feature__num {
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: var(--clr-black);
  color: var(--clr-yellow);
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-weight: 900; font-size: 1.1rem;
}
.feature h4 { font-size: 1rem; font-weight: 800; color: var(--clr-black); margin-bottom: 6px; }
.feature p  { font-size: .9rem; color: var(--clr-muted); line-height: 1.65; }

/* === CTA BAND === */
.cta-band {
  background: var(--clr-yellow);
  padding: 64px 0;
}
.cta-band__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800; color: var(--clr-black);
  margin-bottom: 6px;
}
.cta-band p { color: rgba(0,0,0,.6); font-size: 1.05rem; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* === CONTACT === */
.contact__wrap { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.info__block {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--clr-white);
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.info__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--clr-yellow);
  color: var(--clr-black);
  border-radius: var(--radius);
  display: grid; place-items: center;
}
.info__label { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--clr-muted); margin-bottom: 4px; }
.info__value { font-size: .97rem; font-weight: 700; color: var(--clr-black); }
a.info__value:hover { color: var(--clr-yellow-h); text-decoration: underline; }

/* === FORM === */
.contact__form {
  background: var(--clr-white);
  border: 1px solid #E0E0E0;
  border-top: 4px solid var(--clr-yellow);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form__group label { font-size: .85rem; font-weight: 700; color: var(--clr-black); }
.form__group input,
.form__group select,
.form__group textarea {
  background: var(--clr-bg);
  border: 1.5px solid #D8D8D8;
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--clr-text);
  transition: var(--transition);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--clr-yellow);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(245,194,0,.2);
}
.form__group textarea { resize: vertical; }
.form__note { text-align: center; font-size: .8rem; color: var(--clr-muted); margin-top: 12px; }

/* === FOOTER === */
.footer {
  background: var(--clr-black);
  color: rgba(255,255,255,.6);
  padding: 44px 0;
  border-top: 3px solid var(--clr-yellow);
}
.footer__inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 20px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 800; color: var(--clr-white); }
.footer__brand .logo-icon { font-size: .9rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; font-size: .9rem; }
.footer__links a { color: rgba(255,255,255,.6); transition: var(--transition); }
.footer__links a:hover { color: var(--clr-yellow); }
.footer__copy { font-size: .78rem; opacity: .4; width: 100%; text-align: center; padding-top: 16px; border-top: 1px solid #2A2A2A; margin-top: 4px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid #2A2A2A; }
  .stat:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }

  .hero__cta-bar { flex-direction: column; }
  .hero__cta-bar .btn { width: 100%; justify-content: center; }

  .hero-banner { grid-template-columns: 1fr; }
  .hero-banner__right { clip-path: none; max-height: 280px; }
  .hero-banner__left { padding: 28px 24px 20px; gap: 14px; }
  .hero-icons { grid-template-columns: 1fr 1fr; }
  .hero-cta-btns .btn { flex: 1; justify-content: center; }

  .split { grid-template-columns: 1fr; }
  .split__img { aspect-ratio: 16/9; }

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

  .cta-band__inner { text-align: center; justify-content: center; }
  .cta-band__actions { justify-content: center; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}
@media (max-width: 480px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
}
