/* ========== CSS VARIABLES (Design System) ========== */
:root {
  --color-primary: #0E7C7B;
  --color-primary-rgb: 14, 124, 123;
  --color-primary-light: #12A3A2;
  --color-primary-dark: #095B5A;
  --color-secondary: #9E9285;
  --color-secondary-rgb: 158, 146, 133;
  --color-secondary-light: #B5ACA2;
  --color-secondary-dark: #7A7068;
  --color-accent: #C8A96E;
  --color-accent-rgb: 200, 169, 110;
  --color-dark: #1A1F25;
  --color-dark-rgb: 26, 31, 37;
  --color-title: #2C3338;
  --color-text: #5A6068;
  --color-meta: #8A9199;
  --color-border: #D8DDE3;
  --color-bg-alt: #F4F6F8;
  --color-bg: #FAFBFC;
  --color-white: #FFFFFF;
  --color-success: #2E8B57;
  --gradient-primary: linear-gradient(135deg, #0E7C7B 0%, #12A3A2 100%);
  --gradient-warm: linear-gradient(135deg, #9E9285 0%, #C8A96E 100%);
  --gradient-dark: linear-gradient(135deg, #1A1F25 0%, #2C3338 100%);
  --gradient-hero: linear-gradient(160deg, #0a1015 0%, #1A1F25 45%, rgba(14,124,123,0.45) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  --font-display: 'BreadleySans', Georgia, serif;
  --font-body: 'Roboto Condensed', 'Segoe UI', sans-serif;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 30px rgba(14,124,123,0.3);
  --shadow-glow-strong: 0 0 60px rgba(14,124,123,0.5);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.88); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ========== LAYOUT UTILITIES ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 var(--space-xl);
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-title);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}
.section-title--white { color: var(--color-white); }
.section-label--accent { color: var(--color-accent); }
.section-intro {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.75;
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: var(--space-2xl); }
.section-header .section-label { display: block; text-align: center; }
.section-header .section-intro { margin: 0 auto; }

/* ========== ANIMATED MESH BG ========== */
.mesh-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.mesh-bg::before, .mesh-bg::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(100px); animation: meshMove 20s ease-in-out infinite alternate;
}
.mesh-bg::before { width: 600px; height: 600px; background: rgba(14,124,123,0.15); top: -200px; right: -100px; }
.mesh-bg::after { width: 500px; height: 500px; background: rgba(158,146,133,0.1); bottom: -200px; left: -100px; animation-delay: -10s; }
@keyframes meshMove { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(80px,60px) scale(1.2); } }

/* ========== FLOATING PARTICLES ========== */
.bg-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bg-particles span { position: absolute; width: 4px; height: 4px; background: rgba(14,124,123,0.4); border-radius: 50%; animation: floatParticle 12s infinite ease-in-out; }
.bg-particles span:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: -2s; animation-duration: 16s; background: rgba(158,146,133,0.3); }
.bg-particles span:nth-child(3) { width: 3px; height: 3px; left: 40%; animation-delay: -4s; animation-duration: 10s; }
.bg-particles span:nth-child(4) { width: 5px; height: 5px; left: 60%; animation-delay: -6s; animation-duration: 14s; background: rgba(200,169,110,0.3); }
.bg-particles span:nth-child(5) { width: 4px; height: 4px; left: 80%; animation-delay: -8s; animation-duration: 18s; }
.bg-particles span:nth-child(6) { width: 7px; height: 7px; left: 10%; animation-delay: -1s; animation-duration: 20s; background: rgba(14,124,123,0.2); }
.bg-particles span:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: -3s; animation-duration: 11s; }
.bg-particles span:nth-child(8) { width: 5px; height: 5px; left: 90%; animation-delay: -7s; animation-duration: 15s; background: rgba(158,146,133,0.2); }
@keyframes floatParticle { 0%,100% { transform: translateY(100vh) scale(0); opacity: 0; } 10%,90% { opacity: 1; } 50% { transform: translateY(-10vh) scale(1); } }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--radius-full);
  border: 2px solid transparent; cursor: pointer;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
}
.btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,255,255,0.15),transparent); opacity: 0; transition: opacity 0.4s; }
.btn:hover::before { opacity: 1; }
.btn:focus-visible { outline: 3px solid var(--color-primary-light); outline-offset: 3px; }
.btn--primary { background: var(--gradient-primary); color: white; box-shadow: 0 4px 20px rgba(14,124,123,0.3); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-strong); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,0.3); color: white; }
.btn--outline:hover { border-color: var(--color-primary-light); background: rgba(14,124,123,0.12); transform: translateY(-3px); }
.btn--ghost { background: transparent; border-color: var(--color-border); color: var(--color-title); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.65); }
.btn--ghost-light:hover { border-color: rgba(14,124,123,0.5); color: var(--color-primary-light); transform: translateY(-2px); }
.btn--accent { background: var(--gradient-warm); color: white; box-shadow: 0 4px 20px rgba(200,169,110,0.3); }
.btn--accent:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(200,169,110,0.4); }
.btn:active { transform: translateY(0) !important; opacity: 0.9; }
.btn--sm { padding: 10px 20px; font-size: 0.75rem; }
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn .ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.3); transform: scale(0); animation: rippleAnim 0.6s linear; pointer-events: none; width: 10px; height: 10px; margin-left: -5px; margin-top: -5px; }
@keyframes rippleAnim { to { transform: scale(40); opacity: 0; } }
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ========== CARD ========== */
.card {
  background: var(--color-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(.22,1,.36,1); position: relative;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.card-image { overflow: hidden; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.card:hover .card-image img { transform: scale(1.08); }
.card-body { padding: var(--space-lg); }
.card-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--color-primary);
  background: rgba(14,124,123,0.08); padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: var(--space-sm);
}
.card-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-title); margin-bottom: var(--space-sm); line-height: 1.3; }
.card-desc { font-size: 0.9rem; color: var(--color-text); line-height: 1.6; }

/* GLASS CARD */
.card--glass { background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); color: white; }
.card--glass::before { display: none; }
.card--glass:hover { background: rgba(255,255,255,0.1); box-shadow: var(--shadow-glow); transform: translateY(-6px); }
.card--glass .card-title { color: white; }
.card--glass .card-desc { color: rgba(255,255,255,0.6); }
.card--glass .card-tag { background: rgba(14,124,123,0.2); color: var(--color-primary-light); }

/* ========== INPUT ========== */
.input-group { margin-bottom: var(--space-lg); }
.input-label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--color-title); margin-bottom: var(--space-sm); }
.input-field { width: 100%; padding: 14px 18px; border: 2px solid var(--color-border); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.95rem; color: var(--color-title); background: var(--color-white); transition: all 0.3s ease; outline: none; }
.input-field:focus { border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(14,124,123,0.1); }
.input-field::placeholder { color: var(--color-meta); }
textarea.input-field { resize: vertical; min-height: 120px; }

/* ========== HEADER / NAV ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px var(--space-xl);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.site-header.scrolled {
  background: rgba(26,31,37,0.97); backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35); padding: 12px var(--space-xl);
}
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); }
.nav-logo img { height: 56px; width: auto; max-width: 200px; display: block; transition: opacity 0.3s; object-fit: contain; }
.nav-logo:hover img { opacity: 0.85; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.2rem; color: white; letter-spacing: -0.5px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: var(--space-lg); }
.nav-links a {
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.72);
  letter-spacing: 0.5px; transition: color 0.3s; position: relative; padding-bottom: 2px;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--color-primary); transform: scaleX(0); transition: transform 0.3s ease; }
.nav-links a:hover, .nav-links a.active, .nav-links a.current-menu-item > a, .nav-links .current-menu-item { color: white; }
.nav-links a:hover::after, .nav-links a.active::after, .nav-links .current-menu-item::after { transform: scaleX(1); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
.nav-hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; display: block; transition: all 0.3s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(26,31,37,0.99); backdrop-filter: blur(20px);
  padding: var(--space-lg) var(--space-xl); border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.78); padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.3s; }
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--color-primary-light); }
.nav-mobile .btn { margin-top: var(--space-md); justify-content: center; }

/* ========== PAGE BANNER (shared by inner pages) ========== */
.page-banner {
  position: relative; min-height: 340px; display: flex; align-items: flex-end;
  padding-top: 100px; padding-bottom: var(--space-3xl);
  background: var(--color-dark); overflow: hidden;
}
.page-banner-bg { position: absolute; inset: 0; z-index: 0; }
.page-banner-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; opacity: 0.18; }
.page-banner-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(10,16,21,0.95) 0%, rgba(26,31,37,0.85) 55%, rgba(14,124,123,0.2) 100%); }
.page-banner-grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: linear-gradient(rgba(14,124,123,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(14,124,123,0.04) 1px, transparent 1px);
  background-size: 60px 60px; animation: gridShift 30s linear infinite;
}
@keyframes gridShift { 0% { transform: translate(0,0); } 100% { transform: translate(60px,60px); } }
.page-banner-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 2; }
.page-banner-glow--1 { width: 400px; height: 400px; background: rgba(14,124,123,0.18); top: -80px; right: 10%; animation: orbPulse 8s ease-in-out infinite alternate; }
.page-banner-glow--2 { width: 280px; height: 280px; background: rgba(158,146,133,0.1); bottom: -60px; left: 5%; animation: orbPulse 10s ease-in-out infinite alternate-reverse; }
@keyframes orbPulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.3); opacity: 1; } }
.page-banner-inner { position: relative; z-index: 5; max-width: 1280px; margin: 0 auto; width: 100%; padding: 0 var(--space-xl); }
.page-banner-content { position: relative; z-index: 5; max-width: 1280px; margin: 0 auto; width: 100%; padding: 0 var(--space-xl); }
.page-banner-title { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); color: white; line-height: 1.0; letter-spacing: -1px; margin-bottom: var(--space-md); }
.page-banner-title .accent { display: block; background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-banner-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 540px; }
.page-banner-deco { display: flex; align-items: center; gap: var(--space-lg); margin-top: var(--space-xl); }
.page-banner-deco-line { flex: 1; max-width: 60px; height: 2px; background: var(--gradient-primary); }
.page-banner-deco-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,124,123,0.15); border: 1px solid rgba(14,124,123,.3); padding: 6px 16px; border-radius: var(--radius-full); font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--color-primary-light); }
.page-banner-deco-badge::before { content: ''; width: 7px; height: 7px; background: var(--color-primary); border-radius: 50%; animation: dotBlink 2s ease-in-out infinite; }
@keyframes dotBlink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.page-banner .section-label--accent { color: var(--color-accent); }
.page-banner .section-title--white { color: var(--color-white); }
.page-banner .section-intro { color: rgba(255,255,255,0.6); }

/* ========== TESTIMONIALS ========== */
.testimonials-section { position: relative; padding: var(--space-3xl) 0; background: var(--color-dark); overflow: hidden; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.testimonial-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: var(--space-xl); transition: all 0.5s cubic-bezier(.22,1,.36,1); position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 16px; right: 22px; font-family: var(--font-display); font-size: 5rem; line-height: 1; color: rgba(14,124,123,0.15); pointer-events: none; }
.testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(14,124,123,0.35); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: var(--space-md); }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--color-accent); }
.testimonial-text { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: var(--space-lg); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: var(--space-md); }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(14,124,123,0.4); }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: white; }
.testimonial-role { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ========== METRICS ========== */
.metrics-section { position: relative; padding: var(--space-3xl) 0; background: var(--color-bg); overflow: hidden; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.metric-card { text-align: center; padding: var(--space-2xl) var(--space-lg); background: var(--color-white); border-radius: var(--radius-lg); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); transition: all 0.5s cubic-bezier(.22,1,.36,1); position: relative; overflow: hidden; }
.metric-card::before { content: ''; position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0; transition: opacity 0.5s ease; }
.metric-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.metric-card:hover::before { opacity: 1; }
.metric-number { font-family: var(--font-display); font-size: clamp(2.8rem, 4vw, 4rem); color: var(--color-primary); line-height: 1; margin-bottom: var(--space-sm); position: relative; z-index: 1; transition: color 0.5s ease; }
.metric-label { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--color-meta); line-height: 1.4; position: relative; z-index: 1; transition: color 0.5s ease; }
.metric-card:hover .metric-number, .metric-card:hover .metric-label { color: white; }

/* ========== CTA BANNER ========== */
.cta-section { position: relative; padding: var(--space-3xl) 0; min-height: 420px; display: flex; align-items: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.cta-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(10,16,21,0.92) 0%, rgba(14,124,123,0.6) 100%); }
.cta-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; text-align: center; padding: 0 var(--space-xl); }
.cta-title { font-size: clamp(2.2rem, 5vw, 3.8rem); text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: var(--space-lg); }
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.75; max-width: 500px; margin: 0 auto var(--space-xl); }
.cta-buttons { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* ========== FAQ ========== */
.faq-section { position: relative; padding: var(--space-3xl) 0; background: var(--color-bg-alt); overflow: hidden; }
.faq-wrap { max-width: 800px; margin: 0 auto; padding: 0 var(--space-xl); }
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item { background: var(--color-white); border-radius: var(--radius-lg); border: 1px solid var(--color-border); overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.faq-item.open { border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(14,124,123,0.06); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); padding: var(--space-lg) var(--space-xl); background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--color-title); text-align: left; transition: color 0.3s ease; }
.faq-btn:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 2px; }
.faq-item.open .faq-btn { color: var(--color-primary); }
.faq-icon { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: rgba(14,124,123,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; }
.faq-icon svg { width: 16px; height: 16px; transition: transform 0.4s cubic-bezier(.22,1,.36,1); }
.faq-item.open .faq-icon { background: var(--color-primary); }
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(.22,1,.36,1); }
.faq-body-inner { padding: 0 var(--space-xl) var(--space-lg); font-size: 0.95rem; color: var(--color-text); line-height: 1.8; }

/* ========== FOOTER ========== */
.site-footer { position: relative; background: rgba(10,13,18,1); padding: var(--space-3xl) 0 var(--space-xl); overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); margin-bottom: var(--space-2xl); align-items: start; text-align: center; }
.footer-links-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); text-align: center; }
.footer-logo { height: 52px; width: auto; max-width: 200px; display: block; margin: 0 auto var(--space-lg); opacity: 0.85; object-fit: contain; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.2rem; color: white; letter-spacing: -0.5px; display: block; margin-bottom: var(--space-lg); }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 420px; margin: 0 auto var(--space-lg); }
.footer-social { display: flex; gap: var(--space-sm); justify-content: center; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--color-primary); border-color: var(--color-primary); }
.footer-social a svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.55); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.footer-social a:hover svg { stroke: white; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: var(--space-lg); }
.footer-links { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--color-primary-light); }
.footer-links li { list-style: none; }
.footer-contact-item { display: flex; align-items: flex-start; gap: var(--space-sm); margin-bottom: 12px; justify-content: center; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--color-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: var(--space-xl); }
.footer-base { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--space-md); text-align: center; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-crm { font-size: 0.75rem; color: rgba(255,255,255,0.2); letter-spacing: 1px; }

/* ========== READING PROGRESS BAR (base — page CSS overrides z-index/bg) ========== */
.reading-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.05); z-index: 1001; pointer-events: none; }
.reading-progress-bar { height: 100%; width: 0; background: var(--gradient-primary); transition: width 0.1s linear; box-shadow: var(--shadow-glow); }

/* ========== CHECKLIST (shared) ========== */
.checklist { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.checklist-item { display: flex; align-items: center; gap: var(--space-md); padding: 12px var(--space-md); background: var(--color-white); border-radius: var(--radius-md); border-left: 3px solid var(--color-primary); box-shadow: var(--shadow-sm); transition: all 0.3s ease; }
.checklist-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.checklist-icon { flex-shrink: 0; color: var(--color-primary); width: 18px; height: 18px; }
.checklist-icon svg { display: block; }
.checklist-item span:last-child { font-size: 0.9rem; font-weight: 700; color: var(--color-title); }

/* ========== FORM ROW ========== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

/* ========== CONTACT FORM (dark variant) ========== */
.contact-form { border-radius: var(--radius-xl); padding: var(--space-2xl); box-shadow: 0 24px 60px rgba(0,0,0,0.45); background: rgba(26,31,37,0.85); backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.09); }
.contact-form .input-label { color: rgba(255,255,255,0.7); }
.contact-form .input-field { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: white; }
.contact-form .input-field::placeholder { color: rgba(255,255,255,0.3); }
.contact-form .input-field:focus { border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(14,124,123,0.2); }
.contact-form .input-field option { background: var(--color-dark); color: white; }

/* ========== GLOBAL RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-cta-desktop { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links-group { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --space-3xl: 64px; }
  .site-header { padding: 14px var(--space-md); }
  .site-header.scrolled { padding: 10px var(--space-md); }
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 var(--space-md); }
  .nav-logo img { height: 42px; max-width: 160px; }
  .btn--lg { padding: 14px 28px; font-size: 0.85rem; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .section-intro { font-size: 0.95rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: var(--space-lg); }
  .testimonial-text { font-size: 0.92rem; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-links-group { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer-base { flex-direction: column; text-align: center; }
  .site-footer { padding: var(--space-2xl) 0 var(--space-lg); }
  .cta-inner { padding: 0 var(--space-md); }
  .faq-wrap { padding: 0 var(--space-md); }
  .contact-form { padding: var(--space-lg); }
  .form-row { grid-template-columns: 1fr; }
  .cta-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .page-banner { min-height: 260px; padding-bottom: var(--space-2xl); }
  .page-banner-inner { padding: 0 var(--space-md); }
  .page-banner-content { padding: 0 var(--space-md); }
  .page-banner-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .nav-cta-desktop { display: none !important; }
  .nav-hamburger { display: flex !important; }
}

@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .btn--lg { padding: 12px 20px; font-size: 0.8rem; }
  .footer-links-group { grid-template-columns: 1fr; }
  .footer-logo { height: 42px; max-width: 160px; }
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
}
