/* === CSS VARIABLES === */
:root {
  /* Colors */
  --primary: #1E293B;
  --secondary: #475569;
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --bg-main: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-section: #F1F5F9;
  --heading: #0F172A;
  --body: #64748B;
  --border: #E2E8F0;
  --card-bg: #FFFFFF;
  --success: #16A34A;
  --warning: #F59E0B;
  --error: #DC2626;

  /* Fallbacks mapping to maintain codebase stability */
  --black: var(--bg-main);
  --charcoal: var(--bg-alt);
  --charcoal-light: var(--border);
  --white: var(--body);
  --white-pure: var(--heading);
  --yellow: var(--accent);
  --yellow-dim: var(--accent-hover);
  --yellow-glow: var(--accent-glow);
  --gray: var(--secondary);
  --gray-dark: var(--border);

  /* Fonts */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;

  /* Layout */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --section-pad: clamp(50px, 6vw, 90px);
  --container: min(1280px, calc(100vw - clamp(32px, 10vw, 160px)));
}

/* === RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--body);
  overflow-x: hidden;
  line-height: 1.7;
  max-width: 1920px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title {
  font-family: var(--font-display);
  color: var(--heading);
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* === UTILITY === */
.container {
  width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.section-pad {
  padding: var(--section-pad) 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--yellow);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--white-pure);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--gray);
  max-width: 680px;
  line-height: 1.6;
  font-weight: 400;
}

.yellow {
  color: var(--yellow);
}

/* Glassmorphism card */
.glass-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.5s var(--ease-out-expo);
}

.glass-card:hover {
  background: var(--bg-main);
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 0 25px var(--yellow-glow);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

.reveal-delay-7 {
  transition-delay: 0.7s;
}

/* === NAVIGATION === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out-expo);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white-pure);
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo .logo-icon svg {
  width: 18px;
  height: 18px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--yellow);
  transition: width 0.3s var(--ease-out-expo);
}

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

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

.nav-cta {
  padding: 10px 24px !important;
  background: var(--yellow) !important;
  color: var(--black) !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--white-pure) !important;
  transform: scale(1.03);
}

.nav-cta::after {
  display: none !important;
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* === HERO === */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 100px 0 140px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245, 197, 24, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(245, 197, 24, 0.03) 0%, transparent 50%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  z-index: 2;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 32px;
  background: rgba(245, 197, 24, 0.05);
}

.hero-badge .pulse {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 32px;
  max-width: 900px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  animation: slideUp 1s var(--ease-out-expo) both;
}

.hero-title .line:nth-child(2) span {
  animation-delay: 0.15s;
}

.hero-title .line:nth-child(3) span {
  animation-delay: 0.3s;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-desc {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--gray);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 48px;
  animation: fadeIn 1s 0.5s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeIn 1s 0.7s both;
}

.btn-primary {
  height: 56px;
  padding: 0 36px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--accent-glow);
}

.btn-outline {
  height: 56px;
  padding: 0 36px;
  background: #FFFFFF;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--bg-alt);
}

.hero-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.hero-stats-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero-stat {
  padding: 28px 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yellow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
}

.hero-stat-num {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}

/* === KPI OVERVIEW === */
#overview {
  background: var(--charcoal);
  position: relative;
}

#overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.3), transparent);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.kpi-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--yellow);
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
}

.kpi-card:hover::before {
  opacity: 1;
  width: 60px;
}

.kpi-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--yellow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kpi-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
}

.kpi-number {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.kpi-number .suffix {
  font-size: 32px;
  color: var(--yellow);
}

.kpi-label {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-mono);
}

/* === BUSINESS PROCESS === */
#process {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.process-timeline {
  margin-top: 64px;
  position: relative;
  overflow-x: auto;
  padding-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) var(--charcoal);
}

.process-track {
  display: flex;
  gap: 0;
  min-width: max-content;
  position: relative;
  padding: 40px 0;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--charcoal-light);
  transform: translateY(-50%);
}

.process-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dim));
  transition: width 1.5s var(--ease-out-expo);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.3);
}

.process-step {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--charcoal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}

.process-node.active {
  border-color: var(--yellow);
  background: var(--yellow-glow);
  box-shadow: 0 0 30px rgba(245, 197, 24, 0.2);
}

.process-node:hover {
  border-color: var(--yellow);
  background: var(--yellow-glow);
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--yellow-glow);
  cursor: pointer;
}

.process-node:hover svg {
  stroke: var(--yellow);
}

.process-node svg {
  width: 24px;
  height: 24px;
  stroke: var(--gray);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s;
}

.process-node.active svg {
  stroke: var(--yellow);
}

.process-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-dark);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

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

.process-desc {
  font-size: 11px;
  color: var(--gray);
  max-width: 140px;
  line-height: 1.5;
}

/* === MANUFACTURING === */
#manufacturing {
  background: var(--charcoal);
  position: relative;
}

.mfg-flow {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mfg-step {
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.mfg-step-img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background: var(--charcoal-light);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.mfg-step-img .mfg-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal-light), var(--white-pure));
  position: relative;
}

.mfg-visual svg {
  width: 56px;
  height: 56px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1;
  opacity: 0.7;
}

.mfg-step-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 2px;
  opacity: 0.6;
}

.mfg-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mfg-step-title .arrow-down {
  display: none;
  width: 16px;
  height: 16px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 2;
}

.mfg-step-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.mfg-connector {
  display: none;
}

/* === PRODUCT CATEGORIES === */
#products {
  background: var(--black);
  position: relative;
}

.products-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.product-ring {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  position: relative;
  border-radius: 50%;
}

.product-ring svg.ring-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.product-ring svg.ring-bg circle {
  fill: none;
  stroke: var(--charcoal-light);
  stroke-width: 3;
}

.product-ring svg.ring-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.product-ring svg.ring-fill circle {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1.5s var(--ease-out-expo);
}

.product-ring.visible svg.ring-fill circle {
  stroke-dashoffset: var(--ring-offset);
}

.product-ring-inner {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-ring-inner svg {
  width: 32px;
  height: 32px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
}

.product-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-pct {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yellow);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* === INDUSTRIES === */
#industries {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.radial-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 500px;
}

.radial-center {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
  transition: all 0.4s var(--ease-out-expo);
}

.radial-center-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
}

.radial-center-sub {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.radial-node {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.03);
  z-index: 5;
  cursor: pointer;
}

.radial-node:hover {
  background: var(--bg-main);
  border-color: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 15px 30px var(--accent-glow);
}

.radial-node svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  margin-bottom: 6px;
}

.radial-node span {
  font-size: 11px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0.5px;
}

.radial-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow), rgba(245, 197, 24, 0.1));
  transform-origin: left center;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s;
}

.radial-line.visible {
  opacity: 0.4;
}

/* === INDIA MAP === */
#presence {
  background: var(--black);
  position: relative;
}

.map-layout {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.map-container {
  position: relative;
  background: var(--charcoal);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 40px;
  min-height: 500px;
  overflow: hidden;
}

.map-svg-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-svg-wrap svg {
  width: 100%;
  height: auto;
}

.map-svg-wrap svg path {
  fill: var(--bg-alt);
  stroke: var(--border);
  stroke-width: 1px;
  transition: all 0.4s var(--ease-out-expo);
}

.map-svg-wrap svg path:hover {
  fill: rgba(245, 158, 11, 0.08) !important;
  stroke: var(--accent) !important;
}

/* Highlight active states where Edge Spectra operates */
.map-svg-wrap svg path#up,
.map-svg-wrap svg path#mh,
.map-svg-wrap svg path#dl,
.map-svg-wrap svg path#ka,
.map-svg-wrap svg path#tn,
.map-svg-wrap svg path#tg,
.map-svg-wrap svg path#wb,
.map-svg-wrap svg path#rj,
.map-svg-wrap svg path#gj,
.map-svg-wrap svg path#hr,
.map-svg-wrap svg path#pb,
.map-svg-wrap svg path#mp,
.map-svg-wrap svg path#br {
  fill: rgba(245, 158, 11, 0.04);
  stroke: rgba(245, 158, 11, 0.35);
  stroke-width: 1.2px;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s;
}

.map-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--yellow);
  opacity: 0.4;
  animation: mapPulse 2s infinite;
}

@keyframes mapPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.map-dot:hover {
  transform: translate(-50%, -50%) scale(1.4);
}

.map-tooltip {
  position: absolute;
  background: var(--charcoal);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-out-expo);
  z-index: 100;
  min-width: 180px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.map-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.map-tooltip-city {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.map-tooltip-info {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

.map-tooltip-info strong {
  color: var(--yellow);
}

.map-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-stat-card {
  padding: 28px 24px;
}

.map-stat-card .map-stat-val {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--yellow);
  margin-bottom: 4px;
}

.map-stat-card .map-stat-lbl {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-mono);
}

/* === WHY CHOOSE US === */
#why {
  background: var(--charcoal);
  position: relative;
}

.diff-split-board {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.diff-column {
  border-radius: 24px;
  padding: 32px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.diff-column.spectra-column {
  background: var(--bg-main);
  border: 2.5px solid var(--accent);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

.diff-column-header {
  margin-bottom: 28px;
}

.diff-column-badge {
  display: inline-block;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(71, 85, 105, 0.1);
  color: var(--secondary);
  margin-bottom: 12px;
}

.diff-column-badge.badge-accent {
  background: var(--accent-glow);
  color: var(--accent);
}

.diff-column-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
}

.diff-column-subtitle {
  font-size: 13px;
  line-height: 1.5;
  color: var(--body);
}

.diff-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diff-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.diff-card.highlighted {
  border: 1.5px solid var(--border);
}

.diff-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.diff-card.highlighted:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 25px var(--accent-glow);
}

.diff-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.diff-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--body);
}

.diff-card-num.color-accent {
  color: var(--accent);
}

.diff-card-metric {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--body);
  font-weight: 600;
}

.diff-card-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.diff-card-heading.heading-accent {
  color: var(--heading);
}

.diff-card-heading svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.diff-card-heading svg.x-svg {
  stroke: var(--body);
  stroke-width: 3;
}

.diff-card-heading svg.check-svg {
  stroke: var(--accent);
  stroke-width: 3;
}

.diff-card-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--body);
}

/* === QUALITY === */
#quality {
  background: var(--black);
  position: relative;
}

.quality-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quality-badge {
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.quality-badge::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  opacity: 0.2;
}

.quality-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 197, 24, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.quality-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
}

.quality-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quality-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* === CUSTOMER JOURNEY === */
#journey {
  background: var(--charcoal);
  position: relative;
}

.journey-flow {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.journey-node {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  z-index: 2;
}

.journey-step:hover .journey-node {
  border-color: var(--yellow);
  box-shadow: 0 0 30px rgba(245, 197, 24, 0.15);
}

.journey-node svg {
  width: 26px;
  height: 26px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
}

.journey-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.journey-sublabel {
  font-size: 11px;
  color: var(--gray);
}

.journey-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 197, 24, 0.4), rgba(245, 197, 24, 0.1));
  position: relative;
  margin: 0 -8px;
  margin-bottom: 40px;
}

.journey-connector::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--yellow);
  border-top: 2px solid var(--yellow);
  transform: rotate(45deg);
  opacity: 0.5;
}

/* === TECHNOLOGY === */
#technology {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.tech-ecosystem {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 480px;
}

.tech-center {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 60px rgba(245, 197, 24, 0.15);
}

.tech-center-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
}

.tech-center-sub {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--charcoal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.tech-node {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
}

.tech-node:hover {
  background: var(--yellow-glow);
  border-color: var(--yellow);
  transform: scale(1.15);
  box-shadow: 0 10px 25px var(--yellow-glow);
}

.tech-node svg {
  width: 22px;
  height: 22px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 4px;
}

.tech-node span {
  font-size: 9px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

/* === BEFORE AFTER === */
#beforeafter {
  background: var(--charcoal);
  position: relative;
}

.ba-slider {
  margin-top: 56px;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  cursor: ew-resize;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.ba-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
}

.ba-before {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  color: rgba(0, 0, 0, 0.15);
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  background: linear-gradient(135deg, var(--charcoal-light), var(--white-pure));
  color: var(--yellow);
  clip-path: inset(0 0 0 50%);
}

.ba-before-inner,
.ba-after-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ba-before-inner svg,
.ba-after-inner svg {
  width: 64px;
  height: 64px;
  stroke-width: 1;
  fill: none;
}

.ba-before-inner svg {
  stroke: rgba(0, 0, 0, 0.12);
}

.ba-after-inner svg {
  stroke: var(--yellow);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--yellow);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  cursor: ew-resize;
}

.ba-handle svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2.5;
}

.ba-label-tag {
  position: absolute;
  bottom: 20px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 12;
}

.ba-label-before {
  left: 20px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--gray);
}

.ba-label-after {
  right: 20px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
}

/* === IMPACT STATS === */
#impact {
  background: var(--black);
  position: relative;
}

#impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245, 197, 24, 0.04) 0%, transparent 60%);
}

.impact-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.impact-card {
  text-align: center;
  padding: 48px 24px;
  position: relative;
}

.impact-number {
  font-size: clamp(56px, 8vw, 80px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, var(--white) 40%, var(--gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-suffix {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--yellow);
  -webkit-text-fill-color: var(--yellow);
}

.impact-label {
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-mono);
}

/* === PROJECT DISTRIBUTION === */
#distribution {
  background: var(--charcoal);
  position: relative;
}

.dist-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dist-card {
  padding: 36px 28px;
  text-align: center;
}

.dist-ring-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
}

.dist-ring-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.dist-ring-wrap .ring-bg {
  fill: none;
  stroke: var(--charcoal-light);
  stroke-width: 4;
}

.dist-ring-wrap .ring-fill {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 314.159;
  stroke-dashoffset: 314.159;
  transition: stroke-dashoffset 1.5s var(--ease-out-expo);
}

.dist-ring-wrap.visible .ring-fill {
  stroke-dashoffset: var(--ring-offset);
}

.dist-ring-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--yellow);
}

.dist-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.dist-desc {
  font-size: 12px;
  color: var(--gray);
}

/* === FOOTER === */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 80px 0 40px;
}

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

.footer-brand-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col-title {
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 12px;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-dark);
  font-family: var(--font-mono);
}

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

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

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

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

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

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

  .map-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 60px;
  }

  .hero-slider-wrap {
    height: 360px;
  }

  .hero-slider-track img {
    height: 360px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    letter-spacing: -1.5px;
  }

  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .mfg-flow {
    grid-template-columns: 1fr;
  }

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

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

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

  .diff-split-board {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .journey-flow {
    flex-direction: column;
  }

  .journey-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, rgba(245, 197, 24, 0.4), rgba(245, 197, 24, 0.1));
    margin: 0;
    margin-left: 0;
  }

  .journey-connector::after {
    right: auto;
    bottom: -3px;
    top: auto;
    left: -3px;
    transform: rotate(135deg);
  }

  .radial-wrap {
    min-height: 400px;
  }

  .tech-ecosystem {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats-inner {
    grid-template-columns: 1fr;
  }
}

/* === HERO SLIDER === */
.hero-slider-wrap {
  position: relative;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.hero-slider-track {
  display: flex;
  flex-direction: column;
  animation: slideVertical 15s infinite linear;
}

.hero-slider-track img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes slideVertical {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-75%);
  }
}

/* === CHAT BOT === */
.chat-fab-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-fab-tooltip {
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: tooltipFloat 2s ease-in-out infinite alternate;
}

@keyframes tooltipFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-4px);
  }
}

.chat-fab-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  transition: all 0.3s var(--ease-out-expo);
  padding: 0;
}

.chat-fab-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.chat-fab-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
}

.chat-notification-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #ef4444;
  border: 2px solid var(--black);
  border-radius: 50%;
  animation: pulseRed 2s infinite;
}

@keyframes pulseRed {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.chat-window-panel {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 360px;
  height: 480px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
}

.chat-window-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.chat-header {
  padding: 16px 20px;
  background: var(--charcoal);
  border-bottom: 1px solid var(--charcoal-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-agent-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
}

.chat-agent-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.chat-agent-status {
  font-size: 10px;
  color: #10b981;
  font-weight: 500;
}

.chat-close-btn {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.chat-close-btn:hover {
  color: var(--white-pure);
}

.chat-close-btn svg {
  width: 20px;
  height: 20px;
}

.chat-messages-container {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  animation: messageIn 0.3s ease-out;
}

.chat-msg.system {
  align-self: flex-start;
  background: var(--charcoal-light);
  color: var(--white);
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--yellow);
  color: var(--black);
  border-bottom-right-radius: 4px;
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg-suggested {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  animation: messageIn 0.3s ease-out;
}

.suggested-btn {
  background: var(--charcoal);
  border: 1px solid var(--charcoal-light);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.suggested-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.chat-input-form {
  padding: 12px 16px;
  background: var(--charcoal);
  border-top: 1px solid var(--charcoal-light);
  display: flex;
  gap: 8px;
  align-items: center;
}

.chat-input-form input {
  flex: 1;
  border: 1px solid var(--charcoal-light);
  background: var(--charcoal);
  padding: 10px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--white);
  outline: none;
  font-family: var(--font-display);
}

.chat-input-form input::placeholder {
  color: var(--gray);
}

.chat-send-btn {
  background: var(--yellow);
  border: none;
  color: var(--black);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.chat-send-btn:hover {
  transform: scale(1.05);
}

.chat-send-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 480px) {
  .chat-window-panel {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

/* === CONTACT FORM === */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--charcoal);
  border: 1px solid var(--charcoal-light);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  outline: none;
  transition: all 0.3s var(--ease-out-expo);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 15px var(--yellow-glow);
  background: var(--charcoal);
}

.quote-success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
  border-radius: 20px;
  z-index: 10;
  padding: 20px;
}

.quote-success-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.quote-success-card {
  max-width: 400px;
  text-align: center;
  animation: modalScale 0.4s var(--ease-out-expo);
}

@keyframes modalScale {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow-glow);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon-wrap svg {
  width: 28px;
  height: 28px;
}

/* Responsive grid stack */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .contact-form-panel {
    padding: 24px !important;
  }
}

/* === TESTIMONIALS SECTION === */
.testimonial-card {
  transition: all 0.4s var(--ease-out-expo) !important;
  background: var(--bg-main) !important;
}

.testimonial-card:hover {
  border-color: var(--accent) !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06), 0 0 25px var(--accent-glow) !important;
}

.testimonial-text {
  font-family: var(--font-body);
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .testimonial-card {
    padding: 30px !important;
    min-height: auto !important;
  }
}