/* ============================================
   CRAFTFUL Website - Global Stylesheet
   Strictly following design specs
   ============================================ */

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

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

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

/* --- Brand Colors --- */
:root {
  --purple: #6C5CE7;
  --purple-light: #7C5CFC;
  --purple-dark: #5A4BD1;
  --purple-deep: #3D2C8D;
  --purple-bg: #F3F0FF;
  --purple-bg-light: #F8F6FF;
  --pink: #fd79a8;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --shadow-sm: 0 2px 8px rgba(108, 92, 231, 0.08);
  --shadow-md: 0 4px 16px rgba(108, 92, 231, 0.12);
  --shadow-lg: 0 8px 32px rgba(108, 92, 231, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}
.mt-2 {
  margin-top: 16px;
}
.footer-contact-region h5 {
  margin: 8px 0 4px 0;
  font-size: 14px;
  font-weight: 600;
}
/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--purple);
  letter-spacing: 1px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

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

.nav-menu > a,
.nav-dropdown > a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-menu > a:hover,
.nav-dropdown > a:hover {
  color: var(--purple);
  background: var(--purple-bg);
}

.nav-menu > a.active {
  color: var(--purple);
  background: var(--purple-bg);
  font-weight: 600;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: '▾';
  font-size: 0.7rem;
  margin-left: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--purple);
  background: var(--purple-bg);
  padding-left: 24px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-white {
  background: linear-gradient(135deg, #fff 0%, var(--purple-bg-light) 100%);
}

.hero-purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 50%, var(--purple-dark) 100%);
  color: #fff;
}

.hero-purple-gradient {
  background: linear-gradient(135deg, #4a3aab 0%, #6C5CE7 40%, #7C5CFC 70%, #a78bfa 100%);
  color: #fff;
  position: relative;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-purple h1,
.hero-purple-gradient h1 {
  color: #fff;
}

.hero-white h1 {
  color: var(--gray-900);
}

.hero-content h1 .highlight {
  color: #6C5CE7;
  display: block;
}

.hero-content .hero-desc {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 0;
}

.hero-content .subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 12px;
}

.hero-purple .subtitle,
.hero-purple-gradient .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-purple p,
.hero-purple-gradient p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-image {
  flex: 1;
  max-width: 560px;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Hero with background image */
.hero-bg-image {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-bg-image .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-image .container {
  position: relative;
  z-index: 1;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.btn-white {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

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

.section-white {
  background: #fff;
}

.section-gray {
  background: var(--gray-100);
}

.section-purple {
  background: var(--purple-bg);
}

.section-purple-light {
  background: var(--purple-bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  gap: 24px;
}

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

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

/* --- Cards --- */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #e0d5f5;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-bg);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon-circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6C5CE7;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.card-purple-title h3 {
  color: #6C5CE7;
  font-weight: 600;
}

.card-sub {
  font-size: 0.88rem;
  color: #6c757d;
  line-height: 1.5;
  margin-top: 4px;
}

/* --- Product Cards (Best Sellers) --- */
.product-card {
  background: var(--purple-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e8e0ff;
  transition: all 0.3s ease;
}

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

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

.product-card .product-info {
  padding: 20px;
}

.product-card .product-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 4px;
}

.product-card .product-info .product-subtitle {
  font-size: 0.88rem;
  color: #6c757d;
  font-style: italic;
  margin-top: 2px;
}

/* --- CTA Banner (Purple) --- */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  padding: 60px 0;
  color: #fff;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-banner-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-banner-item img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.cta-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 0.92rem;
  opacity: 0.9;
  margin-bottom: 16px;
  line-height: 1.5;
}

.cta-divider {
  width: 2px;
  height: 80px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* --- Steps Row (How Dropshipping Works) --- */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 260px;
  text-align: center;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
}

.step-card .step-icon {
  width: auto;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card .step-icon img {
  width: auto;
  height: 100px;
  object-fit: contain;
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin-top: 12px;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  color: var(--purple);
  font-size: 1.5rem;
}

.step-arrow::after {
  content: '→';
  font-size: 1.8rem;
  color: var(--purple);
  font-weight: 300;
}

/* --- Split Section --- */
.split-section {
  display: flex;
  align-items: center;
  gap: 50px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
}

.split-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.split-text p {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.7;
}

.split-image {
  flex: 1;
  max-width: 480px;
}

.split-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --- Check List --- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.check-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.check-list li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.check-list .item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.check-list .item-title {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.95rem;
}

.check-list .item-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- Product Categories (Dark Purple BG) --- */
.product-categories {
  background: linear-gradient(135deg, #2D1B69, #3D2C8D, #4a3aab);
  padding: 80px 0;
  color: #fff;
}

.product-categories.product-categories-light {
  background: linear-gradient(135deg, #E8E0F8, #D4C8F0, #C8B8E8);
}

.product-categories.product-categories-light .product-cat-item h4 {
  color: var(--gray-900);
}

.product-categories.product-categories-light .product-cat-item img {
  border-color: rgba(108, 92, 231, 0.2);
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.1);
}

.product-categories .section-title h2 {
  color: #fff;
}

.product-categories.product-categories-light .section-title h2 {
  color: var(--gray-900);
}

.product-categories .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

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

.product-grid .product-cat-item {
  text-align: center;
  transition: all 0.3s ease;
}

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

.product-grid .product-cat-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.product-grid .product-cat-item h4 {
  font-size: 0.92rem;
  font-weight: 500;
  color: #fff;
}

/* --- Sell Worldwide Section --- */
.sell-worldwide-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.sell-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 36px;
}

.sell-title-dark {
  color: var(--gray-900);
}

.sell-title-purple {
  color: var(--purple);
}

.sell-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.sell-stat-item {
  background: var(--purple-bg-light);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.sell-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}

.sell-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.sell-tagline {
  font-size: 0.92rem;
  color: var(--gray-500);
  font-style: italic;
}

/* --- Logistics & Partners Section --- */
.logistics-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 36px;
}

.text-purple {
  color: var(--purple);
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.logo-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  transition: all 0.3s ease;
}

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

.logo-card img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.partners-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 24px;
}

.platform-logos-container {
  text-align: center;
}

/* --- Hero Fluid Decoration --- */
.hero-image {
  position: relative;
}

.hero-fluid-bg {
  position: absolute;
  top: -30px;
  right: -40px;
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at 70% 30%, rgba(108, 92, 231, 0.15) 0%, rgba(108, 92, 231, 0.08) 40%, transparent 70%),
              radial-gradient(ellipse at 30% 70%, rgba(124, 92, 252, 0.12) 0%, rgba(124, 92, 252, 0.05) 35%, transparent 65%);
  border-radius: 50% 60% 40% 70% / 60% 40% 70% 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-image img {
  position: relative;
  z-index: 1;
}

/* --- Logistics & Platform Partners --- */
.partners-section {
  padding: 50px 0;
  background: #fff;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.partners-row img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(0.3);
}

.partners-row img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.platform-logos-wide {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

/* --- Data Cards --- */
.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Service Cards (8 items) --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-bg);
}

.service-card .service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.service-card .service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
}

/* --- FAQ Section --- */
.faq-section {
  padding: 80px 0;
}

/* Header: title left + illustration right */
.faq-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.faq-header-text {
  flex: 1;
}

.faq-header-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.faq-header-image {
  flex: 0 0 340px;
  text-align: center;
}

.faq-header-image img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
}

/* Index List: 10 numbered items */
.faq-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  margin-bottom: 50px;
  padding: 30px 0;
}

.faq-index-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-900);
  font-weight: 500;
}

.faq-index-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.faq-index-text {
  line-height: 1.4;
}

/* Expanded Q&A List */
.faq-list {
  max-width: 900px;
}

.faq-item {
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.faq-q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 0 0 46px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin: 0;
}

/* --- Advantage Rows (About Us - left image right text) --- */
.advantage-rows {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.advantage-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.advantage-row-image {
  flex: 0 0 45%;
  max-width: 520px;
}

.advantage-row-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.advantage-row-content {
  flex: 1;
  background: var(--purple-bg);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
}

.advantage-row-content .section-flag {
  margin-bottom: 12px;
}

.advantage-row-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.advantage-row-content .check-list li {
  color: var(--gray-700);
  font-size: 0.92rem;
  padding: 6px 0;
}

/* --- Why Choose Grid (2x3) --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  text-align: center;
}

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

.why-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- Workflow Cards (How We Work) --- */
.workflow-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.workflow-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
}

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

.workflow-card .wf-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.workflow-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.workflow-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 16px;
}

/* --- Comparison Section --- */
.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.comparison-box {
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-200);
}

.comparison-box.traditional {
  background: var(--gray-100);
}

.comparison-box.our-model {
  background: var(--purple-bg);
  border-color: var(--purple);
}

.comparison-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.comparison-box.traditional h4 {
  color: var(--gray-500);
}

.comparison-box.our-model h4 {
  color: var(--purple);
}

.comparison-box .comp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
}

.comparison-box.traditional .comp-item {
  color: var(--gray-700);
}

.comparison-box.our-model .comp-item {
  color: var(--gray-900);
}

.comparison-box .comp-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* --- Key Benefits Circles --- */
.benefits-circles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-circle {
  text-align: center;
}

.benefit-circle .circle-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: var(--purple-bg);
  padding: 8px;
}

.benefit-circle .circle-ring img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.benefit-circle h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

/* --- Process Flow Section --- */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.process-step {
  background: var(--purple-bg);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  border: 1px solid #e8e0ff;
  min-width: 160px;
}

.process-step h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 4px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.process-arrow {
  font-size: 1.2rem;
  color: var(--purple);
}

/* --- Image Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* --- Location Card --- */
.location-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
}

.location-card img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.location-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.location-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- Purple Feature Banner (USA Local Advantage, etc.) --- */
.feature-banner {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  padding: 60px 0;
  color: #fff;
}

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

.feature-banner-item {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-banner-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 12px;
  filter: brightness(0) invert(1);
}

.feature-banner-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.feature-banner-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-top: 6px;
}

/* --- Core Advantages 3-Column --- */
.core-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- Data Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* --- What We Do List --- */
.whatwedo-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.whatwedo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.whatwedo-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.whatwedo-item span {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* --- Factory Visit Section --- */
.factory-visit {
  background: var(--purple-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.factory-visit h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.factory-visit p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* --- Subscribe Section --- */
.subscribe-section {
  background: var(--gray-100);
  padding: 60px 0;
}

.subscribe-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.subscribe-wrap h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 28px;
  line-height: 1.4;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-700);
  outline: none;
  transition: border-color 0.3s ease;
}

.subscribe-input:focus {
  border-color: var(--purple);
}

.subscribe-input::placeholder {
  color: var(--gray-500);
}

.subscribe-btn {
  white-space: nowrap;
}

/* --- Utility --- */
.text-purple {
  color: var(--purple);
}

/* --- Footer --- */
.footer {
  background: #1a1f3a;
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 0;
}

/* --- Contact US title centered at top --- */
.footer-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
}

/* --- Main 3-column grid --- */
.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 30px;
}

/* --- Address Blocks (left column) --- */
.footer-addresses {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7C5CFC;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.footer-address-block {
  line-height: 1.6;
}

.company-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2px;
}

.company-name-en {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.company-addr {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.company-addr-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Quick Links & Products columns --- */
.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--purple-light);
}

/* --- Contact section inside grid, spans right 2 columns --- */
.footer-contact-section {
  grid-column: 2 / -1;
  margin-top: -140px;
  padding-top: 8px;
  
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.footer-contact-region {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.region-label {
  font-size: 0.88rem;
  font-weight: 500;
  
  color: rgba(255, 255, 255, 0.7);  /* 改成 #fff 就全白高亮 */
  white-space: nowrap;
  padding-top: 2px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-items a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  //color: rgba(255, 255, 255, 0.6);
  color: #fff
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-items a:hover {
  color: var(--purple-light);
}

.contact-items img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Bottom Copyright --- */
.footer-bottom-new {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Old footer styles (backward compat) --- */
.footer-grid {
  display: none;
}

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--purple-light);
}

.footer-contact img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-contact-region h5 {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Scroll Fade In Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Section with Flag Badge --- */
.section-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--purple-bg);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-flag img {
  width: 22px;
  height: 15px;
  object-fit: contain;
  border-radius: 2px;
}

/* --- What You Actually Do (3 columns) --- */
.do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.do-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

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

.do-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.do-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}

/* --- Quick Summary Table --- */
.summary-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.summary-table th {
  background: var(--purple);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.summary-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.88rem;
  color: var(--gray-700);
}

.summary-table tr:nth-child(even) {
  background: var(--gray-100);
}

.summary-table tr:hover {
  background: var(--purple-bg);
}

/* --- For Craft Products Section --- */
.craft-products-section {
  background: linear-gradient(135deg, #E8E0FF 0%, #F3F0FF 40%, #F8F6FF 100%);
  padding: 80px 0;
}

.craft-products-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}

.craft-products-wrap .craft-image {
  flex: 0 0 300px;
}

.craft-products-wrap .craft-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.craft-products-wrap .craft-content {
  flex: 1;
}

.craft-products-wrap .craft-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

/* --- Manufacturing Footprint --- */
.footprint-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footprint-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

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

.footprint-card .fp-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 6px;
}

.footprint-card .fp-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.footprint-tagline {
  text-align: center;
  margin-top: 32px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--purple);
  font-style: italic;
}

.section-purple-gradient {
  background: linear-gradient(135deg, #E8E0F8, #D4C8F0);
}

/* --- China/USA Dual Section --- */
.dual-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.location-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.location-panel .panel-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.location-panel .panel-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-panel .panel-header .panel-badge {
  position: absolute;
  bottom: 12px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.location-panel .panel-badge img {
  width: 20px;
  height: 14px;
  object-fit: contain;
}

.location-panel .panel-body {
  padding: 24px;
}

.location-panel .panel-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.location-panel .panel-body p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- Why Choose Row (4 items) --- */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.why-choose-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.why-choose-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-choose-item span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.5;
}

/* --- Who We Are Layout --- */
.whoweare-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.whoweare-text {
  flex: 1;
}

.whoweare-text p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}

.whoweare-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whoweare-main-img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.whoweare-main-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.whoweare-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.whoweare-thumb-grid img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* --- Hero Brand Name --- */
.hero-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.hero-white .hero-brand-name {
  color: var(--purple);
}

.hero-subtitle-desc {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 12px;
  font-weight: 400;
}

/* --- Section Subtitle --- */
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-purple .section-subtitle {
  color: var(--gray-700);
}

/* --- Flow Illustration (How We Work page) --- */
.flow-illustration {
  text-align: center;
  padding: 40px 0;
}

.flow-illustration img {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* --- Ghost/Character Icons Row --- */
.ghost-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.ghost-item {
  text-align: center;
}

.ghost-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
}

.ghost-item span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-500);
}

/* --- Hero Purple-Pink Gradient (US Factory) --- */
.hero-purple-pink {
  background: url('../images/us-factory/craftful-US-factoty_02.png') no-repeat center center;
  background-size: cover;
  position: relative;
}

.hero-purple-pink h1 {
  color: var(--gray-900);
}

.hero-purple-pink .subtitle {
  color: var(--purple);
}

.hero-purple-pink p {
  color: var(--gray-500);
}

/* --- Service Items (What We do in USA) --- */
.service-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

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

.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.service-item p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- Core Advantages Check List --- */
.core-adv-card {
  background: var(--purple-bg);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8e0ff;
  transition: all 0.3s ease;
}

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

.core-adv-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

.core-adv-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  text-align: center;
}

.adv-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adv-check-list li {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.adv-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- Why This Matters Content --- */
.why-matters-content {
  max-width: 800px;
  margin: 0 auto 40px;
}

.why-intro {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.why-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  counter-reset: step-counter;
}

.why-steps li {
  counter-increment: step-counter;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  padding: 6px 0 6px 32px;
  position: relative;
}

.why-steps li::before {
  content: counter(step-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--purple);
}

.why-highlight {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* --- Data Card with Icon (light purple bg) --- */
.data-card {
  background: var(--purple-bg);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8e0ff;
  transition: all 0.3s ease;
}

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

.data-card .data-icon {
  margin-bottom: 10px;
}

.data-card .data-icon img,
.data-card .data-icon svg {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.7;
}

.data-card .data-icon svg {
  display: block;
  opacity: 0.6;
}

.data-card .data-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 6px;
}

.data-card .data-label {
  font-size: 0.88rem;
  color: var(--gray-500);
}

/* --- Factory Visit Plain (no purple background) --- */
.factory-visit-plain {
  text-align: center;
  padding: 20px 0;
}

.factory-visit-plain h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.factory-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--gray-500);
}

.factory-address .location-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .hero-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    gap: 4px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu > a,
  .nav-dropdown > a {
    display: block;
    padding: 12px 16px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    max-width: 450px;
  }

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

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

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

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

  .cta-banner .container {
    flex-direction: column;
  }

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

  .cta-divider {
    width: 80%;
    height: 2px;
  }

  .steps-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step-arrow {
    display: none;
  }

  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .split-image {
    max-width: 100%;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom-new {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .advantage-row {
    flex-direction: column;
  }

  .advantage-row-image {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .advantage-row-image img {
    height: 220px;
  }

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

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

  .comparison-wrap {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .faq-header {
    flex-direction: column;
    text-align: center;
  }

  .faq-header-image {
    flex: 0 0 auto;
    max-width: 280px;
    margin: 0 auto;
  }

  .faq-index {
    grid-template-columns: 1fr;
  }

  .dual-location {
    grid-template-columns: 1fr;
  }

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

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

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

  .craft-products-wrap {
    flex-direction: column;
  }

  .craft-products-wrap .craft-image {
    flex: 0 0 auto;
    max-width: 280px;
    margin: 0 auto;
  }

  .whoweare-layout {
    flex-direction: column;
  }

  .whoweare-thumb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

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

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

  .sell-worldwide-card {
    padding: 32px 20px;
  }

  .sell-title {
    font-size: 1.8rem;
  }

  .logos-row {
    gap: 16px;
  }

  .logo-card {
    min-width: 140px;
    padding: 14px 18px;
  }

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

  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-contact-section {
    flex-direction: column;
    gap: 16px;
  }

  .footer-contact-region {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom-new {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .cta-banner-item {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-item img {
    width: 100px;
    height: 100px;
  }

  .advantage-rows,
  .why-grid,
  .workflow-cards,
  .service-grid,
  .do-grid,
  .core-adv-grid {
    grid-template-columns: 1fr;
  }

  .advantage-row-content {
    padding: 24px 20px;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .data-grid,
  .benefits-circles,
  .feature-banner-grid,
  .stats-row,
  .footprint-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

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

  .whoweare-layout {
    flex-direction: column;
  }

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

  .whatwedo-list {
    grid-template-columns: 1fr;
  }

  .location-card {
    flex-direction: column;
  }

  .location-card img {
    width: 100%;
    height: 180px;
  }

  .ghost-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-bg-image {
    min-height: 400px;
  }

  .faq-header-text h2 {
    font-size: 1.6rem;
  }

  .faq-header-image {
    max-width: 200px;
  }

  .faq-index {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.88rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sell-stats-grid {
    grid-template-columns: 1fr;
  }

  .sell-stat-number {
    font-size: 1.6rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .why-matters-content {
    padding: 0 10px;
  }

  .factory-address {
    flex-direction: column;
    gap: 4px;
  }
}

/* ============================================
   Service Page - Specific Styles
   ============================================ */

/* --- Hero List (Blue circle checkmark items) --- */
.hero-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin-bottom: 24px;
}

.hero-list-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
}

.hero-list-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Data Card with Purple Circle Icon --- */
.data-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.data-icon-circle svg {
  width: 24px;
  height: 24px;
}

/* --- Our Services Grid (3+3+2) --- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--purple-bg);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid #e8e0ff;
  transition: all 0.3s ease;
}

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

.svc-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.4;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-list li {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
}

/* --- Quick Summary Table Purple Text --- */
.summary-table td.purple-text {
  color: var(--purple);
  font-weight: 500;
}

/* --- CTA / Contact Section --- */
.svc-cta-section {
  background: var(--purple-bg-light);
  padding: 80px 0;
}

.svc-cta-title {
  text-align: center;
  margin-bottom: 48px;
}

.svc-cta-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 4px;
}

.svc-cta-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.svc-cta-image {
  flex: 1;
  max-width: 480px;
}

.svc-cta-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.svc-cta-contact {
  flex: 1;
}

.svc-cta-contact h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--purple);
  display: inline-block;
}

.contact-region {
  margin-bottom: 24px;
}

.contact-region:last-child {
  margin-bottom: 0;
}

.contact-region h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 0.95rem;
  color: var(--gray-700);
}

/* --- Brand Trust Section --- */
.brand-trust-text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.trust-dark {
  color: var(--gray-900);
}

.trust-purple {
  color: var(--purple);
}

.logistics-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.logistics-row img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logistics-row img:hover {
  opacity: 0.8;
}

.official-partners {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.official-partners h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.official-partners .platform-logos-wide {
  width: 100%;
  max-width: 900px;
}

/* --- Service Page Responsive --- */
@media (max-width: 992px) {
  .hero-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .svc-cta-content {
    flex-direction: column;
    gap: 40px;
  }

  .svc-cta-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .logistics-row {
    gap: 24px;
  }
}

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

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-cta-title h2 {
    font-size: 1.4rem;
  }

  .brand-trust-text {
    font-size: 1.2rem;
  }

  .logistics-row {
    gap: 16px;
  }

  .logistics-row img {
    height: 32px;
  }
}
