/* ================= DESIGN TOKENS ================= */
:root {
  --bg-white: #FFFFFF;
  --text-main: #0B0F19;
  --text-muted: #64748B;
  --glass-surface: rgba(255, 255, 255, 0.52);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  --gemini-grad: linear-gradient(135deg, #4285F4 0%, #9B72CF 50%, #FF6492 100%);
  --gemini-text: linear-gradient(135deg, #1A56DB 0%, #7E22CE 50%, #E11D48 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ================= AMBIENT MESH GRADIENTS ================= */
.mesh-gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.35;
  transition: transform 0.12s cubic-bezier(0.1, 0.9, 0.2, 1);
  will-change: transform;
  pointer-events: none;
}

.blob-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 20, 110, 0.95) 0%, rgba(255, 80, 140, 0.65) 45%, transparent 75%);
  top: 10%;
  right: 2%;
}

.blob-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.9) 0%, rgba(192, 132, 252, 0.55) 45%, transparent 75%);
  top: -12%;
  left: 10%;
}

.blob-3 {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.95) 0%, rgba(96, 165, 250, 0.6) 45%, transparent 75%);
  bottom: 0%;
  right: 25%;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ================= CONTAINER ================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
  z-index: 2;
}

/* ================= HERO SECTION ================= */
.hero-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.hero-text-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulseColorCycle 5s infinite ease-in-out;
}

@keyframes pulseColorCycle {
  0% {
    background-color: #4285F4;
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.8), 0 0 4px rgba(66, 133, 244, 0.4);
  }
  33% {
    background-color: #9B72CF;
    box-shadow: 0 0 10px rgba(155, 114, 207, 0.8), 0 0 4px rgba(155, 114, 207, 0.4);
  }
  66% {
    background-color: #FF6492;
    box-shadow: 0 0 10px rgba(255, 100, 146, 0.8), 0 0 4px rgba(255, 100, 146, 0.4);
  }
  100% {
    background-color: #4285F4;
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.8), 0 0 4px rgba(66, 133, 244, 0.4);
  }
}

.hero-headline {
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.8px;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gemini-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 34px;
  line-height: 1.7;
}

/* ================= BUTTONS ================= */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gemini-grad);
  color: white;
  box-shadow: 0 12px 30px -8px rgba(225, 29, 72, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(225, 29, 72, 0.48);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  padding: 13px 20px;
}

.btn-secondary:hover {
  color: #1A56DB;
}

/* ================= STATS BAR ================= */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.trust-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.trust-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(203, 213, 225, 0.8);
}

/* ================= INTERACTIVE GLASS STAGE ================= */
.hero-visual-content {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.interactive-glass-stage {
  position: relative;
  width: 100%;
  max-width: 470px;
  height: 430px;
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  animation: floatingCard 6s ease-in-out infinite alternate;
}

@keyframes floatingCard {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.6deg); }
  100% { transform: translateY(6px) rotate(-0.4deg); }
}

.stage-control-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.window-buttons {
  display: flex;
  gap: 6px;
}

.win-btn {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.win-red { background: #FDA4AF; }
.win-yellow { background: #FDE047; }
.win-green { background: #86EFAC; }

.scene-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.8);
  color: #7E22CE;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
}

.stage-scene {
  position: absolute;
  top: 75px;
  left: 26px;
  right: 26px;
  bottom: 38px;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stage-scene.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scene-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 18px;
  backdrop-filter: blur(15px);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sub-heading {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.metric-row h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.score-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #10B981;
  color: #10B981;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
}

.seo-progress-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.bar-track {
  height: 6px;
  background: rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--gemini-grad);
  border-radius: var(--radius-full);
}

/* Scene 2: Code Editor */
.code-display {
  background: rgba(11, 15, 25, 0.94);
  color: #E2E8F0;
  font-family: 'Fira Code', monospace;
  font-size: 0.8rem;
  height: 230px;
  display: flex;
  align-items: center;
  border: none;
  padding: 14px;
}

.code-display pre {
  line-height: 1.5;
}

.code-keyword { color: #C084FC; }
.code-var { color: #60A5FA; }
.code-key { color: #F472B6; }
.code-str { color: #4ADE80; }
.code-num { color: #FCD34D; }
.code-bool { color: #38BDF8; }

/* Scene 3: Chart */
.tag-green {
  font-size: 0.8rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.analytics-chart-mock {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 100px;
  padding-top: 10px;
}

.chart-col {
  flex: 1;
  background: rgba(226, 232, 240, 0.8);
  border-radius: 6px 6px 0 0;
}

.chart-col.col-1 { height: 35%; }
.chart-col.col-2 { height: 55%; }
.chart-col.col-3 { height: 75%; }
.chart-col.active-col {
  height: 100%;
  background: var(--gemini-grad);
}

.scene-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px 4px 4px;
}

.scene-footer strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.scene-indicators {
  display: flex;
  gap: 6px;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.indicator-dot {
  width: 7px;
  height: 7px;
  background: rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  width: 24px;
  background: var(--gemini-grad);
}

/* ================= SERVICES SECTION ================= */
.services-section {
  width: 100%;
  padding: 100px 0 120px 0;
  position: relative;
  z-index: 2;
}

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

.section-title {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.service-card {
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(155, 114, 207, 0.65);
  box-shadow: 0 25px 50px -12px rgba(126, 34, 206, 0.15), 
              0 0 20px 0 rgba(155, 114, 207, 0.12);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #7E22CE;
  box-shadow: 0 8px 20px -6px rgba(126, 34, 206, 0.18);
  margin-bottom: 24px;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 26px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.service-features li i {
  color: #10B981;
  font-size: 0.82rem;
}

/* ================= EXECUTION PROCESS PIPELINE ================= */
.process-section {
  width: 100%;
  padding: 80px 0 110px 0;
  position: relative;
  z-index: 2;
}

.process-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.pipeline-card {
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 38px 30px 32px 30px;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.pipeline-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 114, 207, 0.6);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
}

.watermark-number {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.04);
  line-height: 1;
  pointer-events: none;
  font-family: inherit;
  transition: color 0.3s ease;
}

.pipeline-card:hover .watermark-number {
  color: rgba(155, 114, 207, 0.09);
}

.pipeline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.pipeline-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.step-blue .pipeline-icon { color: #2563EB; }
.step-purple .pipeline-icon { color: #7E22CE; }
.step-pink .pipeline-icon { color: #E11D48; }

.phase-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.pipeline-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.pipeline-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.pipeline-footer-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px dashed rgba(203, 213, 225, 0.8);
  position: relative;
  z-index: 2;
}

.pipeline-footer-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-main);
}

.pipeline-footer-tags span i {
  font-size: 0.72rem;
}

.step-blue .pipeline-footer-tags span i { color: #2563EB; }
.step-purple .pipeline-footer-tags span i { color: #7E22CE; }
.step-pink .pipeline-footer-tags span i { color: #E11D48; }

/* ================= INFINITE CLIENT REVIEWS TICKER ================= */
.reviews-ticker-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 30px 0;
  overflow: hidden;
  z-index: 2;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.ticker-wrapper {
  display: flex;
  width: max-content;
  user-select: none;
}

.ticker-track {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  animation: scrollTicker 32s linear infinite;
  will-change: transform;
}

.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.ticker-card {
  width: 380px;
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.ticker-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 114, 207, 0.65);
}

.ticker-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.user-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.user-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ticker-stars {
  color: #F59E0B;
  font-size: 0.75rem;
  margin-bottom: 8px;
  display: flex;
  gap: 3px;
}

.ticker-quote {
  font-size: 0.84rem;
  color: var(--text-main);
  line-height: 1.5;
  font-style: italic;
}

/* ================= AUDIT CTA FORM SECTION ================= */
.audit-cta-section {
  width: 100%;
  padding: 80px 0 120px 0;
  position: relative;
  z-index: 2;
}

.audit-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.audit-headline {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: #0B0F19;
  line-height: 1.2;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
}

.audit-subtitle {
  font-size: 0.98rem;
  color: #64748B;
  max-width: 620px;
  margin: 0 auto 34px auto;
  line-height: 1.6;
}

.audit-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.form-input-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex: 1;
}

.audit-input {
  flex: 1;
  width: 100%;
  padding: 14px 22px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.9rem;
  color: #0B0F19;
  outline: none;
  font-family: inherit;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.02);
  transition: all 0.25s ease;
}

.audit-input::placeholder {
  color: #94A3B8;
  font-size: 0.86rem;
}

.audit-input:focus {
  background: #FFFFFF;
  border-color: #9B72CF;
  box-shadow: 0 0 0 3px rgba(155, 114, 207, 0.18);
}

.btn-audit-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #4285F4 0%, #9B72CF 50%, #FF6492 100%);
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(225, 29, 72, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-audit-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -5px rgba(225, 29, 72, 0.45);
}

/* ================= FAQ SECTION ================= */
.faq-section {
  width: 100%;
  padding: 80px 0 120px 0;
  position: relative;
  z-index: 2;
}

.faq-accordion-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(155, 114, 207, 0.5);
}

.faq-item.active {
  border-color: rgba(155, 114, 207, 0.7);
  box-shadow: 0 16px 36px -10px rgba(126, 34, 206, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: inherit;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #1A56DB;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #7E22CE;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gemini-grad);
  color: #FFFFFF;
  border-color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

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

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-trust-bar,
  .hero-visual-content {
    justify-content: center;
  }

  .interactive-glass-stage {
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid,
  .process-pipeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-section {
    padding: 40px 0 30px 0;
  }

  .hero-headline {
    font-size: 2.1rem;
    line-height: 1.18;
    letter-spacing: -1px;
    margin-bottom: 14px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 24px auto;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .hero-trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding-top: 18px;
    max-width: 380px;
    margin: 0 auto;
  }

  .trust-stat strong {
    font-size: 1.1rem;
  }

  .trust-stat span {
    font-size: 0.68rem;
  }

  .trust-divider {
    display: none;
  }

  .interactive-glass-stage {
    max-width: 100%;
    height: 410px;
    padding: 20px 16px;
  }

  .services-section,
  .process-section,
  .faq-section {
    padding: 60px 0 80px 0;
  }

  .services-grid,
  .process-pipeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .audit-card {
    padding: 35px 20px;
    border-radius: 24px;
  }

  .audit-form,
  .form-input-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-audit-submit {
    width: 100%;
  }

  .ticker-card {
    width: 300px;
    padding: 14px 18px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.94rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}
/* ================= SERVICES PAGE EXPANSIONS ================= */
.services-page-wrapper {
  padding: 40px 0 100px 0;
  position: relative;
  z-index: 2;
}

.services-hero-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px auto;
  position: relative;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #1A56DB;
  border-color: rgba(66, 133, 244, 0.4);
  transform: translateX(-3px);
}

.services-main-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.services-main-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ================= MULTI-SELECTION ACTION BAR ================= */
.selection-action-bar {
  position: sticky;
  top: 24px;
  z-index: 100;
  margin-bottom: 40px;
  display: none; /* Dynamic via JS when selectedCount > 0 */
  animation: slideDownFade 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownFade {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.selection-bar-content {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(155, 114, 207, 0.5);
  box-shadow: 0 20px 45px -10px rgba(126, 34, 206, 0.18), 0 0 0 1px #FFFFFF inset;
  border-radius: 20px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.selection-bar-info {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.selection-count-pill {
  padding: 6px 14px;
  background: var(--gemini-grad);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

.selection-tags-preview {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.selection-tags-preview::-webkit-scrollbar { display: none; }

.selection-mini-tag {
  font-size: 0.76rem;
  font-weight: 600;
  background: rgba(241, 245, 249, 0.8);
  border: 1px solid rgba(203, 213, 225, 0.8);
  padding: 4px 10px;
  border-radius: 8px;
  color: var(--text-main);
}

.selection-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-clear-selection {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s ease;
}

.btn-clear-selection:hover {
  color: #E11D48;
}

.btn-proceed-quote {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ================= SERVICE CATEGORY GRID & INTERACTIVE CARDS ================= */
.services-category-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 70px;
}

.service-category-block {
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-category-block.is-expanded {
  border-color: rgba(155, 114, 207, 0.5);
  box-shadow: 0 25px 60px -15px rgba(126, 34, 206, 0.1);
}

/* Header Trigger Bar */
.category-summary-bar {
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.category-summary-bar:hover {
  background: rgba(255, 255, 255, 0.35);
}

.category-identity {
  display: flex;
  align-items: center;
  gap: 20px;
}

.category-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #7E22CE;
  box-shadow: 0 8px 18px -4px rgba(126, 34, 206, 0.15);
  flex-shrink: 0;
}

.category-meta h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 4px;
}

.category-meta p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.category-indicators {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sub-count-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

.expand-toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.service-category-block.is-expanded .expand-toggle-icon {
  transform: rotate(180deg);
  background: var(--gemini-grad);
  color: #FFFFFF;
  border-color: transparent;
}

/* Sub-Services Panel Grid */
.sub-services-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 34px;
}

.service-category-block.is-expanded .sub-services-wrapper {
  padding: 0 34px 34px 34px;
}

.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

/* Individual Sub-Service Card */
.sub-service-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.sub-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 114, 207, 0.6);
  box-shadow: 0 14px 30px -8px rgba(126, 34, 206, 0.12);
  background: #FFFFFF;
}

.sub-service-card.is-selected {
  border-color: #7E22CE;
  background: #FFFFFF;
  box-shadow: 0 10px 25px -6px rgba(126, 34, 206, 0.18), 0 0 0 1px #7E22CE inset;
}

.sub-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.sub-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.service-select-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #7E22CE;
  cursor: pointer;
  margin-top: 2px;
}

.sub-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.sub-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed rgba(226, 232, 240, 0.8);
}

.btn-quick-scope {
  background: transparent;
  border: none;
  color: #1A56DB;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}

.btn-quick-scope:hover {
  gap: 8px;
}

.btn-quick-get {
  background: rgba(126, 34, 206, 0.08);
  color: #7E22CE;
  border: 1px solid rgba(126, 34, 206, 0.2);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-quick-get:hover {
  background: var(--gemini-grad);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-1px);
}

/* ================= SERVICE PROPOSAL FORM STYLES ================= */
.service-form-card {
  max-width: 860px;
  text-align: left;
  padding: 50px;
}

.form-header-block {
  text-align: center;
  margin-bottom: 36px;
}

.form-title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  margin-top: 12px;
  margin-bottom: 10px;
}

.form-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.selected-services-review-box {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
}

.field-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.service-chips-display {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.no-selection-placeholder {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-style: italic;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #FFFFFF;
  border: 1px solid rgba(155, 114, 207, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: 0 2px 8px rgba(126, 34, 206, 0.08);
}

.service-chip .chip-cat {
  color: #7E22CE;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-chip .remove-chip-btn {
  border: none;
  background: transparent;
  color: #94A3B8;
  cursor: pointer;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.service-chip .remove-chip-btn:hover {
  color: #E11D48;
}

.form-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.form-group.full-width {
  grid-column: span 2;
}

.select-input {
  cursor: pointer;
}

.textarea-input {
  border-radius: 18px !important;
  resize: vertical;
}

.btn-submit-service-form {
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
  gap: 10px;
}

/* ================= DETAILED SERVICE MODAL DIALOG ================= */
.service-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.service-modal-dialog {
  background: #FFFFFF;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 38px;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.25);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-modal-overlay.is-open .service-modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  border: none;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: var(--text-main);
  transform: rotate(90deg);
}

.modal-category-tag {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #7E22CE;
  margin-bottom: 6px;
}

.modal-service-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.modal-description {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.modal-section-block {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 18px;
}

.modal-section-block h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.modal-section-block h4 i {
  color: #2563EB;
}

.modal-section-block p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.modal-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.modal-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-feature-list li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.modal-feature-list li::before {
  content: "•";
  color: #10B981;
  font-size: 1.1rem;
  line-height: 1;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #E2E8F0;
}

/* ================= SERVICES RESPONSIVE ================= */
@media (max-width: 992px) {
  .sub-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-fields-grid,
  .modal-dual-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .services-hero-header {
    margin-bottom: 24px;
  }

  .category-summary-bar {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .category-indicators {
    width: 100%;
    justify-content: space-between;
  }

  .sub-services-wrapper {
    padding: 0 18px;
  }

  .service-category-block.is-expanded .sub-services-wrapper {
    padding: 0 18px 22px 18px;
  }

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

  .service-form-card {
    padding: 32px 20px;
  }

  .service-modal-dialog {
    padding: 26px 20px;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer button {
    width: 100%;
  }

  .selection-bar-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .selection-bar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .btn-proceed-quote {
    flex: 1;
    text-align: center;
  }
}
/* ================= ABOUT US PAGE EXPANSIONS ================= */
.about-page-wrapper {
  padding: 40px 0 100px 0;
  position: relative;
  z-index: 2;
}

.leadership-section {
  width: 100%;
  margin-bottom: 50px;
}

/* Master Glass Leader Card */
.leader-card {
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 36px;
  padding: 48px;
  box-shadow: 0 35px 80px -20px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.founder-card:hover {
  border-color: rgba(155, 114, 207, 0.65);
  box-shadow: 0 40px 90px -20px rgba(126, 34, 206, 0.14);
}

.cofounder-card:hover {
  border-color: rgba(66, 133, 244, 0.65);
  box-shadow: 0 40px 90px -20px rgba(37, 99, 235, 0.14);
}

.leader-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.leader-grid.reverse-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

/* Leader Image Frame Area */
.leader-visual {
  position: relative;
  width: 100%;
}

.leader-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.08);
}

.image-placeholder-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.9), rgba(226, 232, 240, 0.6));
  padding: 24px;
  text-align: center;
}

.placeholder-icon {
  font-size: 5rem;
  color: #7E22CE;
  margin-bottom: 16px;
  filter: drop-shadow(0 6px 16px rgba(126, 34, 206, 0.2));
}

.placeholder-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
}

.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-experience-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  padding: 12px 18px;
  background: var(--gemini-grad);
  border-radius: 18px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.35);
}

.leader-experience-badge strong {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.leader-experience-badge span {
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Leader Content Details */
.leader-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.leader-name {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-top: 6px;
  margin-bottom: 4px;
}

.leader-designation {
  font-size: 1rem;
  font-weight: 700;
  color: #7E22CE;
  display: block;
}

.leader-socials {
  display: flex;
  gap: 8px;
}

.leader-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.leader-social-btn:hover {
  background: var(--gemini-grad);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-2px);
}

.leader-quote {
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-main);
  border-left: 3px solid #7E22CE;
  padding-left: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.leader-bio {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Skills Highlight Section */
.skills-highlight-box {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 18px 22px;
  margin-bottom: 20px;
}

.skills-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-main);
  margin-bottom: 12px;
}

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

.skills-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #FFFFFF;
  border: 1px solid rgba(203, 213, 225, 0.8);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  color: var(--text-main);
}

.skills-tags span i {
  color: #7E22CE;
  font-size: 0.74rem;
}

.leader-mission-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(248, 250, 252, 0.85));
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 18px 22px;
}

.leader-mission-card h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.leader-mission-card h4 i {
  color: #10B981;
}

.leader-mission-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ================= 3. OUR TEAM SECTION & CONTINUOUS TICKER ================= */
.team-showcase-section {
  width: 100%;
  padding: 60px 0 80px 0;
  position: relative;
}

.team-ticker-outer-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 30px 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.team-ticker-wrapper {
  display: flex;
  width: max-content;
  user-select: none;
}

.team-ticker-track {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  animation: scrollTicker 45s linear infinite;
  will-change: transform;
}

.team-ticker-wrapper:hover .team-ticker-track {
  animation-play-state: paused;
}

/* Compact Glass Team Card */
.team-member-card {
  width: 320px;
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.team-member-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 114, 207, 0.65);
  box-shadow: 0 25px 50px -12px rgba(126, 34, 206, 0.15);
}

.team-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.team-avatar-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.team-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 2px;
}

.team-card-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: #7E22CE;
}

.team-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.team-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed rgba(226, 232, 240, 0.8);
}

.team-dept-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(241, 245, 249, 0.9);
  color: var(--text-muted);
}

.btn-team-details {
  background: transparent;
  border: none;
  color: #1A56DB;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}

.btn-team-details:hover {
  gap: 8px;
}

/* Team Modal Enhancements */
.team-modal-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.team-modal-avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--gemini-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
  flex-shrink: 0;
}

/* ================= ABOUT US RESPONSIVE ================= */
@media (max-width: 992px) {
  .leader-grid,
  .leader-grid.reverse-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .leader-visual {
    max-width: 440px;
    margin: 0 auto;
  }

  .leader-card {
    padding: 36px 28px;
    border-radius: 28px;
  }
}

@media (max-width: 768px) {
  .leader-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .leader-name {
    font-size: 1.65rem;
  }

  .leader-quote {
    font-size: 0.92rem;
    padding-left: 14px;
  }

  .leader-bio {
    font-size: 0.88rem;
  }

  .skills-tags span {
    font-size: 0.74rem;
  }

  .team-member-card {
    width: 280px;
    padding: 20px;
  }

  .team-info h4 {
    font-size: 0.98rem;
  }

  .team-card-desc {
    font-size: 0.82rem;
  }
}
/* ================= BLOG PAGE STYLING ================= */
.blog-page-wrapper {
  padding: 40px 0 100px 0;
  position: relative;
  z-index: 2;
}

/* Search Bar */
.blog-search-bar-wrapper {
  max-width: 640px;
  margin: 30px auto 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

.blog-search-bar-wrapper .search-icon {
  position: absolute;
  left: 22px;
  color: #7E22CE;
  font-size: 1.05rem;
  pointer-events: none;
}

.blog-search-input {
  padding-left: 54px !important;
  padding-right: 48px !important;
  box-shadow: 0 10px 30px -10px rgba(126, 34, 206, 0.1) !important;
}

.clear-search-btn {
  position: absolute;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
}

/* Categories Filter Bar */
.blog-categories-nav {
  margin: 40px 0 45px 0;
  display: flex;
  justify-content: center;
}

.categories-scroll-track {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 6px;
  scrollbar-width: none;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px -10px rgba(15, 23, 42, 0.04);
}

.categories-scroll-track::-webkit-scrollbar { display: none; }

.cat-pill {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  font-family: inherit;
}

.cat-pill:hover {
  color: var(--text-main);
}

.cat-pill.active {
  background: var(--gemini-grad);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.28);
}

/* Featured Standout Card */
.featured-article-section {
  margin-bottom: 50px;
}

.featured-card {
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 30px 70px -15px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

.featured-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 114, 207, 0.65);
  box-shadow: 0 35px 80px -20px rgba(126, 34, 206, 0.15);
}

.featured-banner {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.12);
}

.banner-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.featured-icon {
  font-size: 4.5rem;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.featured-details h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin: 12px 0 14px 0;
  letter-spacing: -0.8px;
}

.featured-details p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* Blog Cards Grid */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.blog-card {
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 114, 207, 0.6);
  box-shadow: 0 25px 50px -12px rgba(126, 34, 206, 0.12);
}

.blog-card-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 2.4rem;
  color: #FFFFFF;
  position: relative;
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.1);
}

.blog-card-cat-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed rgba(226, 232, 240, 0.8);
}

.btn-read-article {
  background: transparent;
  border: none;
  color: #1A56DB;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.btn-read-article:hover {
  gap: 9px;
}

/* Empty State */
.blog-empty-state {
  text-align: center;
  padding: 60px 20px;
  max-width: 500px;
  margin: 0 auto;
}

.empty-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #7E22CE;
  margin: 0 auto 18px auto;
  box-shadow: 0 10px 25px -5px rgba(126, 34, 206, 0.15);
}

.load-more-wrapper {
  text-align: center;
  margin-top: 20px;
}

/* ================= 2. DEDICATED ARTICLE READING VIEW ================= */
.blog-detail-container {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 10px;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.article-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.article-share-quick {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.share-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.25s ease;
}

.share-icon-btn:hover {
  background: var(--gemini-grad);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-2px);
}

.article-header {
  margin-bottom: 30px;
}

.article-meta-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.read-time-pill {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.article-hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1.4px;
  margin-bottom: 22px;
  color: var(--text-main);
}

.article-author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gemini-grad);
  color: #FFFFFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.author-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.author-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.article-featured-banner {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.08);
}

.article-visual-gradient {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-icon {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Article Body Typography */
.article-body-content {
  font-size: 1.06rem;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 60px;
}

.article-body-content p {
  margin-bottom: 24px;
}

.article-body-content h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 40px 0 16px 0;
  letter-spacing: -0.6px;
}

.article-body-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 30px 0 12px 0;
}

.article-quote-box {
  background: var(--glass-surface);
  border-left: 4px solid #7E22CE;
  border-radius: 0 18px 18px 0;
  padding: 24px 28px;
  margin: 32px 0;
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main);
  box-shadow: 0 10px 25px -5px rgba(126, 34, 206, 0.08);
}

.article-code-block {
  background: #0B0F19;
  border-radius: 16px;
  padding: 20px 24px;
  margin: 28px 0;
  color: #E2E8F0;
  font-family: 'Fira Code', monospace;
  font-size: 0.88rem;
  overflow-x: auto;
}

.article-list {
  padding-left: 20px;
  margin-bottom: 28px;
}

.article-list li {
  margin-bottom: 10px;
  padding-left: 6px;
}

.article-newsletter-cta {
  padding: 40px 32px;
  margin-bottom: 60px;
}

.article-newsletter-cta h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.article-newsletter-cta p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.related-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-main);
}

/* ================= BLOG RESPONSIVE ================= */
@media (max-width: 992px) {
  .featured-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .blog-categories-nav {
    justify-content: flex-start;
  }

  .categories-scroll-track {
    width: 100%;
  }

  .blog-cards-grid {
    grid-template-columns: 1fr;
  }

  .article-hero-title {
    font-size: 1.9rem;
  }

  .article-body-content {
    font-size: 0.98rem;
  }

  .article-featured-banner {
    aspect-ratio: 16 / 9;
  }
}
/* ================= CONTACT PAGE STYLES ================= */
.contact-page-wrapper {
  padding: 40px 0 100px 0;
  position: relative;
  z-index: 2;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 70px;
}

/* Left Column Details Card */
.contact-info-card {
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 40px 34px;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
}

.contact-column-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.6px;
}

.contact-column-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.channel-item:hover {
  background: #FFFFFF;
  border-color: rgba(155, 114, 207, 0.6);
  transform: translateX(4px);
  box-shadow: 0 10px 25px -5px rgba(126, 34, 206, 0.1);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #1A56DB;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  flex-shrink: 0;
}

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

.channel-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.channel-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.social-connect-block {
  padding-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 24px;
}

.contact-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background: var(--gemini-grad);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(225, 29, 72, 0.25);
}

.response-guarantee-box {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.06), rgba(155, 114, 207, 0.08));
  border: 1px solid rgba(155, 114, 207, 0.3);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sla-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gemini-grad);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

.response-guarantee-box h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.response-guarantee-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Right Column Contact Form */
.contact-form-card {
  padding: 44px;
  text-align: left;
}

.form-section-title {
  margin-bottom: 26px;
}

.form-section-title h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 8px;
  letter-spacing: -0.5px;
}

/* Sub-Services Dynamic Checkbox Grid */
.sub-checkboxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 16px;
  margin-top: 6px;
}

.sub-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.sub-checkbox-item:hover {
  background: rgba(255, 255, 255, 0.9);
}

.sub-checkbox-item input[type="checkbox"] {
  accent-color: #7E22CE;
  width: 17px;
  height: 17px;
  cursor: pointer;
}

/* Success State */
.contact-success-state {
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.4s ease forwards;
}

.success-icon-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px auto;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
}

.contact-success-state h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.contact-success-state p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px auto;
  line-height: 1.6;
}

/* Map Section */
.contact-map-section {
  margin-bottom: 60px;
}

.contact-map-frame {
  width: 100%;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.google-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

.map-overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.15);
  max-width: 440px;
  z-index: 10;
}

.map-pin-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gemini-grad);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.map-overlay-card strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.map-overlay-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ================= CONTACT RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .sub-checkboxes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-info-card,
  .contact-form-card {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .map-overlay-card {
    position: static;
    margin: 14px;
    max-width: none;
  }

  .contact-map-frame {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .google-map-iframe {
    height: 260px;
  }
}
/* ================= NEW UNIQUE CASE STUDIES SHOWCASE ================= */
.cases-page-wrapper {
  padding: 40px 0 100px 0;
  position: relative;
  z-index: 2;
}

.case-showcase-stream {
  display: flex;
  flex-direction: column;
  gap: 38px;
  margin-bottom: 50px;
}

/* Full-Width Showcase Card (Split Row) */
.showcase-row-card {
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--glass-shadow);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.showcase-row-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 114, 207, 0.65);
  box-shadow: 0 35px 80px -20px rgba(126, 34, 206, 0.14);
}

/* Alternating Layout */
.showcase-row-card.alternate-layout {
  grid-template-columns: 1fr 1fr;
}
.showcase-row-card.alternate-layout .showcase-visual-pane {
  order: 2;
}
.showcase-row-card.alternate-layout .showcase-info-pane {
  order: 1;
}

/* Visual Mockup/Terminal Pane */
.showcase-visual-pane {
  background: rgba(11, 15, 25, 0.95);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot-r { background: #FDA4AF; }
.dot-y { background: #FDE047; }
.dot-g { background: #86EFAC; }

.terminal-status {
  font-family: 'Fira Code', monospace;
  font-size: 0.74rem;
  color: #4ADE80;
  letter-spacing: 0.5px;
}

.terminal-metric-center {
  text-align: center;
  margin: auto 0;
}

.metric-hero-num {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  background: var(--gemini-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  letter-spacing: -1.5px;
}

.metric-hero-label {
  font-family: 'Fira Code', monospace;
  font-size: 0.84rem;
  color: #94A3B8;
  text-transform: uppercase;
}

.terminal-footer-metrics {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-metric {
  text-align: center;
}
.sub-metric strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
}
.sub-metric span {
  font-size: 0.72rem;
  color: #64748B;
}

/* Info Pane */
.showcase-client-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.client-name-badge {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.showcase-info-pane h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.showcase-info-pane p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.showcase-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.showcase-tags-row span {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(203, 213, 225, 0.9);
  color: var(--text-main);
}

/* Detailed Dossier KPI Ribbon */
.dossier-kpi-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.dossier-kpi-card {
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
}

.dossier-kpi-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10B981;
  line-height: 1.1;
  margin-bottom: 4px;
}

.dossier-kpi-lbl {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Problem vs Solution Dossier Grid */
.dossier-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 44px;
}

.dossier-card {
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--glass-shadow);
}

.badge-red {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(225, 29, 72, 0.1);
  color: #E11D48;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dossier-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.dossier-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.dossier-checklist {
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.list-heading {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 10px;
}

.dossier-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dossier-checklist ul li {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.before-list ul li::before {
  content: "✕";
  color: #E11D48;
  font-weight: 800;
}

.after-list ul li::before {
  content: "✓";
  color: #10B981;
  font-weight: 800;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .showcase-row-card,
  .showcase-row-card.alternate-layout {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 28px;
  }

  .showcase-row-card.alternate-layout .showcase-visual-pane {
    order: 1;
  }
  .showcase-row-card.alternate-layout .showcase-info-pane {
    order: 2;
  }

  .dossier-kpi-ribbon,
  .dossier-split-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= 10. MASTER WEBSITE FOOTER ================= */
.site-master-footer {
  width: 100%;
  position: relative;
  z-index: 5;
  padding: 60px 0 30px 0;
  margin-top: 60px;
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(248, 250, 252, 0.85) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

/* Pre-Footer Action Banner */
.footer-cta-banner {
  margin-bottom: 60px;
}

.footer-cta-card {
  background: var(--glass-surface);
  backdrop-filter: blur(35px) saturate(160%);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 44px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 25px 60px -15px rgba(126, 34, 206, 0.12), 0 0 0 1px #FFFFFF inset;
}

.footer-cta-title {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.footer-cta-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.btn-footer-cta {
  padding: 14px 32px;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Main 5-Column Grid */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr 1.3fr;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Brand Column */
.footer-brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -0.8px;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-brand-logo .logo-accent {
  background: var(--gemini-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-tagline {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7E22CE;
  margin-bottom: 12px;
}

.footer-brand-bio {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Social Tray */
.footer-social-tray {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.footer-social-btn:hover {
  background: var(--gemini-grad);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(225, 29, 72, 0.25);
}

/* Headings & Links */
.footer-col-heading {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.footer-links-list li a i {
  font-size: 0.7rem;
  color: #94A3B8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-links-list li a:hover {
  color: #1A56DB;
  transform: translateX(4px);
}

.footer-links-list li a:hover i {
  color: #7E22CE;
}

/* Newsletter & Micro Contact */
.footer-newsletter-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.footer-newsletter-desc strong {
  color: var(--text-main);
}

.footer-input-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.newsletter-icon {
  position: absolute;
  left: 14px;
  color: #7E22CE;
  font-size: 0.85rem;
  pointer-events: none;
}

.footer-input {
  width: 100%;
  padding: 11px 48px 11px 38px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-family: inherit;
  color: var(--text-main);
  outline: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.footer-input:focus {
  border-color: rgba(155, 114, 207, 0.7);
  box-shadow: 0 0 0 3px rgba(155, 114, 207, 0.15);
}

.btn-footer-sub {
  position: absolute;
  right: 5px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gemini-grad);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.btn-footer-sub:hover {
  transform: scale(1.08);
}

.footer-micro-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.micro-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.micro-contact-item:hover {
  color: #1A56DB;
}

.micro-contact-item i {
  color: #7E22CE;
  font-size: 0.9rem;
}

/* Bottom Bar */
.footer-bottom-bar {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-bar strong {
  color: var(--text-main);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--text-main);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-col-brand,
  .footer-col-contact {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .footer-cta-desc {
    margin: 0 auto;
  }

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

  .footer-col-brand,
  .footer-col-contact {
    grid-column: span 1;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
/* ================= FLOATING PILL HEADER & ANIMATED BORDER ================= */
.master-floating-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none; /* Allows click-through outside the pill */
  padding: 0 16px;
}

/* Gemini Continuous Moving Border Glow Keyframes */
@keyframes borderRotate {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.header-floating-container {
  pointer-events: auto;
  position: relative;
  width: 100%;
  max-width: 1140px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 24px;
  
  /* Glassmorphic Layer */
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(35px) saturate(180%);
  -webkit-backdrop-filter: blur(35px) saturate(180%);
  box-shadow: 0 20px 45px -12px rgba(126, 34, 206, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Continuous Moving Animated Gradient Border Stroke */
.header-floating-container::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: var(--radius-full);
  padding: 1.5px;
  background: conic-gradient(from var(--angle), rgba(66, 133, 244, 0.7), rgba(155, 114, 207, 0.9), rgba(255, 100, 146, 0.8), rgba(66, 133, 244, 0.7));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderRotate 6s linear infinite;
  pointer-events: none;
}

/* Brand Wordmark */
.header-brand-wordmark {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  position: relative;
  z-index: 2;
}

.header-brand-wordmark .brand-accent {
  background: var(--gemini-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E11D48;
  display: inline-block;
  margin-left: 2px;
}

/* Center Navigation Inner Pill */
.header-nav-pill-wrapper {
  background: rgba(241, 245, 249, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 4px;
  display: flex;
  align-items: center;
}

.header-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  margin: 0;
}

.nav-item-link {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.nav-dropdown-arrow {
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.nav-item-link:hover {
  color: var(--text-main);
}

.nav-item-link:hover .nav-dropdown-arrow {
  transform: translateY(1px);
}

/* Active Page Highlight Pill */
.nav-item-link.is-active {
  background: #FFFFFF;
  color: #7E22CE !important;
  box-shadow: 0 4px 14px rgba(126, 34, 206, 0.12), 0 0 0 1px rgba(155, 114, 207, 0.3);
}

/* Right Side: Get In Touch CTA */
.header-actions-tray {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-get-in-touch {
  position: relative;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-get-in-touch i {
  font-size: 0.76rem;
  color: #7E22CE;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Hover & Active Selected State */
.btn-get-in-touch:hover,
.btn-get-in-touch.is-active-btn {
  background: var(--gemini-grad);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 10px 25px -4px rgba(225, 29, 72, 0.38), 0 0 20px rgba(155, 114, 207, 0.4);
  transform: translateY(-1px);
}

.btn-get-in-touch:hover i,
.btn-get-in-touch.is-active-btn i {
  color: #FFFFFF;
  transform: translateX(3px);
}

/* Mobile Hamburger Button */
.mobile-hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.hamburger-bar {
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-hamburger-btn.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-hamburger-btn.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-hamburger-btn.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  pointer-events: auto;
  width: 100%;
  max-width: 1140px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.15);
  display: none;
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-nav-drawer.is-open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: 12px;
  display: block;
  transition: background 0.2s ease;
}

.mobile-nav-link.is-active {
  background: rgba(126, 34, 206, 0.08);
  color: #7E22CE;
}

.mobile-cta-li {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(226, 232, 240, 0.9);
}

/* Spacer for Page Tops */
body {
  padding-top: 90px; /* Provides clearance for the floating header */
}

/* Responsive Rules */
@media (max-width: 900px) {
  .header-nav-pill-wrapper {
    display: none;
  }
  
  .mobile-hamburger-btn {
    display: flex;
  }

  .header-floating-container {
    height: 58px;
    padding: 0 10px 0 18px;
  }

  .header-brand-wordmark {
    font-size: 1.1rem;
  }

  .btn-get-in-touch {
    padding: 7px 14px;
    font-size: 0.78rem;
  }
}