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

:root {
  --navy: #1a2744;
  --navy-dark: #111b33;
  --navy-mid: #243158;
  --steel: #4a6fa5;
  --steel-light: #6b8cbe;
  --accent: #c8a96e;
  --accent-light: #dfc08a;
  --off-white: #f7f5f0;
  --warm-gray: #e8e4dd;
  --light-gray: #f0eee9;
  --mid-gray: #9a9590;
  --dark-gray: #4a4744;
  --text: #2a2724;
  --text-light: #6b6560;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(26,39,68,0.08);
  --shadow-md: 0 8px 32px rgba(26,39,68,0.12);
  --shadow-lg: 0 20px 60px rgba(26,39,68,0.18);
  --radius: 4px;
  --radius-lg: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--off-white); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--navy-dark); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section-label { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(28px, 4vw, 42px); color: var(--navy-dark); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-light); max-width: 560px; line-height: 1.7; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; border-radius: var(--radius); transition: all 0.25s ease; cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: var(--navy-dark); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 32px; transition: all 0.3s ease; }
.navbar.scrolled { background: var(--navy-dark); box-shadow: var(--shadow-md); }
.nav-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); }
.nav-logo-sub { font-size: 10px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.82); transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--accent); transition: width 0.25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 12px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-dark); padding: 24px 32px 32px; flex-direction: column; gap: 4px; z-index: 999; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: block; }
.mobile-menu .btn { margin-top: 12px; width: fit-content; }
.mobile-menu.open { display: flex; }

/* HERO */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 50%, #1e3a6e 100%); display: flex; align-items: center; 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'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%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::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 120px; background: linear-gradient(to bottom, transparent, var(--off-white)); }
.hero-content { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 100px 32px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,169,110,0.15); border: 1px solid rgba(200,169,110,0.3); color: var(--accent-light); padding: 7px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px; }
.hero h1 { font-size: clamp(38px, 6vw, 68px); color: var(--white); margin-bottom: 24px; max-width: 760px; font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 520px; line-height: 1.75; margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }

/* TRUST BAR */
.trust-bar { background: var(--navy-dark); padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 500; }
.trust-item .ti { color: var(--accent); font-size: 18px; }

/* ABOUT SNAP */
.about-snap { padding: 100px 0; background: var(--off-white); }
.about-snap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-snap-card { background: var(--navy-dark); border-radius: var(--radius-lg); padding: 48px; color: var(--white); position: relative; overflow: hidden; }
.about-snap-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(200,169,110,0.12), transparent 70%); border-radius: 50%; }
.about-year { font-family: 'Playfair Display', serif; font-size: 80px; font-weight: 700; color: rgba(255,255,255,0.05); line-height: 1; position: absolute; bottom: 12px; right: 20px; }
.about-card-label { font-size: 11px; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.about-snap-card h3 { font-size: 26px; color: var(--white); margin-bottom: 16px; }
.about-snap-card p { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.75; }
.about-values { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-value-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.68); }
.about-value-item::before { content: '✓'; color: var(--accent); font-weight: 700; }
.about-snap-text p { font-size: 17px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.about-snap-text p:first-of-type { font-size: 19px; color: var(--text); }
.countries-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.country-tag { background: var(--warm-gray); color: var(--navy); padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 500; }

/* PRODUCTS HOME */
.products-home { padding: 100px 0; background: var(--light-gray); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.product-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-cat-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--warm-gray); transition: all 0.3s ease; cursor: pointer; position: relative; overflow: hidden; display: block; }
.product-cat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.product-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-cat-card:hover::after { transform: scaleX(1); }
.cat-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--navy-dark); margin-bottom: 8px; }
.cat-count { font-size: 12px; color: var(--mid-gray); font-weight: 500; }
.cat-arrow { position: absolute; top: 32px; right: 28px; color: var(--warm-gray); font-size: 18px; transition: all 0.3s; }
.product-cat-card:hover .cat-arrow { color: var(--accent); transform: translate(2px, -2px); }

/* WHY US */
.why-us { padding: 100px 0; background: var(--navy-dark); position: relative; overflow: hidden; }
.why-us::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'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%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"); }
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.5); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.why-card { padding: 36px 28px; border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); background: rgba(255,255,255,0.03); transition: all 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(200,169,110,0.22); }
.why-icon { width: 48px; height: 48px; background: rgba(200,169,110,0.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.why-card h4 { font-size: 17px; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.7; }

/* INDUSTRIES HOME */
.industries-home { padding: 100px 0; background: var(--off-white); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.industry-card { background: var(--white); border: 1px solid var(--warm-gray); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: all 0.3s; }
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--steel-light); }
.industry-icon { font-size: 36px; margin-bottom: 14px; }
.industry-card h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--navy-dark); margin-bottom: 8px; }
.industry-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--steel) 0%, var(--navy) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); color: var(--white); margin-bottom: 16px; position: relative; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.62); margin-bottom: 36px; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* FOOTER */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.6); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.48); margin-top: 16px; max-width: 280px; }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.52); margin-bottom: 12px; }
.footer-contact-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; font-size: 13px; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 12px; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-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'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%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"); }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px; background: linear-gradient(to bottom, transparent, var(--off-white)); }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.42); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.42); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.58); font-size: 18px; max-width: 560px; }

/* ABOUT PAGE */
.about-story { padding: 100px 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.timeline { margin-top: 40px; }
.timeline-item { display: flex; gap: 20px; margin-bottom: 32px; position: relative; }
.timeline-item:not(:last-child)::before { content: ''; position: absolute; left: 19px; top: 40px; width: 2px; height: calc(100% + 8px); background: var(--warm-gray); }
.timeline-dot { width: 40px; height: 40px; background: var(--navy-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; font-weight: 700; color: var(--accent); font-family: 'DM Sans', sans-serif; }
.timeline-text h4 { font-size: 16px; color: var(--navy-dark); margin-bottom: 6px; padding-top: 8px; }
.timeline-text p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.about-mission-box { background: var(--navy-dark); border-radius: var(--radius-lg); padding: 48px; color: var(--white); position: sticky; top: 100px; }
.about-mission-box h3 { color: var(--white); font-size: 24px; margin-bottom: 16px; }
.about-mission-box > p { color: rgba(255,255,255,0.62); font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.mission-values { display: flex; flex-direction: column; gap: 16px; }
.mission-value { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: rgba(255,255,255,0.04); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06); }
.mission-value-icon { font-size: 22px; flex-shrink: 0; }
.mission-value h5 { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.mission-value p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.55; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 80px 0; }
.stat-box { background: var(--white); border: 1px solid var(--warm-gray); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--navy-dark); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* PRODUCTS PAGE */
.products-page { padding: 80px 0 100px; }
.product-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.product-nav-btn { padding: 10px 20px; border-radius: 100px; font-size: 13.5px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--warm-gray); background: var(--white); color: var(--text-light); transition: all 0.2s; display: flex; align-items: center; gap: 6px; font-family: 'DM Sans', sans-serif; }
.product-nav-btn:hover, .product-nav-btn.active { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white); }
.product-section { margin-bottom: 64px; display: none; }
.product-section.active { display: block; }
.product-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 2px solid var(--warm-gray); }
.product-section-icon { font-size: 28px; }
.product-section-header h2 { font-size: 26px; color: var(--navy-dark); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { background: var(--white); border: 1px solid var(--warm-gray); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.25s; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.product-card:hover { box-shadow: var(--shadow-md); border-color: var(--steel-light); transform: translateY(-2px); }
.product-name { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--navy-dark); margin-bottom: 4px; }
.product-grade { font-size: 12px; color: var(--mid-gray); font-weight: 500; }
.product-inquiry-btn { font-size: 12.5px; font-weight: 600; color: var(--steel); cursor: pointer; border: 1px solid var(--steel-light); padding: 7px 14px; border-radius: var(--radius); background: transparent; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.product-inquiry-btn:hover { background: var(--navy-dark); color: var(--white); border-color: var(--navy-dark); }

/* INDUSTRIES PAGE */
.industries-page { padding: 80px 0 100px; }
.industry-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.industry-detail-card { background: var(--white); border: 1px solid var(--warm-gray); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
.industry-detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.industry-card-top { background: var(--navy-dark); padding: 32px 28px; position: relative; overflow: hidden; }
.industry-card-top::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 100px; height: 100px; background: radial-gradient(circle, rgba(200,169,110,0.12), transparent 70%); border-radius: 50%; }
.industry-card-emoji { font-size: 36px; display: block; margin-bottom: 12px; }
.industry-card-top h3 { font-size: 20px; color: var(--white); }
.industry-card-body { padding: 28px; }
.industry-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.industry-products-list { display: flex; flex-direction: column; gap: 8px; }
.industry-products-list li { font-size: 13px; color: var(--text); padding: 7px 12px; background: var(--light-gray); border-radius: var(--radius); display: flex; align-items: center; gap: 8px; }
.industry-products-list li::before { content: '→'; color: var(--accent); font-size: 11px; }

/* BLOG PAGE */
.blog-page { padding: 80px 0 100px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--warm-gray); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; }
.blog-tag { display: inline-block; background: rgba(74,111,165,0.1); color: var(--steel); padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px; }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { font-size: 18px; color: var(--navy-dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.7; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--warm-gray); font-size: 12.5px; color: var(--mid-gray); flex-wrap: wrap; }
.blog-read-more { color: var(--steel); font-weight: 600; margin-left: auto; font-size: 13px; }

/* CONTACT PAGE */
.contact-page { padding: 80px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--white); border: 1px solid var(--warm-gray); border-radius: var(--radius-lg); padding: 28px; display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; background: var(--navy-dark); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.contact-info-text h4 { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 6px; }
.contact-info-text p, .contact-info-text a { font-size: 15px; color: var(--navy-dark); font-weight: 500; line-height: 1.6; }
.contact-info-text a:hover { color: var(--steel); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--warm-gray); border-radius: var(--radius-lg); padding: 48px; }
.contact-form-wrap h3 { font-size: 26px; color: var(--navy-dark); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 15px; color: var(--text-light); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark-gray); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--warm-gray); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text); background: var(--off-white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--steel); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 16px; background: var(--navy-dark); color: var(--white); border: none; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.25s; }
.form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-success { display: none; text-align: center; padding: 32px; background: rgba(74,111,165,0.06); border-radius: var(--radius-lg); border: 1px solid rgba(74,111,165,0.18); margin-top: 20px; }
.form-success.show { display: block; }
.form-success h4 { color: var(--navy-dark); margin-bottom: 8px; font-size: 20px; }
.form-success p { color: var(--text-light); font-size: 15px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-categories { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-mission-box { position: static; }
  .industry-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-snap-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-categories { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .industry-detail-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 28px 20px; }
  .trust-bar-inner { gap: 24px; }
  .hero-stats { gap: 28px; }
}
@media (max-width: 480px) {
  .product-categories { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
