/* ═══════════════════════════════════════════════════════
   ENERLYTIX AI — ENTERPRISE B2B PRODUCT WEBSITE
   Brand: Coral #E8476C → Red #E05040 → Amber #F5A623
   Typography: Sora (headings) + Plus Jakarta Sans (body)
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

:root {
  --bg: #FAFAFA;
  --bg-white: #FFFFFF;
  --bg-warm: #FDF8F4;
  --bg-dark: #1A1A2E;
  --bg-dark-card: #232340;
  --brand-pink: #E8476C;
  --brand-red: #E05040;
  --brand-orange: #F5A623;
  --gradient: linear-gradient(135deg, #E8476C, #E05040, #F5A623);
  --gradient-hero: linear-gradient(135deg, #B8332A 0%, #D04030 30%, #E05040 50%, #E87040 70%, #F5A623 100%);
  --gradient-soft: linear-gradient(135deg, rgba(232,71,108,0.06), rgba(245,166,35,0.06));
  --text: #1A1A2E;
  --text-secondary: #555770;
  --text-dim: #8E90A6;
  --border: #E8E8EE;
  --border-hover: #D0D0DC;
  --section-pad: clamp(72px, 10vw, 110px);
  --radius: 14px;
  --radius-lg: 22px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg); color: var(--text); overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  line-height: 1.65; font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 12px 0; transition: all 0.3s ease;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled { box-shadow: 0 1px 4px rgba(0,0,0,0.06); border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; border-radius: 8px; }
.brand-logo--sm { width: 28px; height: 28px; }
.brand-text { font-family: 'Sora', sans-serif; font-size: 1.55rem; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.brand-text em { font-style: normal; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
  padding: 8px 14px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.03); }
.nav-links a.active { color: var(--brand-red); font-weight: 600; }
.nav-cta {
  background: var(--gradient) !important; color: #fff !important;
  padding: 9px 22px !important; border-radius: 100px !important;
  font-weight: 700 !important; font-size: 0.84rem !important; transition: all 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(224,80,64,0.25); background: var(--gradient) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.92rem;
  padding: 14px 30px; border-radius: 100px; cursor: pointer;
  transition: all 0.25s ease; border: 2px solid transparent;
}
.btn-brand { background: var(--gradient); color: #fff; box-shadow: 0 4px 16px rgba(224,80,64,0.2); }
.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,80,64,0.3); }
.btn-white { background: #fff; color: var(--brand-red); box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.12); }
.btn-outline { background: transparent; color: var(--brand-red); border-color: var(--border); }
.btn-outline:hover { border-color: var(--brand-red); background: rgba(224,80,64,0.04); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.84rem; }

/* ═══ HERO VARIANTS ═══ */
.hero-gradient {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 80px; background: var(--gradient-hero); overflow: hidden; color: #fff;
}
.hero-gradient .hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.06) 0%, transparent 40%);
}
.hero-gradient .hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.5) 1px, transparent 0);
  background-size: 32px 32px;
}
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* Page hero (non-home) — compact so page content is visible without scrolling */
.page-hero {
  position: relative; padding: 120px 0 48px; background: var(--gradient-hero);
  overflow: hidden; color: #fff;
}
.page-hero .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(255,255,255,0.08) 0%, transparent 50%); }
.page-hero .hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.5) 1px, transparent 0); background-size: 32px 32px; }
.page-hero-content { position: relative; z-index: 1; max-width: 640px; }
.page-hero .hero-tag { font-size: 0.74rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; margin-bottom: 12px; }
.page-hero p { font-size: 1.02rem; color: rgba(255,255,255,0.8); line-height: 1.65; max-width: 520px; }

/* Home hero layout */
.hero-split { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 18px; border-radius: 100px; margin-bottom: 24px; backdrop-filter: blur(8px);
}
.badge-pulse { width: 7px; height: 7px; background: #fff; border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.8); } }
.hero-title { font-family: 'Sora', sans-serif; font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.08; letter-spacing: -2px; margin-bottom: 20px; }
.hero-desc { font-size: 1.08rem; line-height: 1.8; color: rgba(255,255,255,0.85); max-width: 500px; }
.hero-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px; padding-top: 0;
}
.hero-metric {
  text-align: center; padding: 20px 16px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; backdrop-filter: blur(8px);
}
.hm-value { display: block; font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; letter-spacing: -1px; }
.hm-label { display: block; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 2px; }

.hero-logo-wrap { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1; max-width: 420px; margin: 0 auto; }
/* Glow pulse behind logo */
.hero-logo-glow { position: absolute; inset: -20%; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%); animation: glowPulse 4s ease-in-out infinite; }
@keyframes glowPulse { 0%,100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.08); opacity: 1; } }
/* Logo image with entrance animation */
.hero-logo-img {
  width: 55%; height: auto; border-radius: 24px; position: relative; z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 80px rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.95); padding: 16px;
  animation: logoEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards, logoFloat 6s ease-in-out 1s infinite;
}
@keyframes logoEntrance { 0% { opacity: 0; transform: scale(0.7) translateY(30px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
/* Rotating rings */
.hero-logo-ring {
  position: absolute; inset: 8%; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  animation: ringRotate 20s linear infinite;
}
.hero-logo-ring--2 { inset: 2%; border-style: dashed; border-color: rgba(255,255,255,0.08); animation-direction: reverse; animation-duration: 30s; }
/* Third ring — tighter, faster */
.hero-logo-ring--3 { inset: 14%; border: 1px dotted rgba(255,255,255,0.1); animation-duration: 15s; }
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
/* Orbiting dots */
.hero-orbit-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.7); z-index: 3;
  box-shadow: 0 0 12px rgba(255,255,255,0.4);
}
.hero-orbit-dot--1 { top: 5%; left: 50%; animation: orbitDot1 8s linear infinite; }
.hero-orbit-dot--2 { bottom: 12%; right: 10%; width: 6px; height: 6px; background: rgba(245,166,35,0.8); animation: orbitDot2 12s linear infinite; box-shadow: 0 0 12px rgba(245,166,35,0.4); }
.hero-orbit-dot--3 { top: 50%; left: 2%; width: 5px; height: 5px; background: rgba(232,71,108,0.7); animation: orbitDot3 10s linear infinite; box-shadow: 0 0 10px rgba(232,71,108,0.4); }
@keyframes orbitDot1 {
  0% { top: 5%; left: 50%; } 25% { top: 50%; left: 95%; } 50% { top: 95%; left: 50%; } 75% { top: 50%; left: 5%; } 100% { top: 5%; left: 50%; }
}
@keyframes orbitDot2 {
  0% { bottom: 12%; right: 10%; } 25% { bottom: 50%; right: -2%; } 50% { bottom: 88%; right: 10%; } 75% { bottom: 50%; right: 90%; } 100% { bottom: 12%; right: 10%; }
}
@keyframes orbitDot3 {
  0% { top: 50%; left: 2%; } 33% { top: 10%; left: 60%; } 66% { top: 80%; left: 80%; } 100% { top: 50%; left: 2%; }
}
/* Sparkle particles */
.hero-sparkle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: #fff; z-index: 1; opacity: 0;
  animation: sparkle 3s ease-in-out infinite;
}
.hero-sparkle--1 { top: 15%; left: 20%; animation-delay: 0s; }
.hero-sparkle--2 { top: 70%; right: 15%; animation-delay: 1s; }
.hero-sparkle--3 { bottom: 20%; left: 30%; animation-delay: 2s; width: 3px; height: 3px; }
.hero-sparkle--4 { top: 30%; right: 25%; animation-delay: 0.5s; width: 3px; height: 3px; }
.hero-sparkle--5 { bottom: 35%; right: 35%; animation-delay: 1.5s; }
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

/* ═══ SECTIONS ═══ */
.section { position: relative; padding: var(--section-pad) 0; overflow: hidden; }
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--gradient { background: var(--gradient-hero); color: #fff; }
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin-left: auto; margin-right: auto; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-red); margin-bottom: 12px; }
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--gradient); border-radius: 2px; }
.section-tag--light { color: rgba(255,255,255,0.65); }
.section-tag--light::before { background: rgba(255,255,255,0.4); }
.section-title { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.8px; line-height: 1.2; color: var(--text); margin-bottom: 14px; }
.section-title--light { color: #fff; }
.section-desc { font-size: 1.02rem; color: var(--text-secondary); max-width: 540px; line-height: 1.7; }
.section-desc--light { color: rgba(255,255,255,0.7); }

/* Section decorations */
.section-deco { position: absolute; pointer-events: none; z-index: 0; }
.deco-tri-right { right: -80px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-style: solid; border-width: 180px 0 180px 200px; border-color: transparent transparent transparent rgba(232,71,108,0.04); }
.deco-tri-left { left: -80px; top: 40%; transform: translateY(-40%); width: 0; height: 0; border-style: solid; border-width: 160px 180px 160px 0; border-color: transparent rgba(245,166,35,0.04) transparent transparent; }
.deco-circle { border-radius: 50%; border: 2px solid rgba(224,80,64,0.06); }
.deco-circle-lg { width: 400px; height: 400px; right: -120px; top: -80px; }
.deco-circle-sm { width: 200px; height: 200px; left: -60px; bottom: -40px; }
.deco-diamond { width: 200px; height: 200px; background: rgba(232,71,108,0.025); transform: rotate(45deg); }
.deco-tri-white { width: 0; height: 0; border-style: solid; }
.deco-tri-white-r { right: -60px; top: 50%; transform: translateY(-50%); border-width: 200px 0 200px 220px; border-color: transparent transparent transparent rgba(255,255,255,0.04); }
.deco-tri-white-l { left: -40px; bottom: 10%; border-width: 140px 160px 140px 0; border-color: transparent rgba(255,255,255,0.03) transparent transparent; }

/* ═══ TRUST BAR ═══ */
.trust-bar { background: var(--bg); padding: 28px 0; border-bottom: 1px solid var(--border); }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; font-weight: 600; color: var(--text-secondary); }
.trust-divider { width: 1px; height: 20px; background: var(--border); }

/* ═══ SERVICE CARDS ═══ */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.service-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 28px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.sc-hover-glow { position: absolute; bottom: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%); opacity: 0; transition: opacity 0.4s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(224,80,64,0.08), 0 4px 12px rgba(0,0,0,0.04); border-color: rgba(224,80,64,0.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .sc-hover-glow { opacity: 1; }
.sc-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gradient); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: transform 0.3s ease; }
.sc-icon svg { width: 24px; height: 24px; color: #fff; }
.service-card:hover .sc-icon { transform: scale(1.08) rotate(-3deg); }
.service-card h3 { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ═══ GLASS CARDS (on gradient bg) ═══ */
.glass-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius); padding: 30px 28px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden;
}
.glass-card:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.glass-card h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.glass-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.55; }
.glass-shine { position: absolute; top: -100%; left: -100%; width: 200%; height: 200%; background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%); transition: all 0.6s ease; }
.glass-card:hover .glass-shine { top: -50%; left: -50%; }

/* ═══ GRADIENT-REVEAL CARDS ═══ */
.gradient-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 24px; text-align: center;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden;
}
.gradient-card-bg { position: absolute; inset: 0; background: var(--gradient); opacity: 0; transition: opacity 0.4s ease; }
.gradient-card:hover .gradient-card-bg { opacity: 1; }
.gradient-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 20px 48px rgba(224,80,64,0.15); }
.gradient-card:hover h3, .gradient-card:hover p { color: #fff; }
.gc-icon { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 18px; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: all 0.3s ease; }
.gradient-card:hover .gc-icon { background: rgba(255,255,255,0.2); }
.gc-icon svg { width: 26px; height: 26px; color: var(--brand-red); transition: color 0.3s; }
.gradient-card:hover .gc-icon svg { color: #fff; }
.gradient-card h3 { font-family: 'Sora', sans-serif; font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 8px; position: relative; z-index: 1; transition: color 0.3s; }
.gradient-card p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.55; position: relative; z-index: 1; transition: color 0.3s; }

/* ═══ RESULTS / OUTCOME CARD (gradient bg) ═══ */
.results-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.results-card-bg { position: absolute; inset: 0; background: var(--gradient-hero); }
.results-card-content { position: relative; z-index: 1; padding: 44px; color: #fff; }
.rc-header { font-family: 'Sora', sans-serif; font-size: 0.74rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.rc-items { display: flex; flex-direction: column; gap: 20px; }
.rc-item { display: flex; align-items: center; gap: 16px; }
.rc-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.25s ease; }
.rc-item:hover .rc-icon-wrap { transform: scale(1.08); }
.rc-icon-wrap svg { color: #fff; }
.rc-item h4 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.rc-item p { font-size: 0.84rem; color: rgba(255,255,255,0.7); }

/* ═══ WHY-US PILLARS ═══ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.why-pillars { display: flex; flex-direction: column; gap: 14px; }
.wp-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--radius); background: var(--bg-warm); border: 1px solid var(--border); transition: all 0.25s ease; }
.wp-item:hover { transform: translateX(6px); border-color: rgba(224,80,64,0.15); box-shadow: 0 6px 20px rgba(224,80,64,0.06); }
.wp-bar { width: 4px; min-height: 44px; border-radius: 4px; background: var(--gradient); flex-shrink: 0; margin-top: 2px; }
.wp-item h4 { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.wp-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ═══ PRICING CARDS ═══ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 32px; transition: all 0.3s ease; position: relative; }
.pricing-card.featured { border-color: var(--brand-red); box-shadow: 0 12px 40px rgba(224,80,64,0.12); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.pricing-name { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.pricing-desc { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 24px; }
.pricing-price { font-family: 'Sora', sans-serif; font-size: 2.2rem; font-weight: 800; margin-bottom: 4px; }
.pricing-price span { font-size: 0.88rem; font-weight: 500; color: var(--text-dim); }
.pricing-period { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 0.88rem; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--brand-red); font-weight: 700; font-size: 0.82rem; }

/* ═══ CONTACT FORM ═══ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem; color: var(--text);
  background: var(--bg-white); transition: all 0.2s ease; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand-red); box-shadow: 0 0 0 3px rgba(224,80,64,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-card { background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 24px; }
.ci-item:last-child { margin-bottom: 0; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 20px; height: 20px; color: var(--brand-red); }
.ci-item h4 { font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.ci-item p { font-size: 0.84rem; color: var(--text-secondary); }

/* ═══ BLOG CARDS ═══ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.blog-thumb { height: 180px; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-thumb-pattern { position: absolute; inset: 0; opacity: 0.3; background-image: radial-gradient(circle at 2px 2px, rgba(224,80,64,0.15) 1px, transparent 0); background-size: 20px 20px; }
.blog-thumb-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--gradient); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.blog-thumb-icon svg { width: 22px; height: 22px; color: #fff; }
.blog-body { padding: 24px; }
.blog-meta { font-size: 0.76rem; font-weight: 600; color: var(--brand-red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card h3 { font-family: 'Sora', sans-serif; font-size: 1.02rem; font-weight: 700; line-height: 1.35; margin-bottom: 8px; color: var(--text); }
.blog-card p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.55; }

/* ═══ CTA SECTION ═══ */
.cta-section { position: relative; padding: 100px 0; background: var(--gradient-hero); color: #fff; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.07) 0%, transparent 50%); }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-logo { width: 68px; height: 68px; object-fit: contain; margin: 0 auto 24px; border-radius: 16px; background: rgba(255,255,255,0.95); padding: 10px; box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
.cta-inner h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 14px; }
.cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ═══ FOOTER ═══ */
.footer { background: var(--bg-dark); color: #fff; padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer .brand-text { color: #fff; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 10px; line-height: 1.5; }
.footer-location { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 6px; }
.footer-col h4 { font-family: 'Sora', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; margin-bottom: 10px; }
.footer-col a:hover { color: var(--brand-orange); }
.footer-bottom { padding-top: 24px; font-size: 0.78rem; color: rgba(255,255,255,0.3); display: flex; justify-content: space-between; }

/* ═══ ANIMATIONS ═══ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-logo-wrap { max-width: 280px; margin-top: 40px; }
  .card-grid-3, .blog-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-deco { display: none; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: #fff; border-left: 1px solid var(--border);
    flex-direction: column; justify-content: center; gap: 8px; padding: 40px;
    transition: right 0.3s ease; z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; padding: 12px 16px; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-gradient { min-height: auto; padding: 120px 0 100px; }
  .hero-metrics { flex-direction: column; gap: 16px; }
  .card-grid-3, .card-grid-2, .blog-grid, .pricing-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; letter-spacing: -1px; }
  .hero-ctas, .cta-buttons { flex-direction: column; }
  .hero-ctas .btn, .cta-buttons .btn { width: 100%; justify-content: center; }
  .hero-logo-wrap { max-width: 220px; }
  .slideshow { height: auto; }
  .slide-card { flex-direction: column; }
  .slide-visual { min-height: 200px; }
}

/* ═══ HERO SUBTITLE ═══ */
.hero-subtitle {
  font-family: 'Sora', sans-serif; font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 18px;
  letter-spacing: -0.3px;
}

/* ═══ SCROLL-DOWN INDICATOR — removed per-section, see global floating btn below ═══ */

/* ═══ GLOBAL FLOATING SCROLL-DOWN BUTTON ═══ */
.scroll-fab {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 900; display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; transition: all 0.4s ease; opacity: 1;
}
.scroll-fab.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
.scroll-fab-pill {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-dark); color: #fff; border: 1px solid rgba(255,255,255,0.1);
  width: 44px; height: 44px; border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}
.scroll-fab:hover .scroll-fab-pill {
  background: var(--brand-red); box-shadow: 0 8px 28px rgba(224,80,64,0.4);
  transform: scale(1.1);
}
.scroll-fab-arrow {
  width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
  animation: fabBounce 2s ease infinite;
}
.scroll-fab-arrow svg { width: 14px; height: 14px; }
@keyframes fabBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ═══ PRODUCT SLIDESHOW ═══ */
.slideshow-section { background: var(--bg-dark); color: #fff; padding: var(--section-pad) 0; overflow: hidden; }
.slideshow-wrap { position: relative; padding: 0 60px; }
.slideshow { position: relative; width: 100%; overflow: hidden; border-radius: var(--radius-lg); }
.slide-track {
  display: flex; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Prev/Next outside the slide */
.slide-prev, .slide-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease; flex-shrink: 0;
}
.slide-prev { left: 0; }
.slide-next { right: 0; }
.slide-prev:hover, .slide-next:hover { background: var(--brand-red); border-color: var(--brand-red); box-shadow: 0 4px 16px rgba(224,80,64,0.35); }
.slide-prev svg, .slide-next svg { width: 18px; height: 18px; color: #fff; }
.slide {
  min-width: 100%; padding: 0;
}
.slide-card {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  background: var(--bg-dark-card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden; min-height: 420px;
}
.slide-content {
  padding: 48px 44px; display: flex; flex-direction: column; justify-content: center;
}
.slide-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brand-orange); margin-bottom: 16px;
}
.slide-badge--coming { color: var(--text-dim); }
.slide-content h3 {
  font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 12px; color: #fff;
}
.slide-content p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }
.slide-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.slide-features li {
  font-size: 0.88rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 10px;
}
.slide-features li::before { content: '✓'; color: var(--brand-orange); font-weight: 700; font-size: 0.8rem; }
.slide-visual {
  background: var(--bg-warm); display: flex; align-items: center; justify-content: center;
  padding: 24px; min-height: 420px; position: relative; overflow: hidden;
}
.slide-visual img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.slide-visual--coming {
  background: linear-gradient(135deg, rgba(232,71,108,0.05), rgba(245,166,35,0.05));
  flex-direction: column; gap: 16px;
}
.slide-coming-icon {
  width: 80px; height: 80px; border-radius: 20px; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
}
.slide-coming-icon svg { width: 36px; height: 36px; color: #fff; }
.slide-coming-text { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dim); }

/* Slide dots / progress */
.slide-nav { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 24px; }
.slide-dots { display: flex; gap: 8px; }
.slide-dot {
  width: 32px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.15);
  cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.slide-dot.active { background: rgba(255,255,255,0.25); }
.slide-dot-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 0;
  background: var(--gradient); border-radius: 4px;
}
.slide-dot.active .slide-dot-fill { animation: dotFill 6s linear forwards; }
@keyframes dotFill { from { width: 0; } to { width: 100%; } }
.slide-prev, .slide-next {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s ease; flex-shrink: 0;
}
.slide-prev:hover, .slide-next:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.slide-prev svg, .slide-next svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }

/* ═══ BLOG MODAL ═══ */
.blog-modal-overlay {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.blog-modal-overlay.open { opacity: 1; pointer-events: auto; }
.blog-modal {
  background: var(--bg-white); border-radius: var(--radius-lg);
  max-width: 720px; width: 100%; max-height: 85vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.97); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.blog-modal-overlay.open .blog-modal { transform: translateY(0) scale(1); }
.blog-modal-close {
  position: sticky; top: 16px; float: right; margin: 16px 16px 0 0;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg-white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: all 0.2s ease;
}
.blog-modal-close:hover { background: var(--brand-red); border-color: var(--brand-red); }
.blog-modal-close:hover svg { color: #fff; }
.blog-modal-close svg { width: 16px; height: 16px; color: var(--text-dim); }
.blog-modal-body { padding: 20px 40px 40px; }
.blog-modal-body .blog-meta { margin-bottom: 12px; }
.blog-modal-body h2 { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 20px; color: var(--text); }
.blog-modal-body h3 { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; margin: 28px 0 10px; color: var(--text); }
.blog-modal-body p { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.blog-modal-body ul { padding-left: 20px; margin-bottom: 14px; }
.blog-modal-body li { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 4px; }

/* ═══ SUCCESS ACKNOWLEDGMENT ═══ */
.ack-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity 0.3s ease;
}
.ack-overlay.open { opacity: 1; }
.ack-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  padding: 48px; max-width: 440px; width: 100%; text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: translateY(20px) scale(0.95); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.ack-overlay.open .ack-card { transform: translateY(0) scale(1); }
.ack-icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; animation: ackPop 0.5s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
@keyframes ackPop { from { transform: scale(0); } to { transform: scale(1); } }
.ack-card h3 {
  font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
}
.ack-card p { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.ack-card .btn { min-width: 160px; justify-content: center; }
/* Spinner for loading state */
.btn-spinner {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%; display: inline-block;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══ SERVICES CARDS ═══ */
.services-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
/* Hover glow */
.svc-card::after {
  content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(224,80,64,0.1); border-color: rgba(224,80,64,0.15); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--gradient);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: transform 0.3s ease; box-shadow: 0 4px 16px rgba(224,80,64,0.2);
}
.svc-icon svg { width: 26px; height: 26px; color: #fff; }
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-5deg); }
.svc-card h3 { font-family: 'Sora', sans-serif; font-size: 1.08rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* Feature list inside service cards — dark text for light bg */
.svc-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.svc-features li {
  font-size: 0.86rem; color: var(--text-secondary); display: flex; align-items: center; gap: 10px;
  padding: 6px 0; border-bottom: 1px solid var(--border); transition: all 0.2s ease;
}
.svc-features li:last-child { border-bottom: none; }
.svc-features li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-features li::before { content: '\2713'; font-size: 0.7rem; font-weight: 800; color: var(--brand-red); display: inline-flex; align-items: center; justify-content: center; }
.svc-card:hover .svc-features li { padding-left: 4px; }

@media (max-width: 768px) {
  .slide-card { grid-template-columns: 1fr; }
  .slide-visual { min-height: 240px; }
  .services-showcase { grid-template-columns: 1fr; }
  .slideshow-wrap { padding: 0 48px; }
  .slide-prev, .slide-next { width: 36px; height: 36px; }
  .slide-prev svg, .slide-next svg { width: 14px; height: 14px; }
}