/* ========================================
   盘店师 - PanDianShi Platform
   Global Stylesheet
   ======================================== */

/* --- CSS Variables --- */
:root {
  --primary: #FF3F2D;
  --primary-dark: #E6351F;
  --orange: #FF8302;
  --blue: #469EFC;
  --green: #46CE37;
  --indigo: #3266FF;
  --dark: #030C16;
  --navy: #07182D;
  --navy-mid: #0D2C58;
  --slate: #657892;
  --silver: #BDC5D0;
  --light-gray: #D3D8DF;
  --off-white: #E9EBEF;
  --white: #FFFFFF;

  --font-main: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(3, 12, 22, 0.08);
  --shadow-md: 0 4px 20px rgba(3, 12, 22, 0.12);
  --shadow-lg: 0 8px 40px rgba(3, 12, 22, 0.16);
  --shadow-xl: 0 16px 60px rgba(3, 12, 22, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(7, 24, 45, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 900;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  transition: all var(--transition);
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--white);
  background: rgba(255, 63, 45, 0.2);
}

.navbar-links a.active {
  background: var(--primary);
}

.navbar-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
}

.navbar-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.open span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 24, 45, 0.9) 0%, rgba(13, 44, 88, 0.6) 50%, rgba(7, 24, 45, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 63, 45, 0.15);
  border: 1px solid rgba(255, 63, 45, 0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(255, 63, 45, 0.3);
  border-radius: 3px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--silver);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 520px;
}

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

.hero-image {
  animation: fadeInRight 1s ease-out 0.3s both;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 63, 45, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 63, 45, 0.5);
}

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

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 131, 2, 0.4);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 131, 2, 0.5);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(70, 158, 252, 0.4);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(70, 158, 252, 0.5);
}

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

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

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

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark p {
  color: var(--silver);
}

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

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

.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-header .section-tag::before,
.section-header .section-tag::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.section-dark .section-header .section-tag {
  color: var(--orange);
}

.section-dark .section-header .section-tag::before,
.section-dark .section-header .section-tag::after {
  background: var(--orange);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

/* --- Page Banner (for inner pages) --- */
.page-banner {
  position: relative;
  padding: 60px 0 40px;
  background: var(--navy);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 24, 45, 0.92) 0%, rgba(13, 44, 88, 0.7) 100%);
  z-index: 2;
}

.page-banner-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.page-banner-text {
  flex: 1;
}

.page-banner-text h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-banner-text p {
  color: var(--silver);
  font-size: 1.15rem;
  max-width: 500px;
}

.page-banner-image {
  flex: 0 0 280px;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Flow Steps --- */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flow-step {
  text-align: center;
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.flow-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.flow-step-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.flow-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  vertical-align: middle;
  flex-shrink: 0;
}

.flow-step h4 {
  margin-bottom: 6px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.flow-step p {
  font-size: 0.9rem;
  color: var(--slate);
}

/* Flow connector arrows */
.flow-step::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 1;
}

.flow-step:nth-child(4n)::after {
  display: none;
}

/* --- Service Cards --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

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

.service-card-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px 32px;
}

.service-card-body .service-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card-body h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card-body p {
  font-size: 0.95rem;
}

/* Service label colors */
.label-red { background: rgba(255, 63, 45, 0.1); color: var(--primary); }
.label-orange { background: rgba(255, 131, 2, 0.1); color: var(--orange); }
.label-blue { background: rgba(70, 158, 252, 0.1); color: var(--blue); }
.label-green { background: rgba(70, 206, 55, 0.1); color: var(--green); }
.label-indigo { background: rgba(50, 102, 255, 0.1); color: var(--indigo); }

/* --- Category Grid --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.category-card {
  text-align: center;
  padding: 9px 16px;
  border-radius: var(--radius-lg);
  background: #f5f8fb;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.category-card.active {
  border-color: #E9EBEF;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-card-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.category-card h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.category-card p {
  font-size: 0.8rem;
  color: var(--slate);
}

/* Category detail panel */
.category-detail {
  margin-top: 20px;
  padding: 6px 0 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: none;
}

.category-detail.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.category-detail h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

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

.category-detail-item {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--off-white);
}

.category-detail-item h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.category-detail-item p {
  font-size: 0.85rem;
  color: var(--slate);
}

/* --- Store Status Cards --- */
.status-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.status-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.status-card-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.status-card h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.status-card p {
  font-size: 0.8rem;
  color: var(--slate);
}

/* --- Plan Cards --- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plan-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.plan-card-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.plan-card h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.plan-card p {
  font-size: 0.9rem;
  color: var(--slate);
}

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

.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

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

.stat-label {
  font-size: 0.95rem;
  color: var(--silver);
}

/* --- Assessor Service Cards --- */
.assessor-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.assessor-service {
  display: flex;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  align-items: flex-start;
}

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

.assessor-service-image {
  width: 200px;
  min-width: 200px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.assessor-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assessor-service-content {
  flex: 1;
}

.assessor-service-content .service-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.assessor-service-content h3 {
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 1.2rem;
}

.assessor-service-content p {
  font-size: 0.9rem;
}

/* --- Qualification Section --- */
.qualify-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.qualify-item {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
}

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

.qualify-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(255, 63, 45, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.qualify-item h4 {
  margin-bottom: 8px;
  color: var(--dark);
}

.qualify-item p {
  font-size: 0.9rem;
  color: var(--slate);
}

/* --- CTA Section --- */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-box {
  padding: 60px 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary), var(--orange));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.8fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--slate);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate);
}

/* --- About Page --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-intro-text h2 {
  margin-bottom: 20px;
}

.about-intro-text p {
  margin-bottom: 16px;
}

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

.contact-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.contact-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.contact-card h4 {
  margin-bottom: 8px;
  color: var(--dark);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--slate);
}

/* --- Data Stats Section --- */
.data-section {
  padding: 80px 0;
  background: var(--navy);
}

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

.data-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.data-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.data-card h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.data-card p {
  color: var(--silver);
  font-size: 0.95rem;
}

.data-card .data-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .flow-step::after {
    display: none;
  }

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

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

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

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

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

  .about-intro {
    grid-template-columns: 1fr;
  }

  .assessor-services {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }

  .navbar-links.open {
    right: 0;
  }

  .navbar-links a {
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
  }

  .navbar-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-content {
    padding: 0 24px;
    gap: 40px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

  .assessor-service {
    flex-direction: column;
  }

  .assessor-service-image {
    width: 100%;
    height: 200px;
  }

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

  .category-detail-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 20px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .page-banner {
    padding: 70px 0 40px;
    min-height: auto;
  }
  
  .page-banner-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .page-banner-text p {
    max-width: 100%;
  }
  
  .page-banner-image {
    flex: 0 0 auto;
    width: 140px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .status-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
