/* ============================================
   GROWTHSPIKE — styles.css  v2
   Space theme · Light blue palette · No icons
   ============================================ */

:root {
  --primary:       #2563EB;
  --primary-light: #60A5FA;
  --primary-dark:  #1D4ED8;
  --accent:        #818CF8;
  --teal:          #06B6D4;
  --dark:          #050A14;
  --dark-card:     #0A1628;
  --dark-alt:      #0F1D33;
  --dark-border:   rgba(96,165,250,0.12);
  --light-bg:      #EFF6FF;
  --border:        #DBEAFE;
  --text:          #0F172A;
  --text-muted:    #64748B;
  --text-light:    rgba(203,213,225,0.85);
  --white:         #FFFFFF;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(37,99,235,0.08);
  --shadow-md: 0 8px 40px rgba(37,99,235,0.14);
  --shadow-glow: 0 0 40px rgba(37,99,235,0.25);
}

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

/* ===== CANVAS STARS ===== */
#star-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.dark-section #star-canvas,
body.dark-bg #star-canvas { opacity: 1; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== SECTION ===== */
.section-pad { padding: 104px 0; }
.bg-light   { background: var(--light-bg); }
.bg-dark    { background: var(--dark); position: relative; overflow: hidden; }
.bg-dark-alt { background: var(--dark-alt); position: relative; overflow: hidden; }
.bg-card    { background: var(--dark-card); }

/* Dark section decoration — subtle radial nebula */
.bg-dark::before, .bg-dark-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(37,99,235,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(129,140,248,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: all 0.22s ease; border: 2px solid transparent;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.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 8px 24px rgba(37,99,235,0.35); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-1px); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-1px); }

.btn-ghost-white { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.15); backdrop-filter: blur(10px); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }

.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION LABELS ===== */
.label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); background: rgba(37,99,235,0.08);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 18px;
  border: 1px solid rgba(37,99,235,0.15);
}
.label-light { color: var(--primary-light); background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.2); }

/* ===== HEADINGS ===== */
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; line-height: 1.06; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
h4 { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.white { color: var(--white); }
.section-desc { font-size: 18px; color: var(--text-muted); max-width: 620px; margin-bottom: 60px; line-height: 1.75; }
.section-desc.light { color: var(--text-light); }

/* ===== GLOWING LINE DIVIDER ===== */
.glow-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 16px 0 28px;
  box-shadow: 0 0 12px rgba(37,99,235,0.5);
}

/* ===== HEADER ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,10,20,0.7); backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}
#header.light-header {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
#header.light-header .nav-item > a,
#header.light-header .logo-text { color: var(--dark); }
#header.light-header .nav-item > a:hover { color: var(--primary); }
#header.light-header .mobile-toggle span { background: var(--dark); }

.header-inner { display: flex; align-items: center; gap: 28px; height: 72px; }

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 36px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 2px; flex: 1; }

.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: rgba(203,213,225,0.9); border-radius: 8px;
  transition: all 0.15s;
}
.nav-item > a:hover { color: var(--white); background: rgba(96,165,250,0.1); }
.nav-arrow { font-size: 10px; opacity: 0.5; transition: transform 0.2s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: rgba(10,22,40,0.95); backdrop-filter: blur(20px);
  border: 1px solid var(--dark-border); border-radius: 14px;
  min-width: 220px; padding: 8px; z-index: 100;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 14px; font-size: 14px;
  color: rgba(203,213,225,0.75); border-radius: 8px; transition: all 0.15s;
}
.dropdown a:hover { color: var(--white); background: rgba(96,165,250,0.12); }
.dropdown-divider { height: 1px; background: var(--dark-border); margin: 6px 0; }

.nav-cta { margin-left: auto; flex-shrink: 0; }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; gap: 2px;
  padding: 16px 20px 24px; border-top: 1px solid var(--dark-border);
  background: rgba(5,10,20,0.98); max-height: 80vh; overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 16px; font-weight: 500; color: rgba(203,213,225,0.85); border-radius: 8px; }
.nav-mobile a:hover { background: rgba(96,165,250,0.1); color: var(--white); }
.nav-mobile .btn { margin-top: 12px; justify-content: center; }
.nav-mobile .mobile-section { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(96,165,250,0.5); padding: 16px 16px 4px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.webp');
  background-size: cover; background-position: center;
  opacity: 0.35; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(5,10,20,0.92) 0%, rgba(5,10,20,0.6) 60%, rgba(5,10,20,0.85) 100%);
}
.hero-nebula {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(37,99,235,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(129,140,248,0.1) 0%, transparent 55%);
}
.hero-content { position: relative; z-index: 3; max-width: 780px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary-light); background: rgba(96,165,250,0.08);
  border: 1px solid rgba(96,165,250,0.2); padding: 7px 18px;
  border-radius: 100px; margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary-light); animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }

.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .text-gradient {
  background: linear-gradient(135deg, #60A5FA 0%, #818CF8 50%, #06B6D4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 19px; color: rgba(203,213,225,0.72); max-width: 560px; line-height: 1.75; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }

.hero-stats { display: flex; gap: 0; padding-top: 48px; border-top: 1px solid rgba(96,165,250,0.15); flex-wrap: wrap; }
.hero-stat { flex: 1; min-width: 120px; padding-right: 32px; }
.hero-stat:not(:last-child) { border-right: 1px solid rgba(96,165,250,0.12); margin-right: 32px; }
.hero-stat strong { display: block; font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 5px; }
.hero-stat span { font-size: 13px; color: rgba(96,165,250,0.65); font-weight: 500; }

/* ===== FLOATING ORBS (background decor) ===== */
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 1;
  animation: orb-float 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: rgba(37,99,235,0.12); top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: rgba(129,140,248,0.1); bottom: 100px; right: 200px; animation-delay: 3s; }
.orb-3 { width: 250px; height: 250px; background: rgba(6,182,212,0.08); top: 200px; left: -50px; animation-delay: 5s; }
@keyframes orb-float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

/* ===== METRICS BAR ===== */
.metrics-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 48px 0; }
.metrics-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.metric { text-align: center; }
.metric strong { display: block; font-size: 2.8rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.metric span { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.metric-divider { width: 1px; height: 56px; background: var(--border); }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { margin-bottom: 8px; }
.about-text p { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-list-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 24px; background: var(--light-bg);
  border: 1px solid var(--border); border-radius: 12px;
  transition: all 0.2s;
}
.about-list-item:hover { border-color: var(--primary-light); transform: translateX(4px); }
.about-list-num { font-size: 32px; font-weight: 900; color: var(--primary); opacity: 0.2; line-height: 1; min-width: 40px; }
.about-list-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.about-list-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.about-visual { position: relative; }
.about-img-wrap { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap .img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%); display: flex; align-items: center; justify-content: center; color: rgba(96,165,250,0.3); font-size: 14px; }
.about-stat-card {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 24px;
  box-shadow: var(--shadow-md);
}
.about-stat-card strong { font-size: 2rem; font-weight: 900; color: var(--primary); display: block; line-height: 1; }
.about-stat-card span { font-size: 13px; color: var(--text-muted); }

/* ===== GROWTH AREAS ===== */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 28px; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.area-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity 0.25s;
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.area-card:hover::before { opacity: 1; }
.area-num { font-size: 56px; font-weight: 900; color: var(--primary); opacity: 0.06; line-height: 1; margin-bottom: 12px; }
.area-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.area-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.area-tags { display: flex; flex-direction: column; gap: 6px; }
.area-tag { font-size: 13px; color: var(--text-muted); padding: 5px 0; border-bottom: 1px solid var(--border); }
.area-tag:last-child { border-bottom: none; }

/* ===== HOW WE DO IT ===== */
.process-wrap { display: flex; align-items: stretch; gap: 0; margin-top: 64px; }
.process-card {
  flex: 1; padding: 48px 40px; position: relative;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.process-card:last-child { border-right: none; }
.process-card:hover { background: rgba(255,255,255,0.02); }
.process-num {
  font-size: 80px; font-weight: 900; line-height: 1;
  background: linear-gradient(180deg, rgba(96,165,250,0.15) 0%, transparent 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 20px;
}
.process-card h3 { color: var(--white); font-size: 22px; margin-bottom: 12px; }
.process-card p { color: var(--text-light); font-size: 15px; line-height: 1.75; }
.process-connector {
  display: flex; align-items: center; padding: 0 20px; color: var(--primary); font-size: 28px; flex-shrink: 0; opacity: 0.4;
}

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-radius: 20px; overflow: hidden; }
.service-card {
  background: var(--dark-alt); padding: 52px 44px; position: relative;
  border-right: 1px solid rgba(255,255,255,0.05); transition: background 0.3s;
}
.service-card:hover { background: rgba(15,29,51,0.9); }
.service-card:last-child { border-right: none; }
.service-card-featured { background: var(--primary); }
.service-card-featured:hover { background: var(--primary-dark); }
.service-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(255,255,255,0.15); color: var(--white);
  padding: 4px 14px; border-radius: 100px; margin-bottom: 28px;
}
.service-line { width: 40px; height: 3px; background: rgba(255,255,255,0.25); border-radius: 2px; margin-bottom: 28px; }
.service-card-featured .service-line { background: rgba(255,255,255,0.5); }
.service-card h3 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.service-card p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 28px; }
.service-card ul { margin-bottom: 40px; }
.service-card ul li {
  font-size: 14px; color: rgba(255,255,255,0.65);
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 10px;
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before { content: ''; width: 16px; height: 1px; background: var(--primary-light); flex-shrink: 0; }
.service-card-featured ul li::before { background: rgba(255,255,255,0.5); }

/* ===== FAQ ===== */
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-left h2 { margin-bottom: 12px; }
.faq-left p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.faq-left p a { color: var(--primary); font-weight: 600; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 22px 0; background: none; border: none;
  cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text);
  text-align: left; gap: 16px; transition: color 0.15s; font-family: var(--font);
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--primary); }
.faq-toggle { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s; font-size: 14px; color: var(--text-muted); }
.faq-item.open .faq-toggle { background: var(--primary); border-color: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 22px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* ===== TESTIMONIAL ===== */
.testimonial-wrap { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.testimonial-line {
  width: 80px; height: 4px; margin: 0 auto 40px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}
blockquote {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 500;
  color: var(--text); line-height: 1.65; margin-bottom: 40px;
}
blockquote strong { color: var(--primary); font-weight: 700; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 64px; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.author-info strong { display: block; font-size: 16px; font-weight: 700; }
.author-info span { font-size: 14px; color: var(--text-muted); }
.logos-section p { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); font-weight: 600; margin-bottom: 28px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.logo-name { font-size: 19px; font-weight: 800; color: var(--text-muted); opacity: 0.25; letter-spacing: -0.5px; transition: opacity 0.2s; }
.logo-name:hover { opacity: 0.5; }

/* ===== CASES ===== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; transition: all 0.25s; }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.case-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); background: rgba(37,99,235,0.07); padding: 4px 14px; border-radius: 100px; margin-bottom: 16px; }
.case-result { font-size: 22px; font-weight: 800; color: var(--text); line-height: 1.3; margin-bottom: 12px; }
.case-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.case-link { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.case-link:hover { gap: 10px; }

/* ===== BLOG ===== */
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.blog-card-big {
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; transition: all 0.25s;
}
.blog-card-big:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-big-img { height: 240px; overflow: hidden; }
.blog-card-big-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card-big:hover .blog-card-big-img img { transform: scale(1.05); }
.blog-card-big-img .img-ph { width: 100%; height: 100%; background: linear-gradient(135deg, var(--dark-alt), var(--dark)); }
.blog-card-big-body { padding: 32px; }
.blog-cat { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 10px; }
.blog-card-big h3 { font-size: 20px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.blog-card-big p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.blog-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
.blog-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card-sm { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all 0.25s; }
.blog-card-sm:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--primary-light); }
.blog-card-sm-img { height: 160px; overflow: hidden; }
.blog-card-sm-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card-sm:hover .blog-card-sm-img img { transform: scale(1.05); }
.blog-card-sm-img .img-ph { width: 100%; height: 100%; background: linear-gradient(135deg, var(--dark-alt), var(--dark)); }
.blog-card-sm-body { padding: 22px; }
.blog-card-sm h4 { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 8px; }
.blog-card-sm p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.blog-link { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.blog-link:hover { gap: 8px; }
.blog-cta { text-align: center; margin-top: 48px; }

/* ===== CTA SECTION ===== */
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p { font-size: 18px; color: var(--text-light); margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info p { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text-muted); margin-bottom: 14px; }
.contact-detail-line { width: 24px; height: 2px; background: var(--primary); border-radius: 1px; flex-shrink: 0; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 52px 44px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 15px; font-family: var(--font); color: var(--text);
  background: var(--white); transition: all 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); }
.footer-top { padding: 80px 0 56px; }
.footer-inner { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-link { margin-bottom: 18px; display: inline-block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 280px; margin-bottom: 28px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4); transition: all 0.2s; }
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 11px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.25); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px; background: var(--dark);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero-bg { position: absolute; inset: 0; background-image: url('../images/about-hero.webp'); background-size: cover; background-position: center; opacity: 0.2; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,10,20,0.7) 0%, rgba(5,10,20,0.95) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--text-light); line-height: 1.7; }

/* ===== LEGAL PAGES ===== */
.legal-body { max-width: 780px; margin: 0 auto; padding: 80px 28px; }
.legal-body h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; }
.legal-body .last-updated { font-size: 14px; color: var(--text-muted); margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.legal-body h2 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 40px 0 12px; }
.legal-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 28px 0 10px; }
.legal-body p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body ul li { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.legal-body a { color: var(--primary); font-weight: 500; }
.legal-body a:hover { text-decoration: underline; }
.legal-toc { background: var(--light-bg); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; margin-bottom: 48px; }
.legal-toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.legal-toc ol { padding-left: 20px; }
.legal-toc ol li { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
.legal-toc ol li a { color: var(--primary); }
.legal-toc ol li a:hover { text-decoration: underline; }

/* ===== COOKIE NOTICE ===== */
#cookie-notice {
  position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 9999;
  background: rgba(10,22,40,0.97); backdrop-filter: blur(20px);
  border: 1px solid rgba(96,165,250,0.2); border-radius: 16px;
  padding: 24px 32px; display: flex; align-items: center; gap: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: translateY(120px); opacity: 0; pointer-events: none;
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
  max-width: 1000px; margin: 0 auto;
}
#cookie-notice.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-text { flex: 1; }
.cookie-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: rgba(203,213,225,0.65); line-height: 1.6; }
.cookie-text a { color: var(--primary-light); font-weight: 500; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept { background: var(--primary); color: var(--white); border: none; padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font); transition: background 0.2s; white-space: nowrap; }
.cookie-accept:hover { background: var(--primary-dark); }
.cookie-decline { background: transparent; color: rgba(203,213,225,0.6); border: 1px solid rgba(255,255,255,0.12); padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: var(--font); transition: all 0.2s; white-space: nowrap; }
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 14px 0; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

/* ===== CAREER CARDS ===== */
.job-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px 32px; display: flex; align-items: center; gap: 24px; transition: all 0.2s; margin-bottom: 16px; }
.job-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateX(4px); }
.job-info { flex: 1; }
.job-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.job-tag { font-size: 12px; font-weight: 600; color: var(--text-muted); background: var(--light-bg); border: 1px solid var(--border); padding: 3px 12px; border-radius: 100px; }
.job-dept { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== EDITORIAL SPLITS (bevel.health inspired) ===== */
.editorial-section { background: var(--white); border-bottom: 1px solid var(--border); }
.e-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  min-height: 480px;
}
.e-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.e-visual {
  padding: 80px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-left: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.e-visual.left {
  border-left: none;
  border-right: 1px solid var(--border);
}
.e-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}
.e-heading {
  font-size: clamp(3.5rem, 5.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.93;
  color: var(--text);
  margin-bottom: 28px;
}
.e-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.e-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 36px;
}
.e-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 60px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(37,99,235,0.08);
  max-width: 320px;
  width: 100%;
}
.e-stat-num {
  display: block;
  font-size: clamp(3.5rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.e-stat-label { font-size: 15px; color: var(--text-muted); line-height: 1.65; font-weight: 500; }
.e-feat-list { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 380px; }
.e-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.2s;
}
.e-feat-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateX(4px); }
.e-feat-dot { width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--primary); margin-top: 6px; flex-shrink: 0; }
.e-feat-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.e-feat-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
.e-step-list { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 360px; }
.e-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s;
}
.e-step:hover { border-color: var(--primary-light); }
.e-step-num { font-size: 24px; font-weight: 900; color: var(--primary); opacity: 0.25; line-height: 1; min-width: 36px; flex-shrink: 0; }
.e-step strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.e-step p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-cols { grid-template-columns: repeat(2, 1fr); }
  .e-split { grid-template-columns: 1fr; min-height: auto; }
  .e-content { padding: 64px 48px; order: 1; }
  .e-visual { padding: 56px 48px; border-left: none; border-top: 1px solid var(--border); order: 2; }
  .e-visual.left { border-right: none; border-top: 1px solid var(--border); order: 2; }
}
@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .nav-desktop, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-stats { gap: 24px; }
  .hero-stat { min-width: 100px; }
  .hero-stat strong { font-size: 1.8rem; }
  .metrics-inner { justify-content: center; gap: 32px 40px; }
  .metric-divider { display: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .process-wrap { flex-direction: column; }
  .process-connector { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .cases-grid { grid-template-columns: 1fr; }
  .blog-cols { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .e-content { padding: 52px 28px; }
  .e-visual { padding: 44px 28px; }
  .e-heading { line-height: 1; }
  .e-stat-card { padding: 40px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  #cookie-notice { flex-direction: column; align-items: flex-start; bottom: 16px; left: 16px; right: 16px; }
  .cookie-actions { width: 100%; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat { border-right: none !important; margin-right: 0 !important; padding-right: 0 !important; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}
