/* ============================================
   Toraparts - Modern Company Showcase
   Brand-Matched Design System
   Logo Blue (#1565C0) + Logo Yellow (#E8B923)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Light-first industrial palette — matched to brand logo */
  --clr-primary: #2D2A26;
  --clr-primary-light: #3D3A35;
  --clr-primary-dark: #1E1C18;
  --clr-accent: #1565C0;
  --clr-accent-hover: #0D4A8C;
  --clr-accent-light: oklch(95% 0.04 255);
  --clr-accent-bg: oklch(96% 0.025 255);
  --clr-yellow: #E8B923;
  --clr-yellow-hover: #D4A810;
  --clr-yellow-light: rgba(232, 185, 35, 0.12);
  --clr-surface: #FAFAF8;
  --clr-surface-alt: #F3F2EF;
  --clr-surface-dark: #E8E6E2;
  --clr-text: #2D2A26;
  --clr-text-secondary: #6B6560;
  --clr-text-light: #9C9590;
  --clr-border: #DDD9D4;
  --clr-border-light: #EDEAE6;
  --clr-success: #16a34a;

  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px oklch(25% 0.01 60 / 0.06);
  --shadow-md: 0 4px 16px oklch(25% 0.01 60 / 0.08);
  --shadow-lg: 0 8px 32px oklch(25% 0.01 60 / 0.12);
  --shadow-xl: 0 16px 48px oklch(25% 0.01 60 / 0.16);
  --shadow-glow: 0 0 24px oklch(55% 0.14 255 / 0.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::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);
  color: var(--clr-text);
  background: var(--clr-surface);
  line-height: 1.7;
  -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; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-primary);
}

/* ---------- Typography ---------- */
.heading-xl { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; }
.heading-lg { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
.heading-md { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.01em; }
.heading-sm { font-size: clamp(1.125rem, 2vw, 1.5rem); }
.body-lg { font-size: 1.125rem; line-height: 1.8; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section--alt { background: var(--clr-surface-alt); }

.section--dark {
  background: var(--clr-accent);
  color: #fff;
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

.section__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }

.section__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--clr-accent); margin-bottom: 16px;
}
.section__label::before { content: ''; width: 24px; height: 2px; background: var(--clr-accent); }
.section__title { margin-bottom: 16px; }
.section__desc { color: var(--clr-text-secondary); font-size: 1.0625rem; line-height: 1.8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem;
  padding: 14px 28px; border-radius: var(--radius-md);
  transition: all var(--transition); white-space: nowrap;
}

.btn--primary {
  background: var(--clr-accent); color: #fff; box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--clr-accent-hover); box-shadow: var(--shadow-glow); transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  border: 2px solid var(--clr-border); color: var(--clr-primary); background: transparent;
}
.btn--outline:hover { border-color: var(--clr-accent); background: var(--clr-accent-light); color: var(--clr-accent); }

.btn--outline-white {
  border: 2px solid rgba(255, 255, 255, 0.4); color: #fff; background: transparent;
}
.btn--outline-white:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

.btn--outline-accent {
  border: 2px solid var(--clr-accent); color: var(--clr-accent); background: transparent;
}
.btn--outline-accent:hover { background: var(--clr-accent); color: #fff; }

.btn--ghost { color: var(--clr-primary); padding: 8px 4px; }
.btn--ghost:hover { color: var(--clr-accent); }

.btn--sm { font-size: 0.875rem; padding: 10px 20px; }
.btn--lg { font-size: 1rem; padding: 16px 36px; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(250, 250, 248, 0.97);
  box-shadow: 0 1px 0 var(--clr-border-light);
}

.header__inner {
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}

.header__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem;
  color: var(--clr-primary); letter-spacing: -0.02em;
}

.header__logo-img {
  height: 44px; width: auto;
  display: block;
}

.header__logo-icon {
  width: 40px; height: 40px; background: var(--clr-accent);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.25rem;
}

.header__nav { display: flex; align-items: center; gap: 32px; }

.header__nav-link {
  font-size: 0.9375rem; font-weight: 500;
  color: var(--clr-text-secondary);
  transition: color var(--transition-fast); position: relative;
}
.header__nav-link:hover,
.header__nav-link--active { color: var(--clr-primary); }

.header__nav-link--active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--clr-accent); border-radius: 1px;
}

.header__cta { display: flex; align-items: center; gap: 16px; }

.header__contact {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 600; color: var(--clr-primary);
}
.header__contact svg { width: 16px; height: 16px; color: var(--clr-accent); }

/* Mobile toggle */
.header__toggle {
  display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; cursor: pointer;
}
.header__toggle span {
  display: block; height: 2px; background: var(--clr-primary);
  border-radius: 2px; transition: all var(--transition);
}
.header__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__toggle.active span:nth-child(2) { opacity: 0; }
.header__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--clr-surface); z-index: 999; padding: 32px 24px;
  opacity: 0; transform: translateY(-10px); transition: all var(--transition);
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 0; opacity: 1; transform: translateY(0); }
.mobile-nav__link {
  display: block; padding: 16px 0; font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 600; color: var(--clr-primary);
  border-bottom: 1px solid var(--clr-border-light);
}
.mobile-nav__link:hover { color: var(--clr-accent); }
.mobile-nav__cta { margin-top: 32px; }

/* ---------- Hero (LIGHT) ---------- */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--clr-surface);
}

.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, var(--clr-surface) 0%, var(--clr-accent-bg) 60%, oklch(92% 0.04 170) 100%);
}

.hero__grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(21,101,192,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,192,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero__text { color: var(--clr-primary); }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clr-accent-light); border: 1px solid rgba(21,101,192,0.2);
  color: var(--clr-accent); font-size: 0.8125rem; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 28px;
}

.hero__badge-dot {
  width: 6px; height: 6px; background: var(--clr-yellow);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--clr-primary); letter-spacing: -0.03em;
  margin-bottom: 24px; line-height: 1.1;
}
.hero__title-accent { color: var(--clr-accent); }

.hero__desc {
  font-size: 1.125rem; line-height: 1.8;
  color: var(--clr-text-secondary); margin-bottom: 40px; max-width: 520px;
}

.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero__visual { position: relative; }

.hero__card {
  background: #fff; border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg);
}

.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.hero__stat { text-align: center; padding: 12px 0; }

.hero__stat-value {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
  color: var(--clr-yellow); letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 8px;
}
.hero__stat-label {
  font-size: 0.875rem; color: var(--clr-text-secondary); line-height: 1.4;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: #fff; border-top: 1px solid var(--clr-border-light);
  border-bottom: 1px solid var(--clr-border-light); padding: 40px 0;
}
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stats-bar__item { text-align: center; }
.stats-bar__value {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  color: var(--clr-primary); letter-spacing: -0.02em;
}
.stats-bar__value span { color: var(--clr-yellow); }
.stats-bar__label { font-size: 0.875rem; color: var(--clr-text-secondary); margin-top: 4px; }

/* ---------- Product Cards ---------- */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.product-card {
  background: #fff; border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--clr-accent); transform: scaleX(0);
  transform-origin: left; transition: transform var(--transition);
}
.product-card:hover { border-color: var(--clr-border); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card:hover::before { transform: scaleX(1); }

.product-card__icon {
  width: 56px; height: 56px; background: var(--clr-accent-light);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; transition: all var(--transition);
}
.product-card:hover .product-card__icon { background: var(--clr-accent); }
.product-card__icon svg { width: 28px; height: 28px; color: var(--clr-accent); transition: color var(--transition); }
.product-card:hover .product-card__icon svg { color: #fff; }

.product-card__title { font-size: 1.25rem; margin-bottom: 10px; }
.product-card__desc { color: var(--clr-text-secondary); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 20px; }
.product-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.9375rem; color: var(--clr-accent); transition: gap var(--transition);
}
.product-card__link:hover { gap: 10px; }
.product-card__link svg { width: 16px; height: 16px; }

/* ---------- Brand Cards ---------- */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }

.brand-card {
  background: #fff; border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md); padding: 28px 20px;
  text-align: center; transition: all var(--transition);
}
.brand-card:hover { border-color: var(--clr-accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.brand-card__name { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 4px; }
.brand-card__origin { font-size: 0.8125rem; color: var(--clr-text-light); }

/* ---------- Feature / Why Choose ---------- */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.feature-card {
  display: flex; gap: 20px; padding: 28px;
  background: #fff; border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md); transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--clr-border); }

.feature-card__icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--clr-accent-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.feature-card__icon svg { width: 24px; height: 24px; color: var(--clr-accent); }
.feature-card__title { font-size: 1.0625rem; margin-bottom: 6px; }
.feature-card__desc { font-size: 0.875rem; color: var(--clr-text-secondary); line-height: 1.7; }

/* ---------- CTA Banner (LIGHT TEAL) ---------- */
.cta-banner {
  background: var(--clr-accent); border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px); display: flex; align-items: center;
  justify-content: space-between; gap: 40px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  border-radius: 50%;
}
.cta-banner__text { position: relative; z-index: 1; }
.cta-banner__title { color: #fff; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 12px; }
.cta-banner__desc { color: rgba(255, 255, 255, 0.85); font-size: 1.0625rem; max-width: 480px; }
.cta-banner__actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-shrink: 0; }

/* ---------- Contact Info Bar ---------- */
.contact-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.contact-bar__item {
  background: #fff; border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md); padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 16px; transition: all var(--transition);
}
.contact-bar__item:hover { box-shadow: var(--shadow-md); border-color: var(--clr-accent); }

.contact-bar__icon {
  width: 48px; height: 48px; background: var(--clr-accent-light);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-bar__icon svg { width: 24px; height: 24px; color: var(--clr-accent); }
.contact-bar__label { font-size: 0.8125rem; color: var(--clr-text-light); margin-bottom: 4px; }
.contact-bar__value { font-weight: 600; color: var(--clr-primary); font-size: 1rem; }
.contact-bar__value a { transition: color var(--transition-fast); }
.contact-bar__value a:hover { color: var(--clr-accent); }

/* ---------- Footer (LIGHT) ---------- */
.footer {
  background: var(--clr-surface-alt); color: var(--clr-text-secondary);
  padding: 64px 0 0; border-top: 1px solid var(--clr-border-light);
}

.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--clr-border);
}

.footer__brand-desc { font-size: 0.9375rem; line-height: 1.8; margin-top: 16px; max-width: 300px; }

.footer__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.375rem;
  color: var(--clr-primary);
}
.footer__logo-icon {
  width: 36px; height: 36px; background: var(--clr-accent);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; color: #fff; font-weight: 900; font-size: 1.125rem;
}

.footer__heading {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.9375rem;
  color: var(--clr-primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px;
}

.footer__link { display: block; font-size: 0.875rem; padding: 5px 0; transition: color var(--transition-fast); }
.footer__link:hover { color: var(--clr-accent); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: 0.8125rem; color: var(--clr-text-light);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a:hover { color: var(--clr-accent); }

/* ---------- Page Header (LIGHT) ---------- */
.page-header {
  background: var(--clr-accent-bg);
  padding: 140px 0 64px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--clr-border-light);
}

.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(21,101,192,0.03) 40px, rgba(21,101,192,0.03) 41px);
}

.page-header__content { position: relative; z-index: 1; }

.page-header__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: var(--clr-text-light); margin-bottom: 16px;
}
.page-header__breadcrumb a { color: var(--clr-text-light); transition: color var(--transition-fast); }
.page-header__breadcrumb a:hover { color: var(--clr-accent); }
.page-header__breadcrumb span { color: var(--clr-accent); }

.page-header__title { color: var(--clr-primary); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-header__desc { color: var(--clr-text-secondary); font-size: 1.0625rem; max-width: 600px; }

/* ---------- Contact Form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }

.form-label { font-size: 0.875rem; font-weight: 500; color: var(--clr-text); }

.form-input,
.form-textarea,
.form-select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--clr-border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9375rem;
  color: var(--clr-text); background: #fff;
  transition: all var(--transition-fast); outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--clr-accent); box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ---------- Featured Product ---------- */
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.featured-card {
  background: #fff; border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition);
}
.featured-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.featured-card__image {
  height: 200px; background: var(--clr-surface-alt);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.featured-card__image-placeholder { font-size: 3rem; opacity: 0.3; }
.featured-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--clr-success); color: #fff;
  font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 100px;
}
.featured-card__body { padding: 20px; }
.featured-card__brand {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--clr-accent); margin-bottom: 6px;
}
.featured-card__title { font-size: 1.0625rem; margin-bottom: 8px; }
.featured-card__spec { font-size: 0.8125rem; color: var(--clr-text-secondary); margin-bottom: 16px; }
.featured-card__action {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 600; color: var(--clr-accent);
}

/* ---------- About / Timeline ---------- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px; background: var(--clr-border);
}
.timeline__item { position: relative; padding-bottom: 36px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: -36px; top: 6px; width: 12px; height: 12px;
  background: var(--clr-accent); border-radius: 50%;
  border: 3px solid var(--clr-surface); box-shadow: 0 0 0 2px var(--clr-accent);
}
.timeline__year {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem;
  color: var(--clr-accent); margin-bottom: 4px;
}
.timeline__text { font-size: 0.9375rem; color: var(--clr-text-secondary); line-height: 1.7; }

/* ---------- Two Column Layout ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col__image {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--clr-surface-alt); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Certification Badge ---------- */
.cert-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.cert-badge {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md); padding: 16px 20px;
}
.cert-badge__icon {
  width: 40px; height: 40px; background: var(--clr-accent-light);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.cert-badge__icon svg { width: 20px; height: 20px; color: var(--clr-accent); }
.cert-badge__text { font-weight: 600; font-size: 0.9375rem; }
.cert-badge__sub { font-size: 0.75rem; color: var(--clr-text-light); }

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- Animations ---------- */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 480px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner__desc { margin: 0 auto; }
}

@media (max-width: 768px) {
  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important; gap: 16px !important;
  }
  .header__nav { display: none; }
  .header__cta .btn { display: none; }
  .header__toggle { display: flex; }
  .hero__content { padding-top: 100px; padding-bottom: 40px; }
  .hero__stats { gap: 24px; }
  .hero__stat-value { font-size: 2rem; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .contact-bar { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; }
}
