/* ============================================
   HZ PSA - Shanghai HuaZhou Medical Adhesive
   Design System matching reference website
   ============================================ */

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

/* CSS Variables - matching reference design system */
:root {
  --primary: #1565C0;
  --primary-dark: #0D47A1;
  --primary-light: #E3F2FD;
  --secondary: #4CAF50;
  --secondary-light: #E8F5E9;
  --accent: #1565C0;
  --accent-hover: #0D47A1;
  --accent-shadow: rgba(21, 101, 192, 0.3);
  --dark: #0B1D3A;
  --darker: #081528;
  --text: #1A1A2E;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --bg: #FFFFFF;
  --bg-surface: #F8F9FA;
  --bg-surface-dark: #E9ECEF;
  --border: #E9ECEF;
  --success: #4CAF50;
  --warning: #F5A623;
  --orange: #F5A623;
  --danger: #EF4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-white { color: #fff; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Label - pill badge */
.section-label {
  display: inline-block;
  border-radius: 9999px;
  background: var(--primary-light);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-label-why {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--primary);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1rem;
}

/* Buttons - matching reference */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: calc(var(--radius) - 2px);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px var(--accent-shadow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--bg-surface);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-sm { padding: 60px 0; }
.section-lg { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
  color: var(--text);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.bg-surface { background: var(--bg-surface); }
.bg-surface-dark { background: var(--bg-surface-dark); }
.bg-dark { background: var(--dark); color: #fff; }
.bg-dark p, .bg-dark .text-secondary { color: #94A3B8; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

/* Header / Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: -20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Hero Section - Dark (for inner pages) */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0B1D3A 0%, #0D47A1 50%, #1565C0 100%);
  color: #fff;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.2) 0%, transparent 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 0.5rem 1rem;
  background: rgba(245,166,35,0.15);
  border-radius: 9999px;
  border: 1px solid rgba(245,166,35,0.25);
}

.hero h1 {
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
  font-weight: 800;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 70%;
  opacity: 0.3;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero Light - for homepage (left text, right image) */
.hero-light {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: #F0F4F8;
  color: var(--text);
  overflow: hidden;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
}

.hero-light-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.hero-light-text,
.hero-light-img {
  min-width: 0;
}

.hero-light-img img {
  max-width: 100%;
  height: auto;
}

.hero-light .hero-label {
  background: rgba(21,101,192,0.08);
  color: var(--primary);
  border: 1px solid rgba(21,101,192,0.15);
}

.hero-light h1 {
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 800;
}

.hero-light p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-light .hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-light .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-light .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-light-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-light-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Outline button */
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--bg-surface);
  color: var(--text);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Stats Bar */
.stats-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

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

/* Cards */
.card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.125rem;
  font-weight: 700;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-grid-2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Image Card - product card style */
.img-card {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--bg);
  border: none;
  transition: var(--transition);
  box-shadow: none;
}

.img-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

.img-card-img {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
}

.img-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-card-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.img-card-body {
  padding: 1.5rem;
}

.img-card-body h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.img-card-body p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.img-card-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.img-card-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.badge-success {
  background: var(--secondary-light);
  color: var(--secondary);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.timeline-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* Tabs */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 9999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  font-family: inherit;
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: var(--bg);
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--bg-surface);
}

.accordion-header h4 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition);
  color: var(--text-muted);
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.open .accordion-body {
  max-height: 500px;
}

.accordion-content {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
  color: #fff;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 140px 0 80px;
  margin-top: var(--header-height);
}

.page-header h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
}

/* Product Detail Card */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.product-info h2 {
  margin-bottom: 16px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-specs {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}

.product-specs dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
}

.product-specs dt {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.product-specs dd {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Cert Card */
.cert-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.cert-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(21,101,192,0.1);
  transform: translateY(-2px);
}

.cert-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--bg-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.cert-ce {
  background: #4CAF50;
  color: #fff;
}

.cert-fda {
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-size: 1.4rem;
  width: 100px;
}

.cert-iso {
  background: rgba(76, 175, 80, 0.1);
  color: rgba(76, 175, 80, 0.4);
  font-size: 2.2rem;
}

.cert-gmp {
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-surface-dark));
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cert-card h4 {
  margin-bottom: 8px;
  font-weight: 700;
}

.cert-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* Region Card */
.region-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.region-card:hover {
  box-shadow: var(--shadow-md);
}

.region-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.region-flag {
  font-size: 1.8rem;
}

.region-card h4 {
  margin: 0;
  font-weight: 700;
}

.region-card .badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.region-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* Contact Card */
.contact-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.contact-card h4 {
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-card p {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-secondary);
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #94A3B8;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #94A3B8;
}

.footer h5 {
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 0.85rem;
  color: #64748B;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-copyright {
  font-size: 0.85rem;
}

.footer-cert {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-logo {
  width: 80px;
  height: 40px;
  background: var(--bg-surface);
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-dot {
  list-style: none;
}

.footer-links-dot li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}

.footer-links-dot li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
}

.footer-links-dot a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links-dot a:hover {
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:nth-child(1) { background: #1877F2; }
.social-icon:nth-child(2) { background: #1DA1F2; }
.social-icon:nth-child(3) { background: #0A66C2; }
.social-icon:nth-child(4) { background: #FF0000; }
.social-icon:nth-child(5) { background: #E4405F; }
.social-icon:nth-child(6) { background: #25D366; }

.social-icon:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* Solutions Page Styles */
.solutions-hero {
  padding-bottom: 40px;
}

.hero-content {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 48px;
  align-items: start;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-tags span {
  padding: 8px 16px;
  background: rgba(255,255,255,0.8);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid rgba(0,0,0,0.08);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  padding: 0.875rem 1.75rem;
}

.hero-image {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.image-label {
  position: absolute;
  top: -18px;
  left: 0;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px 4px 0 0;
}

.image-placeholder {
  width: 100%;
  height: 900px;
  background: linear-gradient(135deg, #E8F0FE, #F0F4F8);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.bg-surface-light {
  background: #F8FAFC;
  border-bottom: 2px solid var(--primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-options span:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-options span:last-child {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 40px 0;
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  margin-top: 16px;
}

.feature-card {
  padding: 0 32px;
  text-align: center;
  position: relative;
}

.feature-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--border);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--text-muted);
  border: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.regulatory-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.regulatory-card {
  background: #F0FDF4;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}

.regulatory-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.regulatory-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.animate-pulse-dot {
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--bg-surface);
  color: var(--primary);
}

/* CTA Section blue gradient */
.cta-blue {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Cert Tag Row - hero bottom tags */
.cert-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.cert-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Stat Card Small (for global markets hero) */
.stat-card-sm {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.stat-card-sm .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card-sm .stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Export Region Detail */
.export-region {
  padding: 1.5rem;
}

.export-region h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.export-region .region-examples {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.export-region .region-clients {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact split layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-info-item h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-info-item a {
  color: var(--primary);
  font-size: 0.95rem;
}

/* Image Stack - overlapping images */
.img-stack {
  position: relative;
  min-height: 420px;
}

.img-stack-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.img-stack-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}

/* Home Manufacturing Section */
.home-manu-section {
  background: #fff;
  border-radius: 12px;
  padding: 48px;
  margin-bottom: 32px;
}

.home-manu-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 20px;
}

.home-manu-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.home-manu-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 700px;
}

.home-manu-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 28px;
}

.home-manu-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.home-manu-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.home-manu-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: end;
}

.home-manu-img-large img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.home-manu-img-small img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.home-manu-img-caption {
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 500;
}

.home-manu-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.home-manu-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

@media (max-width: 960px) {
  .home-manu-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-manu-section {
    padding: 24px;
  }
  .home-manu-title {
    font-size: 1.6rem;
  }
  .home-manu-stats {
    gap: 24px;
    flex-direction: column;
  }
  .home-manu-gallery {
    grid-template-columns: 1fr;
  }
  .home-manu-gallery-item img {
    height: auto;
  }
}

/* Map section */
.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.map-placeholder {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* FAQ Section */
.faq-section .accordion-item {
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  border-top: none;
}

.faq-section .accordion-header {
  padding: 20px 0;
}

.faq-section .accordion-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-section .accordion-content {
  padding: 0 0 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.6rem; }
  .feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .nav, .header-actions .btn { display: none; }
  .mobile-toggle { display: flex; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-visual { display: none; }
  .hero-light-inner { grid-template-columns: 1fr; }
  .hero-light h1 { font-size: 2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .feature-grid,
  .feature-grid-2,
  .feature-grid-4 { grid-template-columns: 1fr; }

  .product-detail { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .map-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .section { padding: 60px 0; }
  .page-header h1 { font-size: 1.8rem; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
}

/* Solutions Page Hero Custom Styles */
.solutions-hero {
  background: #fff;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
}

.solutions-hero .hero-light-inner {
  grid-template-columns: 1fr 518px;
  align-items: flex-start;
  gap: 48px;
}

.solutions-hero .hero-label {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.solutions-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
}

.solutions-hero p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.solutions-hero .hero-actions {
  gap: 12px;
}

.solutions-hero .hero-actions .btn {
  border-radius: 0;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.solutions-hero .hero-light-img {
  border-radius: 8px;
  overflow: hidden;
  min-height: auto;
  width: 518px;
  height: 346px;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.solutions-hero .hero-light-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .solutions-hero .hero-light-inner {
    grid-template-columns: 1fr;
  }
  
  .solutions-hero .hero-light-img {
    width: 100%;
  }
}

/* Image Placeholder Styles */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-surface-dark));
  border-radius: var(--radius-lg);
  display: block;
  object-fit: contain;
  object-position: center;
}

/* When image has actual src, remove placeholder styling */
.img-placeholder[src]:not([src=""]) {
  min-height: auto;
  background: transparent;
  height: auto;
}

/* Lazy loading fade-in effect */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

img[data-src] {
  opacity: 0;
}

/* Product Card Image */
.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-surface-dark));
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 16px;
}

.link-arrow {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
  transition: transform 0.2s ease;
}

.link-arrow:hover {
  transform: translateX(4px);
}

/* Certification Grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cert-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-surface-dark));
  border-radius: var(--radius);
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .cert-grid { grid-template-columns: 1fr; }
}

/* Feature Icon */
.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

/* Process Flow */
.process-section {
  background: #F8FAFC;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  padding-top: 40px;
}

.process-step {
  position: relative;
  text-align: left;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: -28px;
  left: 24px;
  width: calc(100% + 32px);
  height: 2px;
  background: #D1D5DB;
  z-index: 0;
}

.process-dot {
  position: absolute;
  top: -40px;
  left: 0;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 3px solid #0B1D3A;
  border-radius: 50%;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 12px;
  margin-top: 0;
}

.process-step p {
  color: #4B5563;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

/* CTA Shelf */
.cta-shelf {
  background: #ECF3EB;
}

.cta-shelf h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-shelf p {
  max-width: 700px;
  margin: 0 auto 32px;
  color: #374151;
  line-height: 1.6;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  border-radius: 0;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-buttons .btn-solid {
  background: #0B1D3A;
  color: #fff;
  border: 2px solid #0B1D3A;
}

.cta-buttons .btn-solid:hover {
  background: #1a2d5a;
}

.cta-buttons .btn-outline {
  background: transparent;
  color: #0B1D3A;
  border: 2px solid #0B1D3A;
}

.cta-buttons .btn-outline:hover {
  background: #0B1D3A;
  color: #fff;
}

@media (max-width: 1024px) {
  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .process-dot { top: -32px; }
}

@media (max-width: 640px) {
  .process-flow { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; }
}

/* About Page Hero */
.about-hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  background: #fff;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 518px;
  gap: 48px;
  align-items: center;
}

.about-hero-text {
  min-width: 0;
}

.about-hero-image {
  min-width: 0;
  width: 518px;
  height: 345px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.about-hero-label {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  border-radius: 4px;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-hero p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  max-width: 480px;
}

.about-hero-img {
  min-height: 400px;
  border: 2px solid #2563EB;
  border-radius: 4px;
}

.about-hero-img[src]:not([src=""]) {
  min-height: auto;
  border: none;
}

/* Our Story Section */
.our-story-section {
  background: #fff;
}

.our-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.our-story-text,
.our-story-image {
  min-width: 0;
}

.our-story-image img {
  max-width: 100%;
  height: auto;
}

.our-story-label {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  border-radius: 4px;
}

.our-story-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.2;
  margin-bottom: 24px;
}

.our-story-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 16px;
}

.our-story-text p:last-child {
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  background: #0B1D3A;
}

.stats-grid-23 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.stat-card {
  text-align: center;
}

.stat-card .stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: #2563EB;
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.stat-unit {
  font-size: 0.5em;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
}

.stat-card .stat-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
}

/* Focus Section */
.focus-section {
  background: #fff;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.focus-card {
  text-align: center;
}

.focus-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #F3F4F6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
}

.focus-icon svg {
  width: 36px;
  height: 36px;
}

.focus-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2563EB;
  margin-bottom: 12px;
  line-height: 1.3;
}

.focus-card p {
  color: #4B5563;
  line-height: 1.6;
  font-size: 0.9rem;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .about-hero-inner,
  .our-story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-hero-image {
    width: 100%;
    height: auto;
    max-width: 518px;
    margin: 0 auto;
  }
  
  .about-hero-image img {
    width: 100%;
    height: auto;
  }
  
  .stats-grid-23 {
    grid-template-columns: repeat(2, 1fr);
  }
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .stats-grid-23 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* CTA About Section */
.cta-about {
  background: #0052D4;
  padding: 80px 0;
}

.cta-label {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  border-radius: 4px;
}

.cta-about h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-about p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-about .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-about .btn-white {
  background: #fff;
  color: #0052D4;
  border: 2px solid #fff;
  border-radius: 0;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-about .btn-white:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
}

@media (max-width: 640px) {
  .cta-about .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-about .btn-white { width: 100%; }
}

/* Global Presence Section */
.global-presence-section {
  padding: 80px 0;
}

.global-presence-label {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 32px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.global-presence-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.global-presence-map img {
  width: 100%;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}

.global-presence-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.2;
  margin-bottom: 24px;
}

.global-presence-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4B5563;
}

@media (max-width: 768px) {
  .global-presence-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Group Backing Section */
.group-backing-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
}

.group-backing-label {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.group-backing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.group-backing-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #374151;
  line-height: 1.3;
  margin-bottom: 24px;
}

.group-backing-logo {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.group-backing-logo img {
  max-width: 320px;
  max-height: 120px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.group-backing-inner > p {
  font-size: 1rem;
  line-height: 1.7;
  color: #1F2937;
  margin-bottom: 32px;
}

.group-backing-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.group-backing-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  padding: 20px 32px;
  text-align: center;
  min-width: 220px;
}

.group-backing-card h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6B7280;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.group-backing-card p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .group-backing-cards {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Products Hero Section */
.products-hero {
  padding: 80px 0 60px;
  background: #fff;
}

.products-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.products-hero-label {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.products-hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.1;
  margin-bottom: 24px;
}

.products-hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4B5563;
  max-width: 500px;
}

.products-hero-image img {
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .products-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.product-item {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateY(-4px);
}

.product-item-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-item-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1F2937;
  text-align: center;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Detail Page */
.product-detail-section {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  background: #fff;
}

.product-detail-label {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}

.product-detail-image img {
  width: 100%;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}

.product-detail-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.2;
  margin-bottom: 8px;
}

.product-subtitle {
  font-size: 1.15rem;
  color: #3B82F6;
  margin-bottom: 24px;
  font-weight: 500;
}

.detail-block {
  margin-bottom: 28px;
}

.detail-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 12px;
}

.detail-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 12px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

.detail-list li::before {
  content: "•";
  color: #2563EB;
  font-weight: bold;
  position: absolute;
  left: 8px;
  top: 6px;
}

.specifications-block {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 24px 28px;
}

.specifications-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 12px;
}

.specifications-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  margin: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.9rem;
}

.spec-table thead th {
  background: #0B1D3A;
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.spec-table thead th:first-child {
  border-top-left-radius: 6px;
}

.spec-table thead th:last-child {
  border-top-right-radius: 6px;
}

.spec-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid #E5E7EB;
  color: #374151;
}

.spec-table tbody tr:nth-child(even) {
  background: #F3F4F6;
}

.spec-table tbody tr:hover {
  background: #EFF6FF;
}

.spec-table .spec-code {
  font-weight: 600;
  color: #0B1D3A;
  font-family: 'SF Mono', 'Consolas', monospace;
}

.spec-subheading {
  font-size: 1rem;
  font-weight: 600;
  color: #0B1D3A;
  margin-top: 24px;
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 3px solid #2563EB;
}

@media (max-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Manufacturing Page */
.mfg-hero {
  padding: 80px 0 60px;
  background: #fff;
}

.mfg-hero-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}

.mfg-hero-label {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.mfg-hero-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0B1D3A;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.mfg-hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.05;
  margin-bottom: 20px;
}

.mfg-hero-text > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 16px;
}

.mfg-hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.mfg-hero-features li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: #4B5563;
  margin-bottom: 8px;
  line-height: 1.5;
}

.mfg-hero-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563EB;
  font-weight: bold;
}

.mfg-hero-note {
  font-size: 0.88rem;
  color: #6B7280;
  margin-bottom: 28px;
  line-height: 1.5;
}

.mfg-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mfg-stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0B1D3A;
  margin-bottom: 4px;
}

.mfg-stat-label {
  font-size: 0.8rem;
  color: #6B7280;
  line-height: 1.3;
}

.mfg-hero-image img {
  width: 80%;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .mfg-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mfg-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Quality Assurance Section */
.mfg-qa-section {
  background: #F9FAFB;
}

.mfg-qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.mfg-qa-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px 24px;
}

.mfg-qa-icon {
  width: 48px;
  height: 48px;
  background: #EFF6FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #2563EB;
}

.mfg-qa-icon svg {
  width: 24px;
  height: 24px;
}

.mfg-qa-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 12px;
}

.mfg-qa-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

@media (max-width: 768px) {
  .mfg-qa-grid {
    grid-template-columns: 1fr;
  }
}

/* R&D Section */
.mfg-rd-section {
  background: #fff;
}

.mfg-rd-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: #F9FAFB;
  border-radius: 8px;
  padding: 40px;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 24px;
}

.mfg-rd-feature-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 12px;
}

.mfg-rd-feature-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
}

.mfg-rd-feature-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.mfg-rd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mfg-rd-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 28px 24px;
}

.mfg-rd-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 10px;
}

.mfg-rd-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

@media (max-width: 768px) {
  .mfg-rd-feature {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .mfg-rd-grid {
    grid-template-columns: 1fr;
  }
}

/* OEM / ODM Capabilities */
.mfg-oem-section {
  background: #fff;
}

.mfg-oem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.mfg-oem-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px 28px;
}

.mfg-oem-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1E40AF;
  margin-bottom: 12px;
}

.mfg-oem-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

@media (max-width: 640px) {
  .mfg-oem-grid {
    grid-template-columns: 1fr;
  }
}

/* Manufacturing CTA */
.mfg-cta-section {
  padding: 80px 0;
  background: #0052D4;
  color: #fff;
}

.mfg-cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.mfg-cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.mfg-cta-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
}

/* Certifications Page */
.cert-hero {
  padding: 80px 0 60px;
  background: #F9FAFB;
}

.cert-hero-content {
  max-width: 720px;
}

.cert-hero-label {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.cert-hero-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0B1D3A;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cert-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cert-hero-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 28px;
  max-width: 520px;
}

.cert-hero-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  max-width: 560px;
}

.cert-hero-tag {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0B1D3A;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .cert-hero-tags {
    grid-template-columns: 1fr;
  }
}

/* Core Certifications Section */
.cert-core-section {
  background: #fff;
}

.cert-core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.cert-core-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
}

.cert-core-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #6B7280;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.cert-core-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 12px;
  line-height: 1.3;
}

.cert-core-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 16px;
}

.cert-core-note {
  font-size: 0.82rem;
  color: #6B7280;
  padding-top: 12px;
  border-top: 1px solid #F3F4F6;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cert-core-grid {
    grid-template-columns: 1fr;
  }
}

/* Compliance Section */
.cert-compliance-section {
  background: #F9FAFB;
}

.cert-compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
}

.cert-compliance-item {
  padding: 0 24px;
  border-right: 1px solid #E5E7EB;
}

.cert-compliance-item:last-child {
  border-right: none;
}

.cert-compliance-item h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0B1D3A;
  margin-bottom: 16px;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: #2563EB;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.cert-compliance-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4B5563;
}

@media (max-width: 768px) {
  .cert-compliance-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cert-compliance-item {
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 24px;
  }

  .cert-compliance-item:last-child {
    border-bottom: none;
  }
}

/* ESG Section */
.cert-esg-section {
  background: #fff;
}

.cert-esg-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.cert-esg-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cert-esg-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
}

.cert-esg-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cert-esg-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cert-esg-icon {
  width: 16px;
  height: 16px;
  background: #2563EB;
  flex-shrink: 0;
  margin-top: 4px;
}

.cert-esg-item-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 6px;
}

.cert-esg-item-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}

@media (max-width: 960px) {
  .cert-esg-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Global Markets CTA */
.gm-cta-section {
  padding: 80px 0;
  background: #0052D4;
  color: #fff;
}

.gm-cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.gm-cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.gm-cta-section .btn {
  display: inline-block;
}

/* Contact Page */
.contact-hero {
  padding: 100px 0 80px;
  background: #fff;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-hero-label {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.contact-hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-hero-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 16px;
}

.contact-hero-note {
  font-size: 0.85rem !important;
  color: #6B7280 !important;
}

.contact-form {
  background: #F9FAFB;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0B1D3A;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 0.9rem;
  background: #fff;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: #2563EB;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

@media (max-width: 960px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Contact Support Section */
.contact-support-section {
  background: #F9FAFB;
}

.contact-support-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.contact-support-image img {
  width: 100%;
  border-radius: 8px;
}

.contact-support-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-support-text > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 32px;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-support-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.contact-support-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4B5563;
  margin: 0;
}

.contact-support-item a {
  color: #2563EB;
  text-decoration: none;
}

.support-sub {
  font-size: 0.82rem !important;
  color: #6B7280 !important;
  margin-top: 4px !important;
}

@media (max-width: 960px) {
  .contact-support-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .contact-support-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.contact-faq-section {
  background: #fff;
}

.faq-list {
  margin-top: 32px;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid #E5E7EB;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  margin: 0;
}

/* Visit Section */
.contact-visit-section {
  background: #F9FAFB;
}

.contact-visit-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-visit-map img,
.contact-visit-map iframe {
  width: 100%;
  border-radius: 8px;
}

.contact-visit-map iframe {
  height: 400px;
  border: 0;
  display: block;
}

.contact-visit-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-visit-text > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 24px;
}

.contact-visit-address {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  border-left: 4px solid #2563EB;
}

.contact-visit-address h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 8px;
}

.contact-visit-address p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}

@media (max-width: 960px) {
  .contact-visit-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-visit-map iframe {
    height: 300px;
  }
}

/* Language Toggle Button */
.btn-lang {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-lang:hover {
  background: var(--primary);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
