/* ============================================================
   MRB NATIONWIDE LOGISTICS — Main Stylesheet
   ============================================================ */

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

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:      #0d2137;
  --blue:      #1a3a5c;
  --blue-mid:  #1e5fa8;
  --accent:    #e8521a;
  --accent-lt: #ff6b35;
  --white:     #ffffff;
  --off-white: #f6f8fb;
  --light:     #eef2f8;
  --text:      #1a2535;
  --muted:     #6b7a8d;
  --border:    #dde4ee;
  --shadow-sm: 0 2px 12px rgba(13,33,55,.07);
  --shadow-md: 0 8px 32px rgba(13,33,55,.12);
  --shadow-lg: 0 20px 60px rgba(13,33,55,.16);
  --radius:    10px;
  --radius-lg: 18px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --trans:     all 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
p { color: var(--muted); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section--sm { padding: 60px 0; }
.section--dark { background: var(--navy); }
.section--light { background: var(--off-white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  transition: var(--trans); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,82,26,.3); }
.btn--outline { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn--white-outline { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn--white-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn--sm { padding: 8px 16px; font-size: 0.82rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
}
.nav--scrolled {
  background: rgba(13,33,55,.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
}
.nav__logo-icon {
  width: 36px; height: 36px; background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav__logo-icon svg { width: 22px; height: 22px; }
.nav__logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--white); letter-spacing: 0.01em; line-height: 1.1; }
.nav__logo-text span { display: block; font-size: 0.65rem; font-weight: 400; color: rgba(255,255,255,.6); letter-spacing: 0.1em; text-transform: uppercase; }
.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 8px 14px; color: rgba(255,255,255,.8); font-size: 0.9rem; font-weight: 500;
  border-radius: 6px; transition: var(--trans);
}
.nav__link:hover, .nav__link--active { color: var(--white); background: rgba(255,255,255,.1); }
.nav__link--cta { background: var(--accent); color: var(--white) !important; padding: 8px 18px; }
.nav__link--cta:hover { background: var(--accent-lt); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); display: block; }
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1e4d8c 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__decor {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
}
.hero__decor::after {
  content: ''; position: absolute; inset: 60px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
}
.hero__content { position: relative; z-index: 1; max-width: 760px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9); padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__tag::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__title span { color: var(--accent); }
.hero__subtitle { font-size: 1.15rem; color: rgba(255,255,255,.7); max-width: 540px; margin-bottom: 40px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  margin-top: 64px; display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat-number { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero__stat-label { font-size: 0.82rem; color: rgba(255,255,255,.55); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head__label {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-head__title { color: var(--navy); margin-bottom: 14px; }
.section-head__sub { max-width: 520px; margin: 0 auto; }
.section-head--light .section-head__title { color: var(--white); }
.section-head--light .section-head__sub { color: rgba(255,255,255,.6); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.benefit-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: var(--trans);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-mid); }
.benefit-card__icon {
  width: 52px; height: 52px; background: var(--light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  font-size: 1.5rem;
}
.benefit-card__title { font-family: var(--font-head); font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--trans);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-mid); }
.product-card__link { display: block; }
.product-card__icon {
  background: var(--off-white); padding: 28px; display: flex; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.product-card__icon svg { width: 100%; max-width: 180px; height: 140px; }
.product-card__body { padding: 22px; }
.product-card__badge {
  display: inline-block; background: var(--light); color: var(--blue); border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; margin-bottom: 10px;
}
.product-card__name { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
.product-card__desc { font-size: 0.87rem; margin-bottom: 16px; line-height: 1.5; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.product-card__price { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.fade-in { animation: fadeUp 0.5s ease both; }
@keyframes fadeUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: none; } }

/* ============================================================
   FILTER BUTTONS
   ============================================================ */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px; border: 2px solid var(--border);
  font-size: 0.85rem; font-weight: 600; color: var(--muted); background: var(--white);
  transition: var(--trans); cursor: pointer;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ============================================================
   SKELETON
   ============================================================ */
.skeleton-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; animation: pulse 1.5s ease-in-out infinite;
}
.skeleton-icon { height: 140px; background: var(--light); border-radius: 8px; margin-bottom: 18px; }
.skeleton-line { height: 14px; background: var(--light); border-radius: 6px; margin-bottom: 10px; }
.skeleton-line.w80 { width: 80%; }
.skeleton-line.w60 { width: 60%; }
.skeleton-line.w40 { width: 40%; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.55} }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; position: relative; }
.step-card { text-align: center; }
.step-card__num {
  width: 58px; height: 58px; border-radius: 50%; background: var(--accent);
  color: var(--white); font-family: var(--font-head); font-size: 1.6rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.step-card__title { font-family: var(--font-head); font-size: 1.25rem; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative;
}
.testimonial-card::before { content: '"'; font-family: var(--font-head); font-size: 5rem; color: var(--accent); line-height: 1; position: absolute; top: 12px; left: 24px; opacity: 0.2; }
.testimonial-card__text { font-style: italic; font-size: 0.97rem; margin-bottom: 20px; position: relative; z-index: 1; color: var(--text); }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-card__role { font-size: 0.78rem; color: var(--muted); }
.stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 10px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius-lg); padding: 64px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,82,26,.15) 0%, transparent 70%);
}
.cta-banner__title { color: var(--white); margin-bottom: 14px; font-size: clamp(1.8rem,3.5vw,2.8rem); }
.cta-banner__sub { color: rgba(255,255,255,.65); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-detail__visual {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 48px;
  text-align: center; border: 1px solid var(--border); position: sticky; top: 100px;
}
.product-detail__svg svg { width: 100%; max-width: 320px; height: 220px; margin: 0 auto; }
.product-detail__badge-big {
  display: inline-block; background: var(--light); color: var(--blue);
  border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 16px; margin-top: 20px;
}
.product-detail__title { color: var(--navy); margin-bottom: 14px; }
.product-detail__price { font-family: var(--font-head); font-size: 2.2rem; color: var(--accent); font-weight: 800; margin-bottom: 20px; }
.product-detail__price strong { font-weight: 800; }
.product-detail__desc { margin-bottom: 28px; font-size: 1rem; line-height: 1.7; }
.product-detail__features { margin-bottom: 32px; }
.product-detail__features li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.93rem; color: var(--text); }
.product-detail__features li:last-child { border: none; }
.check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.product-detail__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.breadcrumb { padding: 100px 0 20px; display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--border); }
.not-found { text-align: center; padding: 80px 0; }
.not-found h2 { margin-bottom: 20px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 140px 0 90px; }
.about-hero__title { color: var(--white); margin-bottom: 16px; }
.about-hero__sub { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 540px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.value-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 22px; text-align: center; transition: var(--trans);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-card__icon { font-size: 2rem; margin-bottom: 12px; }
.value-card__title { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; }
.stats-strip {
  background: var(--navy); padding: 60px 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.stats-strip__item { text-align: center; padding: 20px; }
.stats-strip__num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stats-strip__label { font-size: 0.85rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info__title { font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.contact-info__sub { font-size: 0.93rem; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-item__icon {
  width: 44px; height: 44px; background: var(--light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.contact-item__val { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.contact-item__val a { color: var(--blue-mid); }
.contact-item__val a:hover { color: var(--accent); }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.93rem; color: var(--text); background: var(--white);
  transition: var(--trans); outline: none;
}
.form-control:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(30,95,168,.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; color: var(--navy); font-size: 0.97rem;
  transition: var(--trans); user-select: none;
}
.faq-question:hover { background: var(--off-white); }
.faq-icon { font-size: 1.2rem; color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer__inner { padding: 0 24px 20px; font-size: 0.93rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-question { background: var(--off-white); color: var(--accent); }

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.success-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 64px 48px;
  text-align: center; max-width: 520px; width: 90%; box-shadow: var(--shadow-lg);
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.success-card h1 { color: var(--navy); margin-bottom: 12px; font-size: 2.2rem; }
.success-card p { margin-bottom: 32px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero { background: var(--navy); padding: 140px 0 60px; }
.legal-hero__title { color: var(--white); margin-bottom: 8px; }
.legal-hero__date { color: rgba(255,255,255,.5); font-size: 0.85rem; }
.legal-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.legal-content h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); margin: 36px 0 12px; }
.legal-content h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin: 24px 0 8px; }
.legal-content p { color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { list-style: disc; color: var(--text); line-height: 1.8; margin-bottom: 6px; }
.legal-content a { color: var(--blue-mid); }
.legal-content a:hover { color: var(--accent); }

/* ============================================================
   PAGE HEROES (INNER PAGES)
   ============================================================ */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 130px 0 70px; }
.page-hero__title { color: var(--white); margin-bottom: 12px; }
.page-hero__sub { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 480px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer__brand { }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo-icon { width: 32px; height: 32px; background: var(--accent); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.footer__logo-text { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer__desc { font-size: 0.88rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 280px; }
.footer__heading { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--white); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255,255,255,.55); font-size: 0.88rem; transition: var(--trans); }
.footer__links a:hover { color: var(--accent); }
.footer__contact p { color: rgba(255,255,255,.55); font-size: 0.88rem; line-height: 1.7; }
.footer__contact a { color: rgba(255,255,255,.55); transition: var(--trans); }
.footer__contact a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer__copyright { color: rgba(255,255,255,.35); font-size: 0.8rem; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: rgba(255,255,255,.35); font-size: 0.8rem; transition: var(--trans); }
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .product-detail__grid { grid-template-columns: 1fr; }
  .product-detail__visual { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; align-items: center; justify-content: center; gap: 12px; z-index: 999; }
  .nav__menu.open { display: flex; }
  .nav__link { font-size: 1.3rem; padding: 12px 24px; }
  .nav__toggle { display: flex; z-index: 1000; }
  .hero { padding-top: 80px; }
  .hero__stats { gap: 24px; }
  .cta-banner { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   NO RESULTS
   ============================================================ */
.no-results { grid-column: 1/-1; text-align: center; padding: 60px 0; color: var(--muted); }
