/*
Theme Name: ANSUNCO Sourcing
Theme URI: https://www.ansunco.com
Author: ANSUNCO CO., LTD.
Author URI: https://www.ansunco.com
Description: Professional B2B China sourcing company theme. Navy & Orange design system. Full-featured with custom page templates for Home, About, Services, Cases, Blog, FAQ, and Contact.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ansunco
Tags: business, e-commerce, portfolio, blog, custom-header, custom-menu, full-width-template
*/

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0a2342;
  --navy-dark: #061527;
  --navy-mid: #103060;
  --navy-light: #1a4a7a;
  --orange: #e8720c;
  --orange-light: #f4921e;
  --orange-pale: #fef3e8;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --text: #1e293b;
  --text-muted: #475569;
  --text-on-dark: #f1f5f9;
  --text-on-dark-muted: rgba(255,255,255,0.72);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(10,35,66,0.12);
  --shadow-lg: 0 8px 32px rgba(10,35,66,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', Arial, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-light); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }
.text-center { text-align: center; }
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-block;
  background: var(--orange-pale);
  color: #b85a08;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(22px, 3vw, 34px);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 640px;
  line-height: 1.8;
}
.section-header { margin-bottom: 48px; }
.section-header.text-center { text-align: center; }
.section-header.text-center .section-subtitle { margin: 0 auto; }
.divider {
  width: 48px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px 0;
}
.text-center .divider { margin: 16px auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,114,12,0.35);
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-orange-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-orange-outline:hover {
  background: var(--orange);
  color: var(--white);
}

/* ===== NAVIGATION ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(10,35,66,0.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: var(--white);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text .logo-name {
  display: block;
  font-weight: 900;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}
.logo-text .logo-tagline {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#primary-navigation {
  margin-left: auto;
}
#primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
#primary-navigation ul li a,
#primary-navigation ul li .nav-link {
  background: none;
  border: none;
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: block;
  text-decoration: none;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
#primary-navigation ul li.menu-cta a {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 6px;
  margin-left: 4px;
  font-weight: 700;
}
#primary-navigation ul li.menu-cta a:hover {
  background: var(--orange-light) !important;
  color: var(--white) !important;
}
/* Fallback: target by menu item title for WP auto-generated menus */
#primary-navigation ul li:last-child a,
#primary-menu li:last-child a {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 6px;
  margin-left: 4px;
  font-weight: 700;
}
#primary-navigation ul li:last-child a:hover,
#primary-menu li:last-child a:hover {
  background: var(--orange-light);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  background: var(--navy-dark);
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.mobile-menu ul li a:hover { color: var(--orange-light); }

/* ===== PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 9999;
  transition: width 0.1s linear;
  width: 0%;
}

/* ===== HERO (Homepage) ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,114,12,0.12), transparent 60%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,114,12,0.15);
  border: 1px solid rgba(232,114,12,0.3);
  color: var(--orange-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange-light); }
.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-head);
  display: block;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  display: block;
}
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.hero-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(232,114,12,0.3);
}
.hero-card-icon { font-size: 28px; margin-bottom: 10px; }
.hero-card-title { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.hero-card-text { color: rgba(255,255,255,0.65); font-size: 12px; line-height: 1.5; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-dark);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 108px 0 56px;
  color: var(--white);
  position: relative;
}
.page-hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--white);
  margin: 12px 0 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 680px;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: rgba(255,255,255,0.9); }

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--orange);
}
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-title {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--orange); }
.stat-card-num {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-head);
  display: block;
}
.stat-card-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tq-mark {
  position: absolute;
  top: 12px; right: 20px;
  font-size: 56px;
  color: var(--orange-pale);
  font-family: var(--font-head);
  line-height: 1;
}
.t-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.t-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 18px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.t-name { font-weight: 700; color: var(--navy); font-size: 13px; }
.t-role { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.t-country { font-size: 11px; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange), #c45e08);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-size: clamp(22px, 3vw, 34px);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; }
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CASES GRID ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.case-img {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.case-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.case-body { padding: 20px; }
.case-client { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.case-title { font-size: 16px; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.case-summary { font-size: 13px; color: var(--gray-700); line-height: 1.75; margin-bottom: 14px; }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.case-metric {
  text-align: center;
  background: var(--gray-50);
  border-radius: 8px;
  padding: 8px 4px;
}
.case-metric-val { font-weight: 700; color: var(--navy); font-size: 13px; display: block; }
.case-metric-label { font-size: 10px; color: var(--text-muted); display: block; }
.info-box {
  background: #eff6ff;
  border-left: 3px solid #3b82f6;
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 13px;
}
.highlight-box {
  background: var(--orange-pale);
  border-left: 3px solid var(--orange);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
}

/* ===== FAQ ===== */
.faq-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.faq-cat-btn {
  padding: 7px 16px;
  border-radius: 20px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.faq-item:hover,
.faq-item.open { border-color: var(--orange); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  gap: 16px;
}
.faq-q-text {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.faq-toggle {
  font-size: 22px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-thumb {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-cat-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.blog-body { padding: 24px; }
.blog-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.blog-title {
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: var(--font-head);
}
.blog-title a { color: var(--navy); text-decoration: none; }
.blog-title a:hover { color: var(--orange); }
.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.read-more {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.read-more:hover { color: var(--orange-light); }

/* ===== SINGLE ARTICLE ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.article-h1 {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--navy);
  margin: 12px 0 16px;
  line-height: 1.25;
}
.article-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.article-content { font-size: 16px; line-height: 1.85; color: var(--gray-700); }
.article-content h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 36px 0 14px;
}
.article-content h3 { font-size: 18px; color: var(--navy); margin: 24px 0 10px; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 18px; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
  background: var(--orange-pale);
  border-left: 4px solid var(--orange);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: #7c3d0c;
}
.article-content img { border-radius: var(--radius); margin: 24px 0; }
.article-toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.article-toc h4 { color: var(--navy); font-size: 14px; margin-bottom: 10px; }
.article-toc ol { padding-left: 18px; }
.article-toc li { font-size: 13px; color: var(--orange); margin-bottom: 4px; }
.article-toc a { color: var(--orange); }

/* ===== SIDEBAR ===== */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
}
.sidebar-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}
.sidebar-link {
  display: block;
  padding: 9px 0;
  font-size: 13px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-link:hover { color: var(--orange); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}
.tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
  position: relative;
  padding-left: 48px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -48px; top: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-title { font-size: 16px; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.timeline-time {
  display: inline-block;
  background: rgba(232,114,12,0.1);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-text { font-size: 14px; color: var(--gray-700); line-height: 1.8; margin-bottom: 10px; }
.timeline-detail-item {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}
.timeline-detail-item::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.about-img-block {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.about-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(6,21,39,0.85);
  padding: 16px 20px;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}
.about-stat {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}
.about-stat:hover { border-color: var(--orange); }
.about-stat-num { font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--navy); font-family: var(--font-head); display: block; }
.about-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; display: block; }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 2px; }
.team-role { font-size: 12px; color: var(--orange); font-weight: 600; margin-bottom: 8px; }
.team-bio { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ===== WHY PAGE ===== */
.why-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.why-content h3 { font-size: 16px; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.why-content p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
}
.comparison-table th.highlight { background: var(--orange); }
.comparison-table td { padding: 11px 16px; border-bottom: 1px solid var(--gray-100); }
.comparison-table tr:hover td { background: var(--gray-50); }
.comparison-table .yes { color: #15803d; font-weight: 700; }
.comparison-table .no { color: #dc2626; }
.table-scroll { overflow-x: auto; }

/* ===== GUARANTEE PAGE ===== */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.guarantee-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.guarantee-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.guarantee-icon { font-size: 36px; margin-bottom: 14px; }
.guarantee-title { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.guarantee-text { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ===== CATEGORIES ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.cat-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange); }
.cat-icon { font-size: 40px; margin-bottom: 14px; }
.cat-name { font-size: 18px; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.cat-count { font-size: 12px; color: var(--orange); font-weight: 700; margin-bottom: 10px; display: block; }
.cat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.cat-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.cat-tag {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
}
.cat-spec-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.cat-spec-table td { padding: 5px 0; font-size: 12px; border-bottom: 1px solid var(--gray-100); color: var(--text-muted); }
.cat-spec-table td:first-child { font-weight: 700; color: var(--navy); width: 40%; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--gray-700);
  transition: var(--transition);
  outline: none;
  background: var(--white);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { font-size: 12px; color: #dc2626; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon { font-size: 22px; flex-shrink: 0; }
.contact-info-title { font-weight: 700; color: var(--navy); font-size: 14px; margin-bottom: 4px; }
.contact-info-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: var(--radius) !important;
  font-size: 14px !important;
}
.wpcf7-mail-sent-ok {
  background: #f0fdf4 !important;
  border: 1px solid #86efac !important;
  color: #15803d !important;
}

/* ===== SUBSCRIBE SECTION ===== */
.subscribe-section {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}
.subscribe-section h2 { color: var(--white); font-size: clamp(20px, 3vw, 28px); margin-bottom: 8px; }
.subscribe-section p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.sub-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.sub-form input {
  flex: 1; min-width: 220px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
}
.sub-form input:focus { box-shadow: 0 0 0 2px var(--orange); }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .logo-name { font-size: 18px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 20px; }
.footer-contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav li a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 88px;
  z-index: 900;
  background: #25d366;
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
  font-size: 24px;
  border: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
.scroll-top-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  background: var(--navy);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { background: var(--orange); transform: translateY(-3px); }

/* ===== EXIT MODAL ===== */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6,21,39,0.75);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.exit-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 500px; width: 100%;
  padding: 44px;
  position: relative;
  text-align: center;
}
.exit-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--gray-500);
}
.exit-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: #b85a08;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.exit-box h2 { font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.exit-box > p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.exit-form { display: flex; flex-direction: column; gap: 12px; }
.exit-form input, .exit-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.exit-form input:focus, .exit-form textarea:focus { border-color: var(--orange); }
.exit-form textarea { min-height: 80px; resize: vertical; }
.exit-dismiss {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-decoration: underline;
}
.success-notice {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
}

/* ===== WP PAGINATION ===== */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.pagination .page-numbers.dots { border: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { grid-template-columns: repeat(4, 1fr); }
  .why-hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-img-block { min-height: 200px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  #primary-navigation { display: none; }
  .section { padding: 56px 0; }
  .hero { padding: 108px 0 56px; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .case-metrics { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { right: 20px; bottom: 80px; }
  .scroll-top-btn { right: 20px; bottom: 20px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .hero-visual { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
