/* ===== Brand Colors ===== */
:root {
  --navy: #0A2463;
  --red: #E63946;
  --gold: #F5A623;
  --dark-footer: #1A1A2E;
  --white: #FFFFFF;
  --light-bg: #F8F9FA;
  --text-dark: #333333;
  --text-mid: #666666;
  --text-light: #999999;
  --border: #E5E7EB;
}

/* ===== Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== Container ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== Section Spacing ===== */
.section { padding: 80px 0; }
.section-light { background: var(--white); }
.section-gray { background: var(--light-bg); }
.section-navy { background: var(--navy); color: var(--white); }

/* ===== Typography ===== */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 48px;
}
.section-navy .section-title,
.section-navy .section-subtitle { color: var(--white); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: #c5303c; }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: #081d50; }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-outline-navy { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--light-bg); }
.btn-outline-gray { background: transparent; color: var(--text-dark); border-color: var(--border); }
.btn-outline-gray:hover { border-color: var(--navy); }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.navbar-brand { display: flex; flex-direction: column; }
.brand-name { font-size: 1.25rem; font-weight: 800; letter-spacing: 1px; }
.brand-name .china { color: var(--navy); }
.brand-name .source { color: var(--red); }
.brand-name .hub { color: var(--red); }
.brand-tagline { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.5px; }
.navbar-menu { display: flex; align-items: center; gap: 32px; }
.navbar-menu a {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown > a .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.nav-dropdown:hover > a .chevron {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 100;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0,0,0,0.06);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-bottom: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--red);
  border-bottom: none;
}
.dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}
.navbar-cta { display: flex; align-items: center; gap: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--red); }
.mobile-menu .btn { margin-top: 24px; text-align: center; justify-content: center; }
.mobile-dropdown { display: flex; flex-direction: column; }
.mobile-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-dropdown > a .chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.mobile-dropdown.open > a .chevron {
  transform: rotate(180deg);
}
.mobile-dropdown-items {
  display: none;
  flex-direction: column;
  padding-left: 16px;
}
.mobile-dropdown.open .mobile-dropdown-items {
  display: flex;
}
.mobile-dropdown-items a {
  font-size: 1rem;
  padding: 12px 0;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: 72px;
  padding: 80px 24px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 36, 99, 0.7);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero dark variant */
.hero-dark {
  background: var(--navy);
  min-height: 320px;
}
.hero-dark .hero-overlay { display: none; }

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--navy);
  padding: 40px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-icon { color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.stat-number { font-size: 2rem; font-weight: 700; color: var(--white); }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); }

/* ===== Cards Grid ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ===== Card ===== */
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body { padding: 20px; }
.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.card-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.6;
}
.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.card-link:hover { color: var(--red); }
.card-list {
  margin-bottom: 16px;
}
.card-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

/* ===== Gold Verified Badge ===== */
.badge-gold {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 1;
}
.card-image-wrapper { position: relative; }

/* ===== How It Works / Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.step-item { text-align: center; position: relative; }
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}
.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
}

/* ===== Advantages ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.advantage-item { text-align: center; }
.advantage-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.section-light .advantage-icon { color: var(--navy); }
.advantage-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.advantage-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}
.section-navy .advantage-desc { color: rgba(255,255,255,0.7); }
.section-light .advantage-desc { color: var(--text-mid); }

/* ===== Video Section ===== */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--light-bg);
  padding: 60px 24px;
}
.cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.cta-image { flex: 0 0 300px; }
.cta-image img { border-radius: 12px; width: 100%; height: 200px; object-fit: cover; }
.cta-content { flex: 1; }
.cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.cta-text {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark-footer);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto 40px;
}
.footer-brand .brand-name { margin-bottom: 8px; }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.5); margin-bottom: 16px; display: block; }
.footer-desc { font-size: 0.875rem; line-height: 1.6; }
.footer-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact li {
  font-size: 0.875rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: 1280px;
  margin: 0 auto;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .current { color: var(--red); }

/* ===== Filters ===== */
.filters-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}
.filter-select {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-mid);
  background: var(--white);
  min-width: 180px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.filter-select:focus { outline: none; border-color: var(--navy); }

/* ===== Industry Card (left-right) ===== */
.industry-card {
  display: flex;
  gap: 32px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}
.industry-card:nth-child(even) { flex-direction: row-reverse; }
.industry-card-image {
  flex: 0 0 300px;
  height: 240px;
  object-fit: cover;
}
.industry-card-body { padding: 24px; flex: 1; }
.industry-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--white);
}
.industry-tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.industry-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* ===== Service Card ===== */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}
.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.5;
}
.service-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-info-text {
  font-size: 0.9rem;
  color: var(--text-mid);
}
.form-group { margin-bottom: 20px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--navy); }
textarea.form-input { min-height: 120px; resize: vertical; }

/* ===== Tabs ===== */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--red);
  font-weight: 600;
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== Profile Page ===== */
.profile-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.profile-gallery { position: relative; }
.profile-main-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}
.profile-thumbs {
  display: flex;
  gap: 8px;
}
.profile-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  border: 2px solid transparent;
}
.profile-thumb:hover,
.profile-thumb.active { opacity: 1; border-color: var(--navy); }
.profile-info { padding-top: 16px; }
.profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.profile-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.profile-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.profile-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.profile-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.profile-detail-item {
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: var(--light-bg);
  border-radius: 8px;
}
.profile-detail-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.profile-detail-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ===== Can't Find Section ===== */
.cant-find {
  background: var(--navy);
  padding: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 48px 0;
}
.cant-find-content { flex: 1; }
.cant-find-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cant-find-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

/* ===== Page Header (for non-hero pages) ===== */
.page-header {
  background: var(--navy);
  padding: 60px 24px 40px;
  text-align: center;
  margin-top: 72px;
}
.page-header-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.page-header-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
}

/* ===== Manufacturer Card ===== */
.mfr-card-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 4px;
}
.mfr-card-info svg { flex-shrink: 0; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .profile-header { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .navbar-menu { display: none; }
  .navbar-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 400px; padding: 60px 24px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cards-grid,
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-image { flex: none; width: 100%; }
  .industry-card { flex-direction: column !important; }
  .industry-card-image { flex: none; width: 100%; height: 200px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; }
  .cant-find { flex-direction: column; text-align: center; }
  .filters-bar { flex-direction: column; }
  .filter-select { width: 100%; }
  .profile-details { grid-template-columns: 1fr; }
  .profile-actions { flex-direction: column; }
  .profile-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .cards-grid,
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-body { padding: 12px; }
  .card-title { font-size: 1rem; }
  .card-text { font-size: 0.8rem; }
  .card-image { height: 140px; }
  .hero-title { font-size: 1.75rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-thumbs { flex-wrap: wrap; }
  .profile-thumb { width: 60px; height: 45px; }
}

/* WordPress-specific styles */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.admin-bar .navbar {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .navbar {
    top: 46px;
  }
}

/* ===== Page Hero ===== */
.page-hero {
  background: var(--light-bg);
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.125rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-mid); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .active { color: var(--navy); font-weight: 600; }

/* ===== About Mission ===== */
.about-mission {
  display: flex;
  align-items: center;
  gap: 48px;
}
.about-mission-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}
.about-mission-img img {
  width: 100%;
  height: auto;
  display: block;
}
.about-mission-text {
  flex: 1;
}
.about-mission-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.about-mission-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===== Team Grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--light-bg);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ===== Blog Styles ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light-bg);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 12px;
}
.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-title a:hover {
  color: var(--red);
}
.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===== FAQ Styles ===== */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.faq-category-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.faq-category-btn:hover,
.faq-category-btn.active {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--light-bg);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--light-bg);
}
.faq-question-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===== Responsive for new styles ===== */
@media (max-width: 768px) {
  .page-hero h1 { font-size: 2rem; }
  .about-mission { flex-direction: column; gap: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .faq-categories { flex-direction: column; align-items: stretch; }
  .faq-category-btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 1.75rem; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-avatar { width: 100px; height: 100px; }
}
