/* ============================================================
   REDZONE PAKISTAN — MASTER STYLESHEET
   redzonepk.com | Built 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,800&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --red:        #E8000D;
  --red-dark:   #C4000B;
  --red-light:  #FF1F2A;
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark-2:     #1A1A1A;

  --gray-900:   #1F1F1F;
  --gray-700:   #3D3D3D;
  --gray-600:   #555555;
  --gray-500:   #777777;
  --gray-400:   #999999;
  --gray-300:   #BBBBBB;
  --gray-200:   #DEDEDE;
  --gray-100:   #F0F0F0;
  --gray-50:    #F8F8F8;
  --white:      #FFFFFF;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  --container-max: 1320px;
  --container-pad: 40px;

  --radius:    4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow:    0 4px 16px rgba(0,0,0,.09);
  --shadow-md: 0 8px 32px rgba(0,0,0,.11);
  --shadow-lg: 0 16px 60px rgba(0,0,0,.14);

  --ease:       cubic-bezier(.4,0,.2,1);
  --duration:   .3s;
  --transition: var(--duration) var(--ease);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { line-height: 1.05; font-weight: 700; }

.display-h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 128px);
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.display-h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
}
.display-h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section      { padding: var(--space-2xl) 0; }
.section--lg  { padding: var(--space-3xl) 0; }
.section--sm  { padding: var(--space-xl)  0; }

.section-header { margin-bottom: var(--space-xl); }
.section-header .section-label { margin-bottom: 14px; }
.section-header .display-h2    { margin-bottom: 16px; }
.section-header .lead          { font-size: 18px; color: var(--gray-600); max-width: 520px; line-height: 1.7; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.header-logo img { height: 38px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gray-700);
  padding: 8px 14px; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--black); }

.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 180px; background: var(--white);
  border: 1px solid var(--gray-100); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.dropdown-item {
  display: block; padding: 9px 14px; font-size: 13px;
  font-weight: 500; color: var(--gray-700); border-radius: var(--radius);
  transition: all var(--transition);
}
.dropdown-item:hover { background: var(--gray-50); color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 24px 20px; overflow-y: auto; flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-size: 28px; font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; color: var(--black);
  padding: 14px 0; border-bottom: 1px solid var(--gray-100); display: block;
}
.mobile-nav-link:hover { color: var(--red); }
.mobile-sub-link { font-size: 15px; font-weight: 500; color: var(--gray-600); padding: 10px 16px; display: block; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: var(--radius); transition: all var(--transition);
  cursor: pointer; white-space: nowrap; border: 2px solid transparent;
  line-height: 1;
}
.btn-sm  { padding: 9px 18px; font-size: 11px; }
.btn-lg  { padding: 15px 34px; font-size: 13px; }

.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,0,13,.30);
  color: var(--white);
}
.btn-secondary { background: transparent; color: var(--black); border-color: var(--black); }
.btn-secondary:hover { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.6); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 54%; height: 100%;
  background: var(--gray-50);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-image {
  position: absolute; right: 0; top: 0; width: 52%; height: 100%;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 200px;
  background: linear-gradient(to right, var(--white), transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 640px; padding: var(--space-2xl) 0; }
.hero-eyebrow { margin-bottom: var(--space-md); }
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(64px, 9vw, 126px);
  line-height: .88; text-transform: uppercase; letter-spacing: -.02em;
  margin-bottom: 28px;
}
.hero-title .line-red   { color: var(--red);   display: block; }
.hero-title .line-black { color: var(--black);  display: block; }
.hero-desc { font-size: 17px; line-height: 1.75; color: var(--gray-600); max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   BRAND TICKER
   ============================================================ */
.brand-strip { background: var(--dark); padding: 22px 0; overflow: hidden; }
.ticker-track {
  display: flex; gap: 64px; width: max-content;
  animation: ticker 24s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-logo {
  height: 26px; width: auto;
  filter: brightness(0) invert(1); opacity: .6;
  transition: opacity var(--transition);
}
.ticker-logo:hover { opacity: 1; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--gray-100); padding: var(--space-lg) 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: var(--space-lg) var(--space-lg);
  text-align: center; border-right: 1px solid var(--gray-100);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display); font-size: 68px;
  font-weight: 900; line-height: 1; color: var(--black); margin-bottom: 6px;
}
.stat-number em { color: var(--red); font-style: normal; }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500); }

/* ============================================================
   BRAND CARDS GRID
   ============================================================ */
.brands-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.brand-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 36px 30px; display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--gray-100); transition: all var(--transition);
  text-decoration: none; color: inherit; position: relative; overflow: hidden;
}
.brand-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.brand-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; color: inherit; }
.brand-card:hover::after { transform: scaleX(1); }
.brand-card-logo { height: 42px; width: auto; max-width: 130px; object-fit: contain; object-position: left; }
.brand-card-tag  { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
.brand-card-name { font-size: 20px; font-weight: 700; color: var(--black); line-height: 1.2; }
.brand-card-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; flex: 1; }
.brand-card-cta  {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--black); margin-top: auto; transition: gap var(--transition), color var(--transition);
}
.brand-card:hover .brand-card-cta { gap: 10px; color: var(--red); }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
.why-content .display-h2 { margin: 14px 0 20px; }
.why-content .lead { font-size: 16px; color: var(--gray-600); line-height: 1.75; max-width: 420px; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.why-feature { display: flex; flex-direction: column; gap: 10px; }
.feature-icon {
  width: 46px; height: 46px; background: var(--gray-50);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; border: 1px solid var(--gray-100);
}
.feature-icon svg { width: 22px; height: 22px; color: var(--red); stroke-width: 2; }
.why-feature h4 { font-size: 15px; font-weight: 700; color: var(--black); }
.why-feature p  { font-size: 13px; color: var(--gray-600); line-height: 1.65; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { background: var(--red); padding: var(--space-xl) 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-strip-text .display-h2 { color: var(--white); font-size: clamp(32px, 4vw, 60px); }
.cta-strip-text p { color: rgba(255,255,255,.75); font-size: 16px; margin-top: 6px; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   CLIENTS GRID
   ============================================================ */
.clients-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--gray-100); border-radius: var(--radius-md);
  overflow: hidden; background: var(--gray-100); gap: 1px;
}
.client-item {
  background: var(--white); padding: 22px 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--gray-600);
  text-align: center; transition: all var(--transition);
}
.client-item:hover { background: var(--gray-50); color: var(--black); }

/* ============================================================
   BRAND PAGE — HERO
   ============================================================ */
.brand-hero {
  padding-top: 72px; min-height: 65vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--gray-50);
}
.brand-hero-bg { position: absolute; right: 0; top: 0; width: 50%; height: 100%; }
.brand-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.brand-hero-bg::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 60%;
  background: linear-gradient(to right, var(--gray-50), transparent); z-index: 1;
}
.brand-hero-content { position: relative; z-index: 2; max-width: 560px; padding: var(--space-2xl) 0; }
.brand-hero-logo { height: 56px; width: auto; max-width: 180px; object-fit: contain; object-position: left; margin-bottom: 28px; }
.brand-hero-content h1 { font-size: clamp(44px, 6vw, 90px); margin-bottom: 14px; }
.brand-hero-content .lead { font-size: 17px; color: var(--gray-600); max-width: 460px; margin-bottom: 28px; }

/* Brand section blocks */
.brand-products-section { background: var(--gray-50); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
}
.product-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform var(--transition); }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 18px; }
.product-card-tag  { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.product-card-name { font-size: 15px; font-weight: 700; color: var(--black); }

/* Brand about block */
.brand-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.brand-about-img { border-radius: var(--radius-lg); overflow: hidden; }
.brand-about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.contact-info-items { display: flex; flex-direction: column; gap: 32px; margin-top: 32px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
}
.contact-ico svg { width: 20px; height: 20px; color: var(--red); stroke-width: 2; }
.contact-info-item h5 { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 15px; color: var(--gray-800); line-height: 1.65; }
.contact-form-wrap {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--gray-700); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); font-size: 14px; color: var(--gray-900);
  background: var(--white); transition: border-color var(--transition); outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group textarea { min-height: 110px; resize: vertical; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 600px; }
.team-card { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 28px; }
.team-avatar {
  width: 52px; height: 52px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 900;
  color: var(--white); margin-bottom: 14px;
}
.team-card h4  { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.team-card .role { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.team-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-top: 10px; }

/* Milestones */
.milestones { display: flex; flex-direction: column; gap: 36px; }
.milestone { display: flex; gap: 20px; align-items: flex-start; }
.milestone-year {
  font-family: var(--font-display); font-size: 14px; font-weight: 800;
  color: var(--red); letter-spacing: .06em; min-width: 56px; padding-top: 2px;
}
.milestone-line { width: 2px; min-height: 100%; background: var(--gray-100); margin-top: 4px; flex-shrink: 0; }
.milestone h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.milestone p  { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: calc(72px + 72px) 0 72px;
  background: var(--gray-50); position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 35%;
  background: var(--gray-100);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(48px, 6vw, 88px); margin-top: 12px; }
.page-header .lead { font-size: 17px; color: var(--gray-600); max-width: 500px; margin-top: 14px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-400); }
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--gray-300); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: var(--white); padding-top: var(--space-2xl); }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.6fr; gap: 60px;
  padding-bottom: var(--space-xl); border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand-logo { height: 30px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 260px; }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-link:hover { color: var(--white); }
.footer-contact-block { display: flex; flex-direction: column; gap: 14px; }
.footer-ci .ci-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 3px; }
.footer-ci .ci-val { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-ci .ci-val a { color: rgba(255,255,255,.6); }
.footer-ci .ci-val a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-size: 12px; color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-red     { color: var(--red); }
.text-white   { color: var(--white); }
.text-center  { text-align: center; }
.text-balance { text-wrap: balance; }

.bg-gray  { background: var(--gray-50); }
.bg-white { background: var(--white); }
.bg-dark  { background: var(--dark); }
.bg-red   { background: var(--red); }

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.fw-900 { font-weight: 900; }
.display-font { font-family: var(--font-display); }
.uppercase { text-transform: uppercase; }

/* ============================================================
   PRODUCT CATALOG (B2B — links to official brand pages)
   ============================================================ */
.product-catalog {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.catalog-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.catalog-row:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transform: translateX(4px);
}
.catalog-row-info { flex: 1; }
.catalog-row-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232,0,13,.06);
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
  margin-bottom: 6px;
}
.catalog-row-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.2;
}
.catalog-row-desc {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 4px;
  line-height: 1.5;
}
.catalog-row-action { flex-shrink: 0; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; }
.fade-in.visible { animation: fadeInUp .6s var(--ease) forwards; }

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
.live-dot {
  display: inline-block; width: 6px; height: 6px; background: var(--red);
  border-radius: 50%; animation: pulseDot 1.5s ease infinite;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1199px)
   ============================================================ */
@media (max-width: 1199px) {
  :root { --container-pad: 28px; --space-2xl: 80px; --space-3xl: 104px; }

  .brands-grid       { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)  { border-right: none; }
  .stat-item:nth-child(3)  { border-right: 1px solid var(--gray-100); border-top: 1px solid var(--gray-100); }
  .stat-item:nth-child(4)  { border-top: 1px solid var(--gray-100); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid      { grid-template-columns: 1fr; gap: 48px; }
  .why-grid          { grid-template-columns: 1fr; gap: 48px; }
  .why-content       { max-width: 100%; }
  .why-content .lead { max-width: 100%; }
  .about-intro-grid  { grid-template-columns: 1fr; gap: 40px; }
  .brand-about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --container-pad: 20px; --space-xl: 48px; --space-2xl: 64px; }

  .header-nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }

  .hero::before, .hero-image { display: none; }
  .hero-title { font-size: 62px; }
  .hero-content { padding: var(--space-xl) 0; }

  .brands-grid   { grid-template-columns: 1fr; }
  .why-features  { grid-template-columns: 1fr; }
  .clients-grid  { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }

  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }

  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }

  .stat-number { font-size: 52px; }

  .brand-strip { display: none; }
  .brand-hero  { min-height: 50vh; }
  .brand-hero-bg { display: none; }

  .catalog-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .catalog-row-action { width: 100%; }
  .catalog-row-action .btn { width: 100%; text-align: center; }
}
