/* ============================================
   SPINTECH BEARING HOUSE - Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1f4e;
  --navy-dark:  #091536;
  --navy-mid:   #132660;
  --gold:       #f0a500;
  --gold-light: #f5b830;
  --white:      #ffffff;
  --light:      #c8d0e0;
  --dark-bg:    #0a1230;
  --card-bg:    #111e45;
  --font:       'Segoe UI', Arial, sans-serif;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  text-align: center;
  color: var(--light);
  margin-bottom: 48px;
  font-size: 1rem;
}
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 40px;
  border-radius: 2px;
}
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.5px;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,165,0,0.35); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(9, 21, 54, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(240,165,0,0.15);
  transition: var(--transition);
}
header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 52px;
  width: auto;
  border-radius: 4px;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://spintechbearing.co.in/wp-content/uploads/2024/10/ball-bearing.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,21,54,0.92) 0%, rgba(13,31,78,0.85) 50%, rgba(9,21,54,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: var(--light);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 0; right: 0;
  z-index: 2;
}
.hero-stats .container {
  display: flex;
  gap: 48px;
}
.stat {
  text-align: center;
  border-left: 1px solid rgba(240,165,0,0.3);
  padding-left: 24px;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================
   VALUES BAR
   ============================================ */
.values-bar {
  background: var(--navy-mid);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(240,165,0,0.2);
  padding: 28px 0;
}
.values-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}
.value-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.value-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.value-text span {
  font-size: 0.8rem;
  color: var(--light);
}

/* ============================================
   ABOUT SNAPSHOT (Homepage)
   ============================================ */
.about-snapshot {
  padding: 100px 0;
  background: var(--dark-bg);
}
.about-snapshot .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(240,165,0,0.3);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.4;
}
.about-img-badge strong { font-size: 2rem; display: block; }
.about-text .section-title { text-align: left; }
.about-text .gold-line { margin-left: 0; }
.about-text p { color: var(--light); margin-bottom: 20px; line-height: 1.8; }
.about-points { margin: 24px 0; }
.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.about-points li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 100px 0;
  background: var(--navy);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(240,165,0,0.15);
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feature-card p { color: var(--light); font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   PRODUCTS PREVIEW (Homepage)
   ============================================ */
.products-preview {
  padding: 100px 0;
  background: var(--dark-bg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid rgba(240,165,0,0.12);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #fff;
  transition: var(--transition);
}
.product-card:hover .product-card-img { transform: scale(1.03); }
.product-card-body { padding: 20px 24px 24px; }
.product-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card-body p {
  color: var(--light);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.enquire-btn {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 3px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.enquire-btn:hover { background: var(--gold); color: var(--navy-dark); }
.products-cta { text-align: center; margin-top: 48px; }

/* ============================================
   INDUSTRIES (Homepage Preview)
   ============================================ */
.industries-section {
  padding: 100px 0;
  background: var(--navy);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.industry-card {
  background: var(--card-bg);
  border: 1px solid rgba(240,165,0,0.12);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover {
  border-color: var(--gold);
  background: var(--navy-mid);
  transform: translateY(-4px);
}
.industry-icon { font-size: 2.2rem; margin-bottom: 14px; }
.industry-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--dark-bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(240,165,0,0.15);
  border-radius: 10px;
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.quote-mark {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testimonial-card p {
  color: var(--light);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}
.author-info span {
  font-size: 0.8rem;
  color: var(--gold);
}
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold) 0%, #c97d00 100%);
  text-align: center;
}
.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(9,21,54,0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.btn-dark {
  background: var(--navy-dark);
  color: var(--white);
  border: 2px solid transparent;
}
.btn-dark:hover { background: #0a1840; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark-bg);
  border-top: 2px solid rgba(240,165,0,0.2);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; border-radius: 4px; }
.footer-brand p {
  color: var(--light);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 12px; }
.social-icon {
  width: 36px; height: 36px;
  background: var(--navy-mid);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--light);
  cursor: pointer;
}
.social-icon:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col ul li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--light);
  transition: var(--transition);
}
.footer-col ul li a { color: var(--light); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-gst {
  font-size: 0.75rem;
  color: rgba(200,208,224,0.6);
  margin-top: 12px;
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(200,208,224,0.5);
}
.footer-bottom span { color: var(--gold); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-bottom: 2px solid rgba(240,165,0,0.2);
  text-align: center;
}
.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--light);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: 100px 0;
  background: var(--dark-bg);
}
.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-story-text p {
  color: var(--light);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.team-section {
  padding: 100px 0;
  background: var(--navy);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  background: var(--card-bg);
  border: 1px solid rgba(240,165,0,0.15);
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), #c97d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 auto 20px;
}
.team-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.team-card p { color: var(--light); font-size: 0.88rem; line-height: 1.7; }
.mission-vision {
  padding: 100px 0;
  background: var(--dark-bg);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
.mv-card {
  background: var(--card-bg);
  border: 1px solid rgba(240,165,0,0.15);
  border-radius: 10px;
  padding: 48px 40px;
  border-top: 4px solid var(--gold);
}
.mv-icon { font-size: 2.5rem; margin-bottom: 20px; }
.mv-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mv-card p { color: var(--light); line-height: 1.8; font-size: 0.95rem; }

/* ============================================
   PRODUCTS PAGE (Full Catalog)
   ============================================ */
.catalog-section {
  padding: 80px 0 100px;
  background: var(--navy);
}
.catalog-intro {
  text-align: center;
  color: var(--light);
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.catalog-card {
  background: var(--card-bg);
  border: 1px solid rgba(240,165,0,0.12);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.catalog-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.catalog-img-wrap {
  width: 100%;
  height: 240px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.catalog-card:hover .catalog-img-wrap img { transform: scale(1.06); }
.catalog-body { padding: 24px 28px 28px; }
.catalog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.catalog-usage {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.catalog-body p {
  color: var(--light);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.catalog-overview {
  color: rgba(200,208,224,0.7) !important;
  font-size: 0.82rem !important;
  margin-bottom: 20px !important;
}
.catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.catalog-footer .enquire-btn { font-size: 0.78rem; }
.catalog-badge {
  font-size: 0.7rem;
  background: rgba(240,165,0,0.12);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(240,165,0,0.2);
}

/* ============================================
   INDUSTRY PAGE
   ============================================ */
.industry-full {
  padding: 80px 0 100px;
  background: var(--navy);
}
.industry-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.industry-full-card {
  background: var(--card-bg);
  border: 1px solid rgba(240,165,0,0.12);
  border-radius: 10px;
  padding: 36px 28px;
  transition: var(--transition);
}
.industry-full-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.industry-full-card .industry-icon { font-size: 2.8rem; margin-bottom: 18px; }
.industry-full-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.industry-full-card p { color: var(--light); font-size: 0.88rem; line-height: 1.7; margin-bottom: 12px; }
.industry-bearings {
  font-size: 0.78rem;
  color: rgba(200,208,224,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
  margin-top: 12px;
}
.industry-bearings strong { color: var(--gold); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 80px 0 100px;
  background: var(--navy);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--white);
}
.contact-detail {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-detail-text p, .contact-detail-text a {
  font-size: 0.9rem;
  color: var(--light);
  line-height: 1.6;
}
.contact-detail-text a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid rgba(240,165,0,0.15);
  border-radius: 12px;
  padding: 48px 40px;
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(240,165,0,0.05); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--navy-dark); color: var(--white); }

/* Review form (homepage) */
.review-form-wrap {
  max-width: 720px;
  margin: 48px auto 0;
  background: var(--card-bg);
  border: 1px solid rgba(240,165,0,0.15);
  border-radius: 12px;
  padding: 40px 36px;
  text-align: left;
}
.review-form-wrap .form-submit { width: 100%; margin-top: 4px; }
.review-cta-text { margin-top: 64px; }
#reviews { scroll-margin-top: 90px; }
@media (max-width: 600px) { .review-form-wrap { padding: 28px 20px; } }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; }

.map-section {
  padding: 0 0 80px;
  background: var(--navy);
}
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.map-wrap h4 {
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 700;
}
.map-wrap iframe {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  border: 1px solid rgba(240,165,0,0.2);
  filter: grayscale(20%) invert(5%);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #25d366;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Email float button (stacked above WhatsApp) */
.mail-float {
  position: fixed;
  bottom: 104px;
  right: 32px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(240,165,0,0.4);
  transition: var(--transition);
  cursor: pointer;
}
.mail-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(240,165,0,0.55);
}
.mail-float svg { width: 30px; height: 30px; fill: #0d1f4e; }
.mail-tooltip {
  position: absolute;
  right: 70px;
  background: var(--gold);
  color: #0d1f4e;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mail-float:hover .mail-tooltip { opacity: 1; }

/* ============================================
   SCROLL-FOLLOWING BEARING
   A small bearing rides down the side of the page,
   rotating in sync with scroll position.
   ============================================ */
.scroll-bearing {
  position: fixed;
  left: 20px;
  top: 110px;
  width: 42px;
  height: 42px;
  z-index: 55;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: transform, top;
}
.scroll-bearing.visible { opacity: 0.55; }
.scroll-bearing svg { width: 100%; height: 100%; display: block; }
.scroll-bearing .sb-ring  { fill: none; stroke: var(--gold); stroke-width: 8; }
.scroll-bearing .sb-ring2 { fill: none; stroke: var(--gold); stroke-width: 4; opacity: 0.5; }
.scroll-bearing .sb-hub   { fill: none; stroke: var(--gold); stroke-width: 7; }
.scroll-bearing .sb-ball  { fill: var(--gold); }

@media (max-width: 900px)  { .scroll-bearing { display: none; } }
@media (prefers-reduced-motion: reduce) { .scroll-bearing { display: none; } }

/* ============================================
   MOBILE NAV
   ============================================ */
@media (max-width: 992px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-dark); flex-direction: column; gap: 0; padding: 20px 0; border-bottom: 2px solid rgba(240,165,0,0.2); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 32px; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .values-bar .container { grid-template-columns: repeat(2,1fr); }
  .about-snapshot .container { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .industry-full-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-story .container { grid-template-columns: 1fr; }
  .hero-stats .container { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .values-bar .container { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: 1fr; }
  .industry-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .about-img-badge { position: static; margin-top: 16px; display: inline-block; }
}

/* ============================================================
   ============================================================
   PREMIUM LAYER  ·  animations, depth & polish
   ============================================================
   ============================================================ */

/* --- Refined typography ------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font:      'Inter', 'Segoe UI', Arial, sans-serif;
  --font-head: 'Sora', 'Segoe UI', Arial, sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}
body { font-family: var(--font); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
.section-title, .hero h1, .page-header h1, .cta-banner h2,
.logo-text, h2, h3, h4 { font-family: var(--font-head); }

/* --- Custom scrollbar -------------------------------------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), #b8810a); border-radius: 10px; border: 2px solid var(--navy-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
::selection { background: rgba(240,165,0,0.3); color: #fff; }

/* --- Scroll progress bar ----------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), #fff);
  z-index: 2000; box-shadow: 0 0 12px rgba(240,165,0,0.7);
  transition: width 0.1s linear;
}

/* --- Fine grain / texture overlay for depth ---------------- */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   ROTATING BEARING GRAPHIC (SVG component)
   ============================================================ */
.bearing-graphic { display: block; overflow: visible; }
.bearing-graphic circle,
.bearing-graphic .ring { fill: none; stroke: var(--gold); }
.bearing-graphic .ring-outer { stroke-width: 3; opacity: 0.9; }
.bearing-graphic .ring-outer-2 { stroke-width: 1.5; opacity: 0.5; }
.bearing-graphic .ring-inner { stroke-width: 3; opacity: 0.9; }
.bearing-graphic .ring-inner-2 { stroke-width: 1.5; opacity: 0.5; }
.bearing-graphic .ball { fill: var(--gold); stroke: none; opacity: 0.92; }
.bearing-graphic .hub { fill: rgba(240,165,0,0.12); stroke: var(--gold); stroke-width: 1; }
.bearing-graphic .cage { stroke: rgba(240,165,0,0.45); stroke-width: 1; fill: none; }

.spin-balls  { transform-origin: 100px 100px; animation: spin 18s linear infinite; }
.spin-inner  { transform-origin: 100px 100px; animation: spin-rev 12s linear infinite; }
.spin-outer  { transform-origin: 100px 100px; animation: spin 40s linear infinite; }
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }

/* --- Hero bearing placement -------------------------------- */
.hero { isolation: isolate; }
.hero-bearing {
  position: absolute; z-index: 1; top: 50%; right: -60px;
  width: 620px; height: 620px; transform: translateY(-50%);
  opacity: 0.55; pointer-events: none; filter: drop-shadow(0 0 40px rgba(240,165,0,0.25));
}
.hero-bearing.small { width: 200px; opacity: 0.18; right: auto; left: 4%; top: 22%; }
@media (max-width: 992px) { .hero-bearing { opacity: 0.18; right: -180px; } .hero-bearing.small { display: none; } }

/* --- Animated mesh glow behind hero ------------------------ */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(closest-side at 78% 38%, rgba(240,165,0,0.20), transparent 70%),
    radial-gradient(closest-side at 18% 78%, rgba(45,90,200,0.22), transparent 70%);
  animation: meshDrift 16s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-3%, 2%, 0) scale(1.08); }
}
.hero-overlay { z-index: 1; }
.hero .container { z-index: 3; position: relative; }
.hero-stats { z-index: 3; }

/* --- Hero entrance reveal (on load) ------------------------ */
.hero-badge, .hero h1, .hero p, .hero-btns { opacity: 0; animation: heroUp 0.9s var(--ease) forwards; }
.hero h1     { animation-delay: 0.12s; }
.hero p      { animation-delay: 0.26s; }
.hero-btns   { animation-delay: 0.40s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* Animated gradient shimmer on hero highlight word */
.hero h1 span {
  background: linear-gradient(100deg, var(--gold) 20%, #fff 45%, var(--gold-light) 70%, var(--gold) 90%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 220% center; } }

.hero-badge { position: relative; overflow: hidden; }
.hero-badge::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: sweep 3.4s ease-in-out infinite; animation-delay: 1.2s;
}
@keyframes sweep { 0% { left: -120%; } 60%,100% { left: 140%; } }

/* --- Scroll cue -------------------------------------------- */
.scroll-cue {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(240,165,0,0.6);
  border-radius: 14px; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue::before { content: ''; width: 4px; height: 8px; background: var(--gold); border-radius: 4px; animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }
@media (max-width: 992px) { .scroll-cue { display: none; } }

/* ============================================================
   SCROLL REVEAL  (used by JS)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-zoom  { transform: scale(0.92); }
.reveal-left.in, .reveal-right.in, .reveal-zoom.in { transform: none; }

/* ============================================================
   PREMIUM CARD POLISH  (shine sweep + glow lift)
   ============================================================ */
.feature-card, .product-card, .catalog-card,
.industry-full-card, .testimonial-card, .team-card, .mv-card, .industry-card {
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)) , var(--card-bg);
  transition: transform 0.45s var(--ease), border-color 0.4s var(--ease), box-shadow 0.45s var(--ease);
}
.feature-card::before, .catalog-card::before, .industry-full-card::before,
.team-card::before, .mv-card::before {
  content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.10), transparent);
  transform: skewX(-18deg); transition: left 0.7s var(--ease); pointer-events: none; z-index: 2;
}
.feature-card:hover::before, .catalog-card:hover::before, .industry-full-card:hover::before,
.team-card:hover::before, .mv-card:hover::before { left: 130%; }
.feature-card:hover, .catalog-card:hover, .industry-full-card:hover {
  box-shadow: 0 22px 50px rgba(0,0,0,0.40), 0 0 0 1px rgba(240,165,0,0.35), 0 0 30px rgba(240,165,0,0.12);
}

/* Feature icon gets a glowing disc */
.feature-card .feature-icon, .mv-icon, .industry-full-card .industry-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 74px; height: 74px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(240,165,0,0.22), rgba(240,165,0,0.05));
  border: 1px solid rgba(240,165,0,0.25); margin-bottom: 22px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.feature-card:hover .feature-icon, .industry-full-card:hover .industry-icon {
  transform: rotate(8deg) scale(1.06); box-shadow: 0 0 26px rgba(240,165,0,0.35);
}

/* Industry mini-cards: icon float + gold wash */
.industry-card .industry-icon { transition: transform 0.4s var(--ease); }
.industry-card:hover .industry-icon { transform: translateY(-4px) scale(1.12); }

/* ============================================================
   STUDIO IMAGE TREATMENT  (makes stock photos look premium)
   ============================================================ */
.catalog-img-wrap, .product-card-img, .about-img-wrap img {
  background: radial-gradient(circle at 50% 35%, #ffffff 0%, #eef1f6 55%, #d9dee8 100%);
}
.catalog-img-wrap { position: relative; }
.catalog-img-wrap::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  box-shadow: inset 0 -40px 60px -30px rgba(10,18,48,0.35), inset 0 0 0 1px rgba(255,255,255,0.4);
  background: linear-gradient(180deg, transparent 60%, rgba(10,18,48,0.06));
}
.catalog-img-wrap img, .product-card-img { filter: contrast(1.05) saturate(1.06) brightness(1.02); }
.about-img-wrap img { filter: contrast(1.04) saturate(1.05); }

/* Badge pulse */
.catalog-badge { position: relative; }
.about-img-badge { box-shadow: 0 16px 40px rgba(240,165,0,0.4); animation: floaty 4s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============================================================
   PREMIUM BUTTONS  (shine + magnetic ready)
   ============================================================ */
.btn { position: relative; overflow: hidden; z-index: 0; will-change: transform; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 55%; height: 100%; z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease);
}
.btn:hover::after { left: 150%; }
.btn-gold { box-shadow: 0 6px 22px rgba(240,165,0,0.28); }

/* ============================================================
   SECTION HEADINGS  — animated gold line shimmer
   ============================================================ */
.gold-line { position: relative; overflow: hidden; }
.gold-line::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, #fff, transparent);
  transform: translateX(-100%); animation: lineShine 3.5s ease-in-out infinite;
}
@keyframes lineShine { 0% { transform: translateX(-100%); } 55%,100% { transform: translateX(200%); } }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stat-number { font-family: var(--font-head); text-shadow: 0 0 24px rgba(240,165,0,0.35); }
.stat { transition: transform 0.4s var(--ease); }
.stat:hover { transform: translateY(-4px); }

/* ============================================================
   VALUES BAR — subtle icon float + divider
   ============================================================ */
.values-bar { position: relative; overflow: hidden; }
.value-item { position: relative; transition: transform 0.4s var(--ease); }
.value-item:hover { transform: translateY(-3px); }
.value-icon { transition: transform 0.5s var(--ease); }
.value-item:hover .value-icon { transform: scale(1.18) rotate(-6deg); }

/* ============================================================
   FAINT ROTATING BEARINGS as section decoration
   ============================================================ */
.deco-bearing { position: absolute; pointer-events: none; opacity: 0.05; z-index: 0; }
.page-header .deco-bearing { width: 340px; height: 340px; right: -50px; top: 50%; transform: translateY(-50%); opacity: 0.10; }
.deco-bearing.tr { width: 260px; height: 260px; top: -60px; right: -60px; }
.deco-bearing.bl { width: 320px; height: 320px; bottom: -90px; left: -80px; }
@media (max-width: 992px){ .page-header .deco-bearing { opacity: 0.06; } }
.features, .products-preview, .industries-section, .testimonials,
.catalog-section, .industry-full, .about-snapshot { position: relative; overflow: hidden; }
.features .container, .products-preview .container, .industries-section .container,
.testimonials .container, .catalog-section .container, .industry-full .container,
.about-snapshot .container { position: relative; z-index: 2; }

/* ============================================================
   PAGE HEADER — animated bearing + gradient motion
   ============================================================ */
.page-header { position: relative; overflow: hidden; }
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(closest-side at 85% 50%, rgba(240,165,0,0.16), transparent 70%);
  animation: meshDrift 14s ease-in-out infinite alternate;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { opacity: 0; animation: heroUp 0.8s var(--ease) 0.1s forwards; }
.page-header .gold-line, .page-header .breadcrumb { opacity: 0; animation: heroUp 0.8s var(--ease) 0.25s forwards; }

/* ============================================================
   WHATSAPP FLOAT — gentle pulse ring
   ============================================================ */
.whatsapp-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.8); opacity: 0; } }

/* ============================================================
   NAV — logo subtle interaction
   ============================================================ */
.logo img { height: 48px; width: auto; border-radius: 0; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); transition: transform 0.8s var(--ease); }
.logo:hover img { transform: rotate(360deg); }
.footer-brand img { height: 66px; width: auto; border-radius: 0; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   MOBILE HARDENING  ·  fixes overlaps on phones/tablets
   ============================================================ */

/* Tablet & below: tame the giant hero bearing, free up the hero */
@media (max-width: 992px) {
  /* stack hero content and stats vertically (hero is a flex row by default) */
  .hero { min-height: auto; padding: 120px 0 48px; flex-direction: column; align-items: stretch; justify-content: flex-start; }
  .hero-content { max-width: 100%; }
  .hero-bearing { width: 360px; height: 360px; right: -120px; top: 38%; opacity: 0.14; }

  /* stats flow in normal document order instead of overlapping content */
  .hero-stats { position: static; margin-top: 40px; width: 100%; }
  .hero-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .stat { border-left: none; padding-left: 0; }
  .stat::after { content: none; }

  /* about image badge no longer floats off the image edge */
  .about-img-badge { position: static; display: inline-block; margin: 16px 0 0; right: auto; bottom: auto; }
  .about-snapshot .container { gap: 36px; }
}

/* Phones */
@media (max-width: 600px) {
  .container { padding: 0 18px; }

  /* Logo: keep wordmark readable, shrink emblem a touch */
  .logo img { height: 42px; }
  .logo-text { font-size: 0.95rem; }

  /* Hero */
  .hero { padding: 104px 0 40px; }
  .hero-badge { font-size: 0.68rem; letter-spacing: 1px; padding: 5px 12px; }
  .hero h1 { font-size: 1.85rem; line-height: 1.2; }
  .hero p { font-size: 0.98rem; }
  .hero-btns { gap: 12px; }
  .hero-btns .btn { flex: 1 1 auto; text-align: center; padding: 12px 18px; }
  .hero-bearing { display: none; }            /* remove clutter on small screens */

  /* Stats: 2x2 grid in a polished card */
  .hero-stats { margin-top: 36px; }
  .hero-stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(240,165,0,0.18);
    border-radius: 16px;
    padding: 8px 0;
    backdrop-filter: blur(2px);
  }
  .stat {
    text-align: center;
    padding: 18px 10px;
    border-right: 1px solid rgba(240,165,0,0.12);
    border-bottom: 1px solid rgba(240,165,0,0.12);
  }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(n+3) { border-bottom: none; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.72rem; margin-top: 6px; }

  /* Values bar: comfortable single column */
  .values-bar { padding: 22px 0; }
  .value-item { justify-content: flex-start; }

  /* Section rhythm tighter on phones */
  .about-snapshot, .features, .products-preview, .industries-section,
  .testimonials, .catalog-section, .industry-full,
  .about-story, .team-section, .mission-vision, .contact-section { padding: 60px 0; }
  .features-grid, .products-grid, .catalog-grid, .industry-full-grid { margin-top: 36px; }

  /* Icon discs a bit smaller */
  .feature-card .feature-icon, .mv-icon, .industry-full-card .industry-icon { width: 64px; height: 64px; }

  /* Keep decorative bearings from causing any overflow */
  .deco-bearing { display: none; }

  /* CTA + cards padding */
  .cta-banner { padding: 60px 0; }
  .cta-banner h2 { font-size: 1.7rem; }
  .contact-form-wrap { padding: 32px 22px; }
  .mv-card { padding: 36px 26px; }

  /* WhatsApp float slightly smaller, out of the way */
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .mail-float { width: 54px; height: 54px; bottom: 84px; right: 20px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 1.65rem; }
  .nav-cta { display: none; }
}

/* Safety: never allow horizontal scroll from decorative elements */
html, body { max-width: 100%; overflow-x: hidden; }
