/* ===========================
   Variables & Reset — LIGHT THEME
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:  #ffffff;
  --bg2: #f8fafc;
  --bg3: #f1f5f9;
  --p1:  #5b52e8;
  --p2:  #0099cc;
  --accent: #f59e0b;
  --success: #059669;
  --grad:  linear-gradient(135deg, #5b52e8, #0099cc);
  --grad2: linear-gradient(135deg, #5b52e8 0%, #3b82f6 50%, #0099cc 100%);
  --t1: #0f172a;
  --t2: #475569;
  --t3: #94a3b8;
  --border: rgba(15,23,42,0.09);
  --glass: rgba(255,255,255,0.92);
  --glow:  0 4px 30px rgba(91,82,232,0.12);
  --shadow: 0 2px 20px rgba(15,23,42,0.08);
  --shadow-md: 0 8px 40px rgba(15,23,42,0.1);
  --r1: 8px; --r2: 14px; --r3: 20px;
  --tr: all 0.28s cubic-bezier(0.4,0,0.2,1);
  --nav: 72px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--t1); line-height: 1.6; overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--p1); border-radius: 3px; }

h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
img { max-width: 100%; display: block; }

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

/* Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }

.section-head { text-align: center; margin-bottom: 60px; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(91,82,232,0.08); border: 1px solid rgba(91,82,232,0.2);
  border-radius: 100px; font-size: 12px; font-weight: 700;
  color: var(--p1); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.section-title { font-size: clamp(30px, 5vw, 50px); font-weight: 800; margin-bottom: 14px; color: var(--t1); }
.section-sub { font-size: 17px; color: var(--t2); max-width: 580px; margin: 0 auto; }

/* Cards */
.card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--r3); box-shadow: var(--shadow);
  transition: var(--tr);
}
.card:hover { border-color: rgba(91,82,232,0.25); box-shadow: var(--shadow-md), 0 0 0 3px rgba(91,82,232,0.05); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  transition: var(--tr); position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 4px 18px rgba(91,82,232,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(91,82,232,0.45); }
.btn-ghost { background: transparent; color: var(--t1); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--p1); background: rgba(91,82,232,0.05); transform: translateY(-2px); color: var(--p1); }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ===========================
   Navigation
=========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav); z-index: 1000; transition: var(--tr);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); box-shadow: 0 2px 16px rgba(15,23,42,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

/* FebTech Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-fbox {
  width: 44px; height: 44px;  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; font-style: italic; color: #fff;
  border-radius: 4px; line-height: 1;
}
.logo-wordmark { display: flex; flex-direction: column; }
.logo-name {
  font-size: 18px; font-weight: 900; color: #0f172a; letter-spacing: -0.02em; line-height: 1;
}
.logo-name .feb { color: #0052e0; }
.logo-tagline { font-size: 8.5px; font-style: italic; color: #64748b; letter-spacing: 0.04em; margin-top: 1px; font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  padding: 8px 14px; border-radius: 100px;
  font-size: 14px; font-weight: 500; color: var(--t2);
}
.nav-links a:hover { color: var(--p1); background: rgba(91,82,232,0.06); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--t1); border-radius: 2px; transition: var(--tr); display: block; }

.mob-nav {
  display: none; position: fixed; top: var(--nav); left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 20px 24px 24px; z-index: 999;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}
.mob-nav.open { display: block; }
.mob-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mob-nav ul a { display: block; padding: 12px 16px; border-radius: var(--r1); font-size: 15px; color: var(--t2); }
.mob-nav ul a:hover { color: var(--p1); background: rgba(91,82,232,0.06); }
.mob-nav .btn { width: 100%; justify-content: center; margin-top: 12px; }

/* ===========================
   Hero
=========================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  padding-top: var(--nav);
  background: linear-gradient(135deg, #fafbff 0%, #eef2ff 40%, #f0f9ff 100%);
}

#p-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }

.glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.glow-1 { width: 700px; height: 700px; background: rgba(91,82,232,0.08); top: -150px; left: -200px; }
.glow-2 { width: 600px; height: 600px; background: rgba(0,153,204,0.06); bottom: -100px; right: -150px; }

.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; background: rgba(91,82,232,0.08);
  border: 1px solid rgba(91,82,232,0.2); border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--p1); margin-bottom: 32px;
  animation: fadeUp 0.8s ease;
}
.live-dot {
  width: 8px; height: 8px; background: var(--success); border-radius: 50%;
  box-shadow: 0 0 6px var(--success); animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(40px, 7vw, 78px); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.1s both; color: var(--t1);
}
.hero-sub {
  font-size: clamp(17px, 2.5vw, 20px); color: var(--t2);
  margin-bottom: 16px; animation: fadeUp 0.8s ease 0.2s both;
}

.type-row {
  display: flex; align-items: center; gap: 10px;
  font-size: clamp(17px, 2.5vw, 20px); color: var(--t2);
  margin-bottom: 44px; animation: fadeUp 0.8s ease 0.25s both;
}
#typed { color: var(--p1); font-weight: 700; }
.cursor-blink {
  display: inline-block; width: 2px; height: 1.1em;
  background: var(--p1); margin-left: 2px; animation: blink 1s step-end infinite;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; animation: fadeUp 0.8s ease 0.3s both; }

.hero-kpis { display: flex; flex-wrap: wrap; gap: 36px; animation: fadeUp 0.8s ease 0.4s both; }
.kpi-val { font-size: 28px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.kpi-lbl { font-size: 12px; color: var(--t3); margin-top: 2px; }

/* Floating tech badges */
.hero-visual { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 42%; max-width: 560px; z-index: 1; }
.float-wrap { position: relative; width: 100%; aspect-ratio: 1; }
.fbadge {
  position: absolute; padding: 10px 18px;
  background: rgba(255,255,255,0.88); border: 1px solid rgba(91,82,232,0.15);
  border-radius: var(--r2); backdrop-filter: blur(12px);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; white-space: nowrap; color: var(--t1);
  box-shadow: 0 4px 20px rgba(15,23,42,0.08);
}
.fbadge-icon { font-size: 18px; }
.fb1 { top: 8%; left: 0%; animation: fl 6s ease-in-out infinite; }
.fb2 { top: 28%; right: 0%; animation: fl 8s ease-in-out infinite 1s; }
.fb3 { top: 50%; left: 5%; animation: fl 7s ease-in-out infinite 0.5s; }
.fb4 { bottom: 22%; right: 8%; animation: fl 9s ease-in-out infinite 1.5s; }
.fb5 { bottom: 5%; left: 25%; animation: fl 6s ease-in-out infinite 2s; }
.fb6 { top: 68%; right: 20%; animation: fl 7s ease-in-out infinite 0.8s; }

.hero-center-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 170px; height: 170px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(91,82,232,0.12), rgba(0,153,204,0.12));
  border: 1.5px solid rgba(91,82,232,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 56px;
  box-shadow: 0 0 50px rgba(91,82,232,0.15);
  animation: rotateGlow 8s linear infinite;
}
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(91,82,232,0.1); }
.ring1 { width: 240px; height: 240px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 4s ease-in-out infinite; }
.ring2 { width: 320px; height: 320px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 4s ease-in-out infinite 0.5s; }
.ring3 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 4s ease-in-out infinite 1s; }

/* ===========================
   Ticker
=========================== */
.ticker-section {
  padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2); overflow: hidden;
}
.ticker-label { text-align: center; font-size: 11px; font-weight: 700; color: var(--t3); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
.ticker-wrap { overflow: hidden; position: relative; }
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }
.ticker { display: flex; gap: 52px; animation: tick 30s linear infinite; width: max-content; }
.tick-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--t3); white-space: nowrap; }
.tick-item:hover { color: var(--p1); }
.tick-dot { width: 5px; height: 5px; background: var(--p1); border-radius: 50%; opacity: 0.5; }

/* ===========================
   Services
=========================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.svc-card { padding: 36px 28px; position: relative; overflow: hidden; cursor: default; }
.svc-card:hover { transform: translateY(-6px); }
.svc-num {
  position: absolute; top: 18px; right: 20px;
  font-size: 52px; font-weight: 900; color: rgba(91,82,232,0.06);
  font-family: 'JetBrains Mono', monospace; line-height: 1;
}
.svc-card:hover .svc-num { color: rgba(91,82,232,0.1); }

.svc-icon { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.ic1 { background: rgba(91,82,232,0.1); }
.ic2 { background: rgba(0,153,204,0.1); }
.ic3 { background: rgba(245,158,11,0.1); }
.ic4 { background: rgba(5,150,105,0.1); }
.ic5 { background: rgba(239,68,68,0.1); }
.ic6 { background: rgba(168,85,247,0.1); }

.svc-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--t1); }
.svc-desc { font-size: 14px; color: var(--t2); line-height: 1.7; margin-bottom: 18px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--p1); }
.svc-link:hover { gap: 10px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag { padding: 3px 10px; background: rgba(91,82,232,0.07); border: 1px solid rgba(91,82,232,0.15); border-radius: 100px; font-size: 11px; color: var(--p1); font-weight: 600; }

/* ===========================
   AI Section
=========================== */
.ai-section { background: var(--bg2); }

.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ai-features { display: flex; flex-direction: column; gap: 16px; }
.ai-feat {
  display: flex; gap: 18px; padding: 20px;
  border-radius: var(--r2); border: 1.5px solid transparent; cursor: pointer; transition: var(--tr);
}
.ai-feat:hover, .ai-feat.active { background: #fff; border-color: rgba(91,82,232,0.2); box-shadow: var(--shadow); }
.ai-feat-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ai-feat-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--t1); }
.ai-feat-body p { font-size: 13px; color: var(--t2); line-height: 1.6; }

/* Chat Demo */
.chat-demo { padding: 22px; }
.chat-demo-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.chat-online { width: 9px; height: 9px; background: var(--success); border-radius: 50%; box-shadow: 0 0 6px var(--success); animation: pulse 2s infinite; }
.chat-demo-msgs { height: 250px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.cmsg { max-width: 84%; padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.5; }
.cmsg.bot { background: var(--bg2); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 3px; color: var(--t1); }
.cmsg.usr { background: var(--grad); align-self: flex-end; border-bottom-right-radius: 3px; color: #fff; }
.chat-demo-input { display: flex; gap: 8px; }
.cd-input { flex: 1; padding: 10px 15px; background: var(--bg2); border: 1.5px solid var(--border); border-radius: 100px; color: var(--t1); font-size: 13px; outline: none; transition: var(--tr); }
.cd-input:focus { border-color: var(--p1); }
.cd-input::placeholder { color: var(--t3); }
.cd-send { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); border: none; cursor: pointer; font-size: 15px; color: #fff; transition: var(--tr); display: flex; align-items: center; justify-content: center; }
.cd-send:hover { transform: scale(1.1); }

/* ===========================
   Stats
=========================== */
.stats-section { background: var(--t1); border-top: none; border-bottom: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,0.06); gap: 1px; }
.stat-box { background: var(--t1); padding: 48px 28px; text-align: center; position: relative; overflow: hidden; }
.stat-box::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--grad); transition: var(--tr); }
.stat-box:hover::after { width: 60%; }
.stat-val { font-size: clamp(34px,5vw,58px); font-weight: 900; line-height: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.6); }
.stat-icon { font-size: 28px; margin-bottom: 10px; }

/* ===========================
   Process
=========================== */
.process-section { background: var(--bg2); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 1.5px; background: linear-gradient(to right, transparent, var(--p1) 30%, var(--p2) 70%, transparent); }
.process-step { text-align: center; padding: 28px 18px; }
.step-num { width: 68px; height: 68px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; color: #fff; margin: 0 auto 18px; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(91,82,232,0.3); }
.step-icon { font-size: 26px; margin-bottom: 10px; }
.process-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--t1); }
.process-step p { font-size: 13px; color: var(--t2); line-height: 1.6; }

/* ===========================
   Portfolio
=========================== */
.port-filters { display: flex; justify-content: center; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.filt { padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; border: 1.5px solid var(--border); background: transparent; color: var(--t2); cursor: pointer; transition: var(--tr); }
.filt.active, .filt:hover { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 4px 14px rgba(91,82,232,0.25); }

.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.port-item { border-radius: var(--r2); overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; box-shadow: var(--shadow); }
.port-thumb { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; transition: transform 0.6s ease; }
.port-item:hover .port-thumb { transform: scale(1.08); }
.port-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,30,0.92) 0%, rgba(91,82,232,0.5) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; opacity: 0; transition: var(--tr); }
.port-item:hover .port-ov { opacity: 1; }
.port-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #7dd3fc; margin-bottom: 6px; }
.port-name { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.port-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px; }

.g1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.g2 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.g3 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.g4 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.g5 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.g6 { background: linear-gradient(135deg, #30cfd0, #667eea); }

/* ===========================
   Testimonials
=========================== */
.testi-section { background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { padding: 30px; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--accent); font-size: 15px; }
.testi-text { font-size: 14px; color: var(--t2); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testi-text::before { content: '"'; font-size: 38px; color: var(--p1); line-height: 0; vertical-align: -15px; margin-right: 3px; opacity: 0.6; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--t1); }
.testi-role { font-size: 12px; color: var(--t3); }

/* ===========================
   Incubation Section
=========================== */
.inc-section { background: var(--bg); }
.inc-logos-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }

.inc-logo-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 36px 24px 28px; text-align: center; position: relative;
  border-radius: var(--r3); border: 1.5px solid var(--border);
  background: #fff; box-shadow: var(--shadow); transition: var(--tr);
}
.inc-logo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md), 0 0 0 3px rgba(91,82,232,0.06); border-color: rgba(91,82,232,0.2); }
.inc-logo-card.featured { border-color: rgba(91,82,232,0.25); box-shadow: 0 4px 32px rgba(91,82,232,0.12); }
.inc-logo-card.featured::before {
  content: '★ Flagship Brand'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}

.inc-logo-img { width: 140px; height: 140px; object-fit: contain; margin-bottom: 18px; }
.inc-logo-title { font-size: 17px; font-weight: 800; color: var(--t1); margin-bottom: 6px; }
.inc-logo-sub { font-size: 13px; color: var(--t2); }

/* Grid: text + address */
.inc-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.inc-about h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; color: var(--t1); }
.inc-about p { font-size: 15px; color: var(--t2); line-height: 1.75; margin-bottom: 14px; }
.inc-highlights { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.inc-highlight { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--t2); }
.inc-highlight::before { content: '✓'; width: 22px; height: 22px; background: rgba(5,150,105,0.1); border: 1px solid rgba(5,150,105,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--success); flex-shrink: 0; font-weight: 700; }

.inc-address-card {
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: var(--r3); padding: 32px; position: relative; overflow: hidden;
}
.inc-address-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.inc-address-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; color: var(--t1); }
.inc-address-detail { display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start; }
.inc-addr-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.inc-addr-text h4 { font-size: 12px; font-weight: 700; color: var(--t3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.inc-addr-text p { font-size: 14px; color: var(--t1); line-height: 1.5; }

.inc-map-embed { width: 100%; height: 200px; border-radius: var(--r2); border: 1.5px solid var(--border); margin-top: 16px; overflow: hidden; }
.inc-map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===========================
   Pricing
=========================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card { padding: 36px 28px; position: relative; }
.price-card.pop { border-color: rgba(91,82,232,0.3); background: linear-gradient(135deg, rgba(91,82,232,0.04), rgba(0,153,204,0.03)); box-shadow: 0 4px 32px rgba(91,82,232,0.12); }
.price-badge { position: absolute; top: 20px; right: 20px; padding: 4px 12px; background: var(--grad); border-radius: 100px; font-size: 11px; font-weight: 700; color: #fff; }
.price-tier { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--p1); margin-bottom: 10px; }
.price-amt { display: flex; align-items: flex-end; gap: 3px; margin-bottom: 6px; }
.price-cur { font-size: 20px; font-weight: 700; padding-bottom: 8px; color: var(--t1); }
.price-num { font-size: 52px; font-weight: 900; line-height: 1; color: var(--t1); }
.price-per { font-size: 13px; color: var(--t3); padding-bottom: 8px; }
.price-desc { font-size: 13px; color: var(--t2); margin-bottom: 24px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-feats li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--t2); }
.price-feats li::before { content: '✓'; width: 20px; height: 20px; background: rgba(5,150,105,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--success); flex-shrink: 0; font-weight: 700; }

/* ===========================
   CTA / Audit
=========================== */
.cta-section { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(91,82,232,0.08), rgba(0,153,204,0.05)); border-top: 1.5px solid rgba(91,82,232,0.12); border-bottom: 1.5px solid rgba(91,82,232,0.12); }
.cta-inner { position: relative; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(28px,5vw,48px); font-weight: 900; margin-bottom: 14px; color: var(--t1); }
.cta-inner p { font-size: 17px; color: var(--t2); margin-bottom: 36px; }
.cta-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; }
.cta-inp { flex: 1; padding: 14px 22px; background: #fff; border: 1.5px solid var(--border); border-radius: 100px; color: var(--t1); font-size: 14px; outline: none; transition: var(--tr); box-shadow: var(--shadow); }
.cta-inp:focus { border-color: var(--p1); }
.cta-inp::placeholder { color: var(--t3); }
.cta-features { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 20px; }
.cta-feat { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--t2); }
.cta-feat::before { content: '✓'; color: var(--success); font-weight: 700; }

/* ===========================
   Contact
=========================== */
.contact-section { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-left h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; color: var(--t1); }
.contact-left p { color: var(--t2); margin-bottom: 36px; font-size: 15px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.c-item { display: flex; align-items: center; gap: 14px; }
.c-icon { width: 48px; height: 48px; border-radius: 13px; background: rgba(91,82,232,0.08); border: 1px solid rgba(91,82,232,0.15); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.c-item h4 { font-size: 12px; font-weight: 700; color: var(--t3); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.c-item p { font-size: 14px; font-weight: 600; color: var(--t1); }
.c-item a:hover { color: var(--p1); }

/* Form */
.cform { display: flex; flex-direction: column; gap: 14px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 11px; font-weight: 700; color: var(--t3); text-transform: uppercase; letter-spacing: 0.06em; }
.fg input, .fg select, .fg textarea {
  padding: 12px 16px; background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r2); color: var(--t1); font-size: 14px; font-family: inherit; outline: none; transition: var(--tr);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--p1); box-shadow: 0 0 0 3px rgba(91,82,232,0.08); }
.fg select option { background: #fff; color: var(--t1); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-success { display: none; text-align: center; padding: 36px; background: rgba(5,150,105,0.06); border: 1.5px solid rgba(5,150,105,0.2); border-radius: var(--r2); }
.form-success h3 { font-size: 22px; margin-bottom: 8px; color: var(--t1); }
.form-success p { color: var(--t2); }

/* ===========================
   Footer
=========================== */
.footer { background: #0f172a; border-top: none; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; margin-bottom: 56px; }
.foot-about p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 14px 0 22px; }

/* Footer logo (dark bg) */
.footer .logo-name { color: #fff; }
.footer .logo-tagline { color: rgba(255,255,255,0.4); }

.socials { display: flex; gap: 10px; }
.soc { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--tr); }
.soc:hover { background: var(--grad); border-color: transparent; transform: translateY(-4px); }

.foot-col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); margin-bottom: 18px; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-links a { font-size: 13px; color: rgba(255,255,255,0.45); }
.foot-links a:hover { color: #fff; padding-left: 4px; }
.foot-contact-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 9px; }
.foot-contact-item a:hover { color: var(--p2); }

.footer-bot { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.35); }
.foot-bot-links { display: flex; gap: 20px; }
.foot-bot-links a { color: rgba(255,255,255,0.35); }
.foot-bot-links a:hover { color: rgba(255,255,255,0.8); }

/* ===========================
   Chatbot Widget
=========================== */
.chatbot { position: fixed; bottom: 30px; right: 30px; z-index: 9999; }
.chat-toggle { width: 60px; height: 60px; border-radius: 50%; background: var(--grad); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 6px 24px rgba(91,82,232,0.4); transition: var(--tr); position: relative; }
.chat-toggle:hover { transform: scale(1.1); }
.chat-notif { position: absolute; top: -2px; right: -2px; width: 16px; height: 16px; background: var(--success); border-radius: 50%; border: 2px solid #fff; animation: pulse 2s infinite; }
.chat-win { position: absolute; bottom: 76px; right: 0; width: 360px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--r3); overflow: hidden; box-shadow: 0 20px 60px rgba(15,23,42,0.15); display: none; flex-direction: column; }
.chat-win.open { display: flex; }
.chat-head { padding: 18px 20px; background: var(--grad); display: flex; align-items: center; justify-content: space-between; }
.chat-head-info { display: flex; align-items: center; gap: 12px; }
.chat-av { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.chat-head-name { font-weight: 700; font-size: 14px; color: #fff; }
.chat-head-sub { font-size: 11px; opacity: 0.8; color: #fff; }
.chat-x { background: none; border: none; color: #fff; cursor: pointer; font-size: 18px; opacity: 0.8; }
.chat-x:hover { opacity: 1; }
.chat-msgs { height: 270px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: #fafbff; }
.bot-m, .usr-m { max-width: 86%; padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.5; }
.bot-m { background: #fff; border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 3px; color: var(--t1); box-shadow: 0 1px 6px rgba(15,23,42,0.06); }
.usr-m { background: var(--grad); align-self: flex-end; border-bottom-right-radius: 3px; color: #fff; }
.quick-btns { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 14px; background: #fff; border-top: 1px solid var(--border); }
.qb { padding: 5px 11px; border-radius: 100px; background: rgba(91,82,232,0.07); border: 1px solid rgba(91,82,232,0.2); font-size: 11px; color: var(--p1); cursor: pointer; transition: var(--tr); font-weight: 600; }
.qb:hover { background: var(--p1); color: #fff; border-color: transparent; }
.chat-inp-area { padding: 14px 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; background: #fff; }
.chat-inp { flex: 1; padding: 10px 14px; background: var(--bg2); border: 1.5px solid var(--border); border-radius: 100px; color: var(--t1); font-size: 13px; outline: none; }
.chat-inp:focus { border-color: var(--p1); }
.chat-inp::placeholder { color: var(--t3); }
.chat-snd { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); border: none; cursor: pointer; color: #fff; font-size: 14px; transition: var(--tr); display: flex; align-items: center; justify-content: center; }
.chat-snd:hover { transform: scale(1.1); }

/* ===========================
   Animations
=========================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.3)} }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0} }
@keyframes fl { 0%,100%{transform:translateY(0)}50%{transform:translateY(-16px)} }
@keyframes tick { from{transform:translateX(0)}to{transform:translateX(-50%)} }
@keyframes ringPulse { 0%,100%{opacity:.25;transform:translate(-50%,-50%) scale(1)}50%{opacity:.5;transform:translate(-50%,-50%) scale(1.04)} }
@keyframes rotateGlow { 0%{box-shadow:0 0 50px rgba(91,82,232,0.15)}50%{box-shadow:0 0 70px rgba(0,153,204,0.2)}100%{box-shadow:0 0 50px rgba(91,82,232,0.15)} }
@keyframes fade { from{opacity:0}to{opacity:1} }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-r.in { opacity: 1; transform: translateX(0); }

.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s} .d6{transition-delay:.6s}

/* ===========================
   Responsive
=========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .port-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
  .inc-logos-row { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 48px; }
  .inc-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .port-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
  .footer-bot { flex-direction: column; gap: 10px; text-align: center; }
  .section-pad { padding: 64px 0; }
  .chatbot { bottom: 18px; right: 18px; }
  .chat-win { width: 320px; right: -4px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .hero-kpis { gap: 18px; }
}
