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

:root {
  --primary: #c41e3a;
  --primary-dark: #a01530;
  --primary-light: #e84057;
  --gold: #d4a843;
  --gold-dark: #b8902f;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --gray-bg: #f5f7fa;
  --text: #333;
  --text-light: #666;
  --text-lighter: #999;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

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

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* ========== Header ========== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: var(--transition);
}

.logo-subtitle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  transition: var(--transition);
}

#header.scrolled .logo-title {
  color: var(--text);
}

#header.scrolled .logo-subtitle {
  color: var(--text-lighter);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
}

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

.nav a:hover {
  color: var(--white);
}

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

#header.scrolled .nav a {
  color: var(--text-light);
}

#header.scrolled .nav a:hover {
  color: var(--primary);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: var(--transition);
}

#header.scrolled .header-phone {
  color: var(--text);
}

#header.scrolled .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

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

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

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

#header.scrolled .mobile-toggle span {
  background: var(--text);
}

/* ========== Hero ========== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 168, 67, 0.1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 80px;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(196, 30, 58, 0.2);
  border: 1px solid rgba(196, 30, 58, 0.4);
  border-radius: 100px;
  color: #ff6b7a;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold), #f0c674);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.hero-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
}

.hero-stat-unit {
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
}

.hero-stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.hero-scroll span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* ========== Sections ========== */
.section {
  padding: 80px 0;
}

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

.section-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

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

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

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

.section-desc {
  font-size: 16px;
  color: var(--text-light);
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ========== Advantages ========== */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(196, 30, 58, 0.1);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(212, 168, 67, 0.1));
  border-radius: 16px;
  color: var(--primary);
  margin-bottom: 20px;
}

.advantage-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== Services Tabs ========== */
.service-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.service-tab-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.service-tab-btn {
  padding: 12px 28px;
  border: 2px solid #e0e0e0;
  background: var(--white);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

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

.service-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.service-panel {
  display: none;
}

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

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

.service-panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
}

.service-mockup {
  perspective: 1000px;
}

.mockup-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-hover);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: var(--transition);
}

.mockup-card:hover {
  transform: rotateY(0) rotateX(0);
}

.mockup-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(196, 30, 58, 0.1);
  color: var(--primary);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.mockup-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.mockup-company {
  font-size: 13px;
  color: var(--text-lighter);
  margin-bottom: 10px;
}

.mockup-salary {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.mockup-original {
  font-size: 14px;
  color: var(--text-lighter);
  text-decoration: line-through;
  font-weight: 400;
}

.mockup-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mockup-tags span {
  padding: 4px 10px;
  background: var(--gray-bg);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-light);
}

/* ========== Stats ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-block {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.stat-block:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 67, 0.3);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-plus,
.stat-percent {
  font-size: 24px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== Partner ========== */
.partner-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.partner-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.partner-feature-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
}

.partner-feature-body h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.partner-feature-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.partner-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow-hover);
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.partner-card-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.partner-card-pricing {
  margin-bottom: 8px;
}

.partner-card-price {
  font-size: 14px;
  color: var(--text-light);
}

.partner-price-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
}

.partner-card-period {
  font-size: 16px;
  color: var(--text-light);
}

.partner-card-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.partner-card-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.partner-card-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--gray-bg);
}

.partner-card-list li:last-child {
  border-bottom: none;
}

.partner-card-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-lighter);
}

/* ========== Cases ========== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

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

.case-quote {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 64px;
  font-family: Georgia, serif;
  color: rgba(196, 30, 58, 0.1);
  line-height: 1;
}

.case-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  min-height: 100px;
}

.case-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
}

.case-author-info {
  display: flex;
  flex-direction: column;
}

.case-name {
  font-size: 15px;
  font-weight: 600;
}

.case-role {
  font-size: 12px;
  color: var(--text-lighter);
}

/* ========== Process ========== */
.process-steps {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.process-step-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.process-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  font-size: 24px;
  color: var(--text-lighter);
}

/* ========== Contact ========== */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 20px;
}

.contact-item-body {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.contact-item-value {
  font-size: 15px;
  color: var(--white);
}

.qr-card {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.qr-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

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

.qr-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.qr-sublabel {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ========== Footer ========== */
.footer {
  background: #0d1117;
  padding: 60px 0 24px;
}

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

.footer-col-brand .logo-title,
.footer-col-brand .logo-subtitle {
  color: var(--white);
}

.footer-desc {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ========== Float Bar ========== */
.float-bar {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.float-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  gap: 2px;
}

.float-item:hover {
  background: var(--primary);
  transform: translateX(-4px);
}

.float-item:hover .float-icon,
.float-item:hover .float-text {
  color: var(--white);
}

.float-icon {
  font-size: 20px;
  color: var(--primary);
  transition: var(--transition);
}

.float-text {
  font-size: 11px;
  color: var(--text-light);
  transition: var(--transition);
}

.float-top {
  opacity: 0;
  pointer-events: none;
}

.float-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ========== Scroll Progress Bar ========== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  z-index: 1001;
  transition: width 0.1s ease;
  box-shadow: 0 0 8px rgba(196, 30, 58, 0.5);
}

/* ========== Hero Particles ========== */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-200px) translateX(40px);
    opacity: 0;
  }
}

/* ========== Hero Title Shimmer ========== */
.hero-title span {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    #f0c674 25%,
    #fff 50%,
    #f0c674 75%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ========== Hero Badge Float ========== */
.hero-badge {
  animation: badgeFloat 3s ease-in-out infinite;
}

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

/* ========== Nav Active ========== */
.nav a.nav-active {
  color: var(--primary) !important;
  font-weight: 700;
}

.nav a.nav-active::after {
  width: 100% !important;
}

/* ========== Advantage Card Glow Border ========== */
.advantage-card,
.case-card {
  position: relative;
  overflow: hidden;
}

.advantage-card::before,
.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, transparent, rgba(196, 30, 58, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.advantage-card:hover::before,
.case-card:hover::before {
  opacity: 1;
}

/* ========== Stat Number Glow ========== */
.stat-number {
  text-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
  animation: statGlow 3s ease-in-out infinite alternate;
}

@keyframes statGlow {
  from { text-shadow: 0 0 20px rgba(212, 168, 67, 0.3); }
  to { text-shadow: 0 0 40px rgba(212, 168, 67, 0.6), 0 0 60px rgba(196, 30, 58, 0.2); }
}

/* ========== Dark Section Animated Orbs ========== */
.section-dark {
  position: relative;
  overflow: hidden;
}

.section-dark::before,
.section-dark::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.section-dark::before {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -100px;
  right: 10%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.section-dark::after {
  width: 250px;
  height: 250px;
  background: var(--gold);
  bottom: -80px;
  left: 10%;
  animation: orbFloat2 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-60px, 40px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -50px); }
}

/* ========== Contact Section Orbs ========== */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(100px);
  opacity: 0.1;
  top: -120px;
  left: -50px;
  animation: orbFloat2 18s ease-in-out infinite;
}

/* ========== Process Step Glow ========== */
.process-step-num {
  position: relative;
}

.process-step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(196, 30, 58, 0.3);
  animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ========== Partner Card Shimmer Top ========== */
.partner-card::before {
  background-size: 200% 100%;
  animation: shimmerBar 3s linear infinite;
}

@keyframes shimmerBar {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ========== Float Item Pulse ========== */
.float-item:first-child {
  animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(196, 30, 58, 0); }
}

/* ========== Wave Divider ========== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.wave-divider-flip svg {
  transform: rotate(180deg);
}

/* ========== Service Tab Button Glow ========== */
.service-tab-btn.active {
  position: relative;
  animation: tabActiveGlow 2s ease-in-out infinite alternate;
}

@keyframes tabActiveGlow {
  from { box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3); }
  to { box-shadow: 0 4px 24px rgba(196, 30, 58, 0.5); }
}

/* ========== Animations ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Hero Entrance ========== */
.hero-badge {
  opacity: 0;
  animation: none;
}

.hero-title {
  opacity: 0;
}

.hero-desc {
  opacity: 0;
}

.hero-actions {
  opacity: 0;
}

.hero-stats {
  opacity: 0;
}

/* ========== Responsive ========== */
@media (max-width: 968px) {
  .nav,
  .header-right {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat-sep {
    display: none;
  }

  .hero-stat-num {
    font-size: 28px;
  }

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

  .service-panel-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .partner-content {
    grid-template-columns: 1fr;
  }

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

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: 320px;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

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

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

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

  .section-title {
    font-size: 26px;
  }

  .float-bar {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .stat-number {
    font-size: 32px;
  }
}

/* ========== Nav Mobile ========== */
@media (max-width: 968px) {
  .nav {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 30px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav a {
    padding: 16px 0;
    font-size: 18px;
    color: var(--text) !important;
    border-bottom: 1px solid #eee;
  }

  .nav a::after {
    display: none;
  }
}
