/* ============================================
   ADVANCEIN ORGANICS LLP — Global Stylesheet
   Version: 1.0
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&family=Playfair+Display:wght@700&display=swap');

:root {
  --navy:       #1B2B5E;
  --navy-dark:  #0F1A3E;
  --navy-mid:   #243470;
  --red:        #C8281E;
  --red-dark:   #A01F17;
  --white:      #FFFFFF;
  --off-white:  #F4F6FB;
  --light-blue: #EAF0FF;
  --text:       #1A1A2E;
  --text-mid:   #3D4A6B;
  --text-light: #6B7A99;
  --border:     #DDE3F0;
  --success:    #2E7D32;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --shadow-sm: 0 2px 8px rgba(27,43,94,0.08);
  --shadow-md: 0 4px 20px rgba(27,43,94,0.12);
  --shadow-lg: 0 8px 40px rgba(27,43,94,0.18);

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.25s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--red);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-lg); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(200,40,30,0.2);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-mobile-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-mobile-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background: var(--navy-dark);
  overflow: hidden; padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(135deg, rgba(15,26,62,0.92) 0%, rgba(27,43,94,0.80) 50%, rgba(200,40,30,0.15) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: 0.35;
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(circle at 20% 50%, rgba(200,40,30,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(27,43,94,0.3) 0%, transparent 40%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,40,30,0.15); border: 1px solid rgba(200,40,30,0.4);
  color: #FF9F9F; font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--red); border-radius: 50%; display: inline-block; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.05;
  color: var(--white); letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal; color: var(--red);
  position: relative;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.75);
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  border: 2px solid var(--red); transition: all var(--transition);
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,40,30,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.35); transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 32px;
}
.hero-card-title {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.5); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hero-stat:last-child { border-bottom: none; }
.hero-stat-num {
  font-family: var(--font-head); font-size: 36px; font-weight: 800;
  color: var(--red); min-width: 70px; line-height: 1;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.4; }

/* ============ SECTION BASICS ============ */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-label::before { content: "—— "; }
.section-label::after { content: " ——"; }
.section-title {
  font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: var(--navy); line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 16px; color: var(--text-mid);
  max-width: 560px; margin: 16px auto 0;
  line-height: 1.7;
}

/* ============ STATS BAR ============ */
.stats-bar { background: var(--navy); padding: 28px 0; }
.stats-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item {
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head); font-size: 36px; font-weight: 800;
  color: var(--red); line-height: 1;
}
.stat-text { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; font-weight: 500; }

/* ============ CATEGORIES GRID ============ */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 20px;
  text-align: center; cursor: pointer;
  transition: all var(--transition);
  text-decoration: none; color: var(--text);
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transition: transform var(--transition);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--light-blue); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: background var(--transition);
}
.cat-card:hover .cat-icon { background: var(--navy); }
.cat-name {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.cat-count { font-size: 13px; color: var(--text-light); }

/* ============ WHY SECTION ============ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: rgba(200,40,30,0.3); }
.why-icon {
  width: 52px; height: 52px; background: var(--navy);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; font-size: 22px;
}
.why-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.why-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ============ CERTIFICATIONS ============ */
.cert-strip { background: var(--navy-dark); padding: 48px 0; }
.cert-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  text-align: center;
}
.cert-title {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 28px;
}
.cert-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.cert-badge {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.cert-badge-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; transition: all var(--transition);
}
.cert-badge:hover .cert-badge-icon { background: rgba(200,40,30,0.2); border-color: rgba(200,40,30,0.5); }

/* ============ INDUSTRIES ============ */
.ind-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.ind-item {
  text-align: center; padding: 20px 12px;
  border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--border); transition: all var(--transition);
  cursor: default;
}
.ind-item:hover { background: var(--navy); border-color: var(--navy); }
.ind-item:hover .ind-name { color: var(--white); }
.ind-icon { font-size: 28px; margin-bottom: 10px; }
.ind-name { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.04em; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,40,30,0.12), transparent 70%);
}
.cta-banner h2 {
  font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: var(--white); margin-bottom: 16px;
}
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.cta-banner .btn-primary { font-size: 16px; padding: 16px 36px; }

/* ============ FOOTER ============ */
.footer { background: #080E22; color: rgba(255,255,255,0.7); }
.footer-main { padding: 60px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-col-title {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--red); }
.footer-contact-item {
  display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px;
}
.footer-contact-item .icon { color: var(--red); flex-shrink: 0; font-size: 16px; margin-top: 2px; }
.footer-contact-item span { color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-gst { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 4px; }

/* ============ FORM ============ */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-mid); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
label .req { color: var(--red); margin-left: 2px; }
input, select, textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: var(--white); transition: border-color var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--navy); }
textarea { resize: vertical; min-height: 120px; }
.phone-row { display: flex; gap: 0; }
.phone-row select { width: 110px; border-radius: var(--radius) 0 0 var(--radius); border-right: none; background: var(--off-white); }
.phone-row input { border-radius: 0 var(--radius) var(--radius) 0; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-top: 8px; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); }
.checkbox-group label { font-size: 13px; text-transform: none; letter-spacing: 0; color: var(--text-mid); font-weight: 400; }
.form-success {
  display: none; background: #E8F5E9; border: 1px solid #A5D6A7;
  border-radius: var(--radius-lg); padding: 20px 24px;
  color: var(--success); font-weight: 600; text-align: center;
  margin-top: 20px;
}

/* ============ PAGE HERO ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 120px 0 60px; text-align: center;
  border-bottom: 3px solid var(--red);
}
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(32px, 4vw, 54px);
  font-weight: 800; color: var(--white); letter-spacing: -0.01em; margin-bottom: 12px;
}
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; }
.breadcrumb a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 12px; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition); text-decoration: none;
  font-size: 26px;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-tooltip {
  position: absolute; right: 68px; white-space: nowrap;
  background: var(--text); color: white; font-size: 13px; font-weight: 600;
  padding: 6px 12px; border-radius: 6px; opacity: 0;
  transition: opacity var(--transition); pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ============ ABOUT PAGE ============ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-intro-img img { width: 100%; height: 400px; object-fit: cover; }
.about-intro-text .section-label { text-align: left; }
.about-intro-text .section-title { text-align: left; }
.about-intro-text p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-top: 20px; }
.about-highlight {
  display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap;
}
.about-highlight-item { text-align: center; }
.about-highlight-num {
  font-family: var(--font-head); font-size: 40px; font-weight: 800;
  color: var(--red); line-height: 1;
}
.about-highlight-label { font-size: 13px; color: var(--text-light); font-weight: 500; }
.edge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.edge-card {
  display: flex; gap: 16px; padding: 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all var(--transition);
}
.edge-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy); }
.edge-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.edge-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); text-transform: uppercase; margin-bottom: 6px; }
.edge-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card {
  background: var(--navy); color: white; border-radius: var(--radius-lg);
  padding: 40px; position: relative; overflow: hidden;
}
.mv-card::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.mv-card.vision { background: var(--navy-dark); }
.mv-label {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.mv-card h3 {
  font-family: var(--font-head); font-size: 28px; font-weight: 800;
  color: white; margin-bottom: 16px;
}
.mv-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.mv-card ul { padding-left: 0; }
.mv-card li {
  font-size: 14px; color: rgba(255,255,255,0.7); padding: 6px 0;
  padding-left: 20px; position: relative; line-height: 1.6;
}
.mv-card li::before { content: '→'; position: absolute; left: 0; color: var(--red); }
.exports-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.export-tag {
  background: var(--white); border: 2px solid var(--navy);
  color: var(--navy); font-family: var(--font-head);
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 10px 20px;
  border-radius: 30px; transition: all var(--transition);
}
.export-tag:hover { background: var(--navy); color: white; }

/* ============ CONTACT PAGE ============ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info-card {
  background: var(--navy); color: white;
  border-radius: var(--radius-lg); padding: 40px;
  position: sticky; top: 90px;
}
.contact-info-title {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: white; margin-bottom: 28px; text-transform: uppercase;
}
.contact-item {
  display: flex; gap: 16px; margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(200,40,30,0.2); display: flex;
  align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; color: var(--red);
}
.contact-item-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.contact-item-val { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.contact-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-title {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px; text-transform: uppercase;
}
.contact-form-sub { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; }
.map-embed { margin-top: 24px; border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { width: 100%; height: 220px; border: none; }

/* ============ PRODUCT PAGE ============ */
.product-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.product-main {}
.product-sidebar { position: sticky; top: 90px; }
.product-title {
  font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: var(--navy); letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.product-cat-tag {
  display: inline-block; background: var(--light-blue); color: var(--navy);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  margin-bottom: 20px;
}
.product-desc { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.spec-table th {
  background: var(--navy); color: white;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 16px; text-align: left;
}
.spec-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.spec-table tr:nth-child(even) td { background: var(--off-white); }
.spec-table tr:last-child td { border-bottom: none; }
.product-section-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
}
.apps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 32px; }
.app-tag {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 10px 14px; border-radius: var(--radius);
  font-size: 13px; color: var(--text-mid); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.app-tag::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.product-inquiry-card {
  background: var(--navy); color: white;
  border-radius: var(--radius-lg); padding: 32px; margin-bottom: 20px;
}
.product-inquiry-card h3 {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 20px;
}
.product-inquiry-card label { color: rgba(255,255,255,0.7); }
.product-inquiry-card input,
.product-inquiry-card select,
.product-inquiry-card textarea {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2);
  color: white;
}
.product-inquiry-card input::placeholder { color: rgba(255,255,255,0.35); }
.product-inquiry-card input:focus,
.product-inquiry-card select:focus,
.product-inquiry-card textarea:focus { border-color: var(--red); }
.product-inquiry-card select option { background: var(--navy-dark); color: white; }
.coa-download-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px; background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  color: white; font-family: var(--font-head); font-size: 14px;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--transition); cursor: pointer; text-decoration: none;
}
.coa-download-btn:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .edge-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { min-height: auto; padding: 60px 0; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 36px; }
}
