/* ============================================
   VIVISCAPE – REFINED AESTHETIC STYLES
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:       #0b1d35;
  --navy-mid:   #0f2847;
  --navy-light: #14355c;
  --orange:     #e8833a;
  --orange-light: #f4a261;
  --orange-hover: #d6722c;
  --orange-glow: rgba(232, 131, 58, 0.25);
  --white:      #ffffff;
  --off-white:  #f8f9fc;
  --gray-100:   #f1f3f7;
  --gray-200:   #e2e6ed;
  --gray-400:   #a0a8b8;
  --gray-600:   #5a6275;
  --gray-800:   #2d3142;
  --font-primary:   'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease-out);
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  color: var(--gray-600);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--gray-800);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-orange   { color: var(--orange) !important; }
.text-navy     { color: var(--navy) !important; }
.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- READING PROGRESS ---------- */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---------- SECTION LABEL ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-label--light {
  color: var(--orange-light);
}

.section-label--light::before {
  background: var(--orange-light);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn i {
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: var(--white);
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--orange-glow);
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  z-index: -1;
  filter: blur(15px);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-glow:hover::after {
  opacity: 0.5;
}

.btn-outline-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1rem;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
}

.logo img {
  height: 44px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2px;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav ul li a:hover {
  color: var(--orange);
  background: rgba(232, 131, 58, 0.06);
}

.main-nav ul li a i {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

/* Nav CTA button */
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
}

.nav-cta:hover {
  background: var(--orange) !important;
}

/* Dropdown */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  flex-direction: column;
  border: 1px solid var(--gray-200);
}

.dropdown li a {
  padding: 10px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-toggle {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--gray-600);
  cursor: pointer;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.search-toggle:hover {
  color: var(--orange);
  background: var(--gray-100);
}

/* Search overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--gray-200);
  display: none;
}

.search-overlay.active { display: block; }

.search-form {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
}

.search-form input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--gray-200);
  border-right: none;
  border-radius: 50px 0 0 50px;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--gray-100);
}

.search-form input:focus {
  border-color: var(--orange);
  background: var(--white);
}

.search-form button {
  padding: 12px 22px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: background var(--transition);
}

.search-form button:hover {
  background: var(--orange-hover);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 29, 53, 0.95) 0%,
    rgba(15, 40, 71, 0.88) 40%,
    rgba(11, 29, 53, 0.92) 100%
  );
}

/* Decorative glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow--1 {
  width: 500px;
  height: 500px;
  background: rgba(232, 131, 58, 0.12);
  top: 10%;
  right: -10%;
}

.hero-glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(100, 149, 237, 0.08);
  bottom: 10%;
  left: -10%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 131, 58, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(232, 131, 58, 0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.trust-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-image {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(232, 131, 58, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Scroll indicator - mouse */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--orange);
  border-radius: 3px;
  animation: scroll-anim 2s ease infinite;
}

@keyframes scroll-anim {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* Section divider */
.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.section-divider--hero {
  color: var(--white);
}

.section-divider svg {
  width: 100%;
  height: 60px;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-top: 8px;
  font-weight: 500;
}

/* ---------- TRUST SECTION ---------- */
.trust-section {
  background: linear-gradient(160deg, var(--orange) 0%, #d47130 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.trust-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}

.trust-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}

.trust-header h2 .text-navy {
  color: var(--navy);
}

.trust-header p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.8;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Shine effect on hover */
.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.trust-card:hover .card-shine {
  transform: rotate(45deg) translateX(40%);
}

.trust-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.trust-icon {
  font-size: 2.2rem;
}

.trust-card h3 {
  font-size: 0.98rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Decorative dots */
.deco-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.15;
  background-image: radial-gradient(circle, var(--white) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}

.deco-dots--left  { top: 40px; left: 40px; }
.deco-dots--right { bottom: 40px; right: 40px; }

/* ---------- SOLUTIONS SECTION ---------- */
.solutions-section {
  background: var(--navy);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.solutions-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.solutions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}

.solutions-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
}

.solutions-desc p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  border-color: rgba(232, 131, 58, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.solution-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.solution-card:hover .solution-card-glow {
  opacity: 1;
}

.solution-number {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}

.solution-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: 0 8px 20px var(--orange-glow);
}

.solution-card h3 {
  font-size: 1.12rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.card-link i {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.card-link:hover {
  gap: 10px;
}

.card-link:hover i {
  transform: translateX(2px);
}

/* ---------- CASE STUDIES ---------- */
.case-studies-section {
  padding: 110px 0;
  background: var(--off-white);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.02rem;
  color: var(--gray-600);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.case-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: height var(--transition);
}

.case-card:hover .case-card-accent {
  height: 5px;
}

.case-card-inner {
  padding: 32px 28px;
}

.case-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 131, 58, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 20px;
}

.case-card h3 {
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.35;
}

.case-card .arrow {
  color: var(--gray-400);
}

.case-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.case-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.metric-value {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 500;
}

.section-cta {
  text-align: center;
}

/* ---------- PROCESS SECTION ---------- */
.process-section {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.process-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 131, 58, 0.06), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.process-section .section-header {
  margin-bottom: 64px;
}

.process-title {
  color: var(--white) !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  text-align: center;
  padding: 36px 28px;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 62px;
  right: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 131, 58, 0.25));
}

.process-step:last-child .step-connector {
  display: none;
}

.step-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 8px 25px var(--orange-glow);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 700;
}

.process-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ---------- DISCOVERY BANNER ---------- */
.discovery-banner {
  background: var(--white);
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}

.discovery-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.discovery-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 131, 58, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.discovery-banner h3 {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.5;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-shape--1 {
  width: 400px;
  height: 400px;
  background: rgba(232, 131, 58, 0.06);
  top: -100px;
  right: -100px;
}

.cta-shape--2 {
  width: 300px;
  height: 300px;
  background: rgba(100, 149, 237, 0.04);
  bottom: -80px;
  left: -80px;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo img {
  height: 44px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
}

.footer-badge { margin-top: 24px; }

.footer-badge img {
  height: 64px;
  border-radius: var(--radius-sm);
  opacity: 0.9;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-nav ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width var(--transition);
  margin-right: 0;
}

.footer-nav ul li a:hover {
  color: var(--white);
}

.footer-nav ul li a:hover::before {
  width: 12px;
  margin-right: 8px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.88rem;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(232, 131, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* News items */
.news-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.news-item img {
  width: 68px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.news-item a {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 4px;
  line-height: 1.45;
  transition: color var(--transition);
}

.news-item a:hover {
  color: var(--orange);
}

.news-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.heart { color: #e74c3c; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--orange); }

.footer-links span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
}

.social-links {
  display: flex;
  gap: 6px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-links a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--orange-glow);
  border-color: transparent;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--orange-glow);
}

/* ---------- ANIMATIONS ---------- */
.animate-fade-in {
  animation: fadeIn 0.8s var(--ease-out) forwards;
  opacity: 0;
}

.animate-fade-up {
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .trust-grid       { grid-template-columns: repeat(2, 1fr); }
  .solutions-header { grid-template-columns: 1fr; gap: 30px; }
  .solutions-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-grid     { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .step-connector   { display: none; }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .main-nav.active { transform: translateY(0); }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav ul li a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    display: none;
    border: none;
  }

  .has-dropdown.open .dropdown { display: flex; }

  .hero {
    min-height: auto;
    padding: 110px 20px 80px;
  }

  .hero h1 { font-size: 2.2rem; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .trust-line { display: none; }

  .trust-grid,
  .solutions-grid,
  .cases-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-connector { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .discovery-inner {
    flex-direction: column;
    text-align: center;
  }

  .scroll-indicator { bottom: 80px; }
}

@media (max-width: 480px) {
  .btn {
    padding: 13px 24px;
    font-size: 0.88rem;
  }

  .trust-card,
  .solution-card,
  .case-card-inner,
  .process-step {
    padding: 24px 20px;
  }

  .stat-number { font-size: 2.4rem; }
}

/* ============================================
   SUB-PAGE STYLES
   ============================================ */

/* ---------- PAGE HERO (Sub-pages) ---------- */
.page-hero {
  position: relative;
  padding: 160px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.page-hero--compact {
  padding: 140px 24px 60px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(232, 131, 58, 0.08), transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- CONTENT SECTIONS ---------- */
.content-section {
  padding: 100px 0;
  position: relative;
}

.content-section--dark {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.text-white { color: var(--white) !important; }

/* ---------- TWO-COLUMN GRID ---------- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col-grid h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
}

.two-col-grid p {
  margin-bottom: 20px;
  line-height: 1.85;
}

/* ---------- ABOUT HIGHLIGHTS ---------- */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 131, 58, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.highlight-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ---------- VALUES GRID ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  border-color: rgba(232, 131, 58, 0.2);
}

.value-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(232, 131, 58, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}

.value-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ---------- FEATURES GRID ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(232, 131, 58, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ---------- SERVICES DETAIL ---------- */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-detail-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-detail-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 20px var(--orange-glow);
}

.service-detail-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-detail-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.service-features {
  list-style: none;
  margin-bottom: 16px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 4px 0;
}

.service-features li i {
  color: var(--orange);
  font-size: 0.7rem;
}

/* ---------- FEATURES LIST (vertical) ---------- */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.feature-list-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 131, 58, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-list-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.feature-list-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- COMPARISON GRID ---------- */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.comparison-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-card ul {
  list-style: none;
}

.comparison-card ul li {
  padding: 8px 0;
  font-size: 0.92rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-card ul li:last-child {
  border-bottom: none;
}

.comparison-card--custom {
  background: rgba(232, 131, 58, 0.08);
  border: 1px solid rgba(232, 131, 58, 0.2);
}

.comparison-card--custom h3 {
  color: var(--orange);
}

.comparison-card--custom h3 i {
  color: var(--orange);
}

.comparison-card--custom li {
  color: rgba(255, 255, 255, 0.75);
}

.comparison-card--shelf {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-card--shelf h3 {
  color: var(--gray-400);
}

.comparison-card--shelf h3 i {
  color: #e74c3c;
}

.comparison-card--shelf li {
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- AI STATS ---------- */
.ai-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ai-stat-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.ai-stat-value {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  letter-spacing: -0.02em;
}

.ai-stat-label {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 4px;
  display: block;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.contact-form-main .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.form-status--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-status--error {
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235a6275' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Contact Info Sidebar */
.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(232, 131, 58, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.contact-info-item a {
  color: var(--gray-800);
  font-weight: 500;
  font-size: 0.92rem;
}

.contact-info-item a:hover {
  color: var(--orange);
}

.social-links--contact {
  gap: 8px;
}

.social-links--contact a {
  background: rgba(232, 131, 58, 0.08);
  color: var(--orange);
  border: 1px solid rgba(232, 131, 58, 0.15);
}

.social-links--contact a:hover {
  background: var(--orange);
  color: var(--white);
}

/* Social links CTA variant */
.social-links--cta {
  justify-content: center;
  gap: 12px;
}

.social-links--cta a {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
  background: var(--navy);
  border: 1px solid rgba(11, 29, 53, 0.2);
}

/* Map Section */
.map-section {
  line-height: 0;
}

.map-section iframe {
  width: 100%;
  display: block;
}

/* ---------- EXPECT ITEMS (Consultation) ---------- */
.expect-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.expect-item:last-child {
  margin-bottom: 0;
}

.expect-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.expect-item h4 {
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.expect-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---------- NEWS PAGE ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.news-card-image {
  height: 200px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.placeholder-image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.15);
}

.news-card-content {
  padding: 24px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-card-date {
  font-size: 0.78rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  background: rgba(232, 131, 58, 0.08);
  padding: 3px 10px;
  border-radius: 50px;
}

.news-card-content h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card-content h3 a {
  color: var(--gray-800);
  transition: color var(--transition);
}

.news-card-content h3 a:hover {
  color: var(--orange);
}

.news-card-content > p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ---------- ABOUT VIDEO ---------- */
.about-video {
  max-width: 680px;
  margin: 0 auto;
}

.about-video video {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* ---------- ARTICLE PAGE ---------- */
.article-featured-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.article-hero {
  padding: 140px 20px 50px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
}

.article-hero h1 {
  color: var(--white);
  font-size: 2.2rem;
  max-width: 800px;
  margin-bottom: 20px;
}

.article-breadcrumb {
  margin-bottom: 20px;
}

.article-breadcrumb a,
.article-breadcrumb span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.article-breadcrumb a {
  color: var(--orange-light);
  text-decoration: none;
  transition: color var(--transition);
}

.article-breadcrumb a:hover {
  color: var(--orange);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.article-date,
.article-author,
.article-category {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.article-date i,
.article-author i,
.article-category i {
  margin-right: 6px;
  color: var(--orange);
}

.article-body {
  padding: 60px 0;
}

.article-body .container {
  max-width: 800px;
}

.article-body h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--navy);
}

.article-body h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.article-body p {
  margin-bottom: 18px;
  line-height: 1.85;
}

.article-body ul,
.article-body ol {
  margin-bottom: 18px;
  padding-left: 24px;
}

.article-body ul li,
.article-body ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.article-body a {
  color: var(--orange);
  font-weight: 500;
}

.article-body a:hover {
  text-decoration: underline;
}

.article-body .btn-primary {
  color: var(--white);
  text-decoration: none;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.article-table th,
.article-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--gray-200);
}

.article-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
}

.article-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

.article-table tbody tr:hover {
  background: rgba(232, 131, 58, 0.06);
}

.article-cta {
  margin-top: 48px;
  padding: 36px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
  text-align: center;
}

.article-cta h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--navy);
}

.article-cta p {
  margin-bottom: 20px;
  color: var(--gray-600);
}

.article-nav {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.article-nav a {
  font-size: 0.9rem;
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.article-nav a:hover {
  color: var(--orange-hover);
}

@media (max-width: 768px) {
  .article-hero { padding: 120px 20px 40px; }
  .article-hero h1 { font-size: 1.6rem; }
  .article-nav { flex-direction: column; }
}

/* ---------- FAQ PAGE ---------- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--orange);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  transition: all var(--transition);
}

.faq-question:hover {
  color: var(--orange);
}

.faq-question i {
  font-size: 0.8rem;
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.faq-answer p a {
  color: var(--orange);
  font-weight: 500;
}

.faq-answer p a:hover {
  text-decoration: underline;
}

/* ---------- LEGAL CONTENT ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 36px;
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--navy);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.85;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--orange);
  font-weight: 500;
}

.legal-content a:hover {
  text-decoration: underline;
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  padding: 2px 0;
}

/* ---------- SUB-PAGE RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .two-col-grid        { grid-template-columns: 1fr; gap: 40px; }
  .values-grid          { grid-template-columns: repeat(2, 1fr); }
  .features-grid        { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .comparison-grid      { grid-template-columns: 1fr; }
  .contact-grid         { grid-template-columns: 1fr; }
  .news-grid            { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero       { padding: 120px 20px 60px; }
  .content-section { padding: 70px 0; }
  .values-grid     { grid-template-columns: 1fr; }
  .ai-stats        { grid-template-columns: repeat(2, 1fr); }
  .news-grid       { grid-template-columns: 1fr; }

  .service-detail-card {
    flex-direction: column;
  }

  .contact-form-main .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ai-stats { grid-template-columns: 1fr; }
}
