/* ═══════════════════════════════════════════════════════════
   ITWAALE – STYLE.CSS  (Full-Fledged Website)
   4 Themes · All Sections · Chatbot · Responsive
   ═══════════════════════════════════════════════════════════ */

/* ── 1. THEME VARIABLES ─────────────────────────────────── */

[data-theme="flame"] {
  --bg:         #0A0A0A;
  --bg2:        #111111;
  --surface:    #1A1A1A;
  --surface2:   #242424;
  --border:     rgba(255,255,255,0.09);
  --accent:     #F97316;
  --accent2:    #FBBF24;
  --text:       #FFFFFF;
  --text2:      #9CA3AF;
  --text3:      #6B7280;
  --nav-bg:     rgba(10,10,10,0.96);
  --hero-glow:  rgba(249,115,22,0.18);
  --ticker-bg:  rgba(249,115,22,0.12);
}
[data-theme="pearl"] {
  --bg:         #F9FAFB;
  --bg2:        #FFFFFF;
  --surface:    #FFFFFF;
  --surface2:   #F3F4F6;
  --border:     rgba(0,0,0,0.1);
  --accent:     #EA6C00;
  --accent2:    #F59E0B;
  --text:       #111827;
  --text2:      #4B5563;
  --text3:      #9CA3AF;
  --nav-bg:     rgba(249,250,251,0.97);
  --hero-glow:  rgba(249,115,22,0.1);
  --ticker-bg:  rgba(249,115,22,0.08);
}
[data-theme="ocean"] {
  --bg:         #060D1A;
  --bg2:        #0A1628;
  --surface:    #0F1E38;
  --surface2:   #152544;
  --border:     rgba(59,130,246,0.18);
  --accent:     #3B82F6;
  --accent2:    #06B6D4;
  --text:       #FFFFFF;
  --text2:      #94A3B8;
  --text3:      #64748B;
  --nav-bg:     rgba(6,13,26,0.97);
  --hero-glow:  rgba(59,130,246,0.2);
  --ticker-bg:  rgba(59,130,246,0.1);
}
[data-theme="aurora"] {
  --bg:         #080411;
  --bg2:        #0D0714;
  --surface:    #130A20;
  --surface2:   #1C1030;
  --border:     rgba(139,92,246,0.18);
  --accent:     #8B5CF6;
  --accent2:    #EC4899;
  --text:       #FFFFFF;
  --text2:      #C4B5FD;
  --text3:      #7C3AED;
  --nav-bg:     rgba(8,4,17,0.97);
  --hero-glow:  rgba(139,92,246,0.2);
  --ticker-bg:  rgba(139,92,246,0.1);
}

/* ── 2. RESET & BASE ─────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.25s ease;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--text2); max-width: 600px;
  margin-bottom: 52px; line-height: 1.7;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-size: 0.95rem; font-weight: 700;
  padding: 14px 28px; border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.btn-primary.btn-large { font-size: 1.05rem; padding: 16px 36px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 2px solid var(--border);
  color: var(--text); font-size: 0.95rem; font-weight: 600;
  padding: 13px 26px; border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* ── 3. LOGO SWITCH ──────────────────────────────────────── */

.logo-dark, .footer-logo-dark { display: none; }
.logo-light, .footer-logo-light { display: block; }
[data-theme="pearl"] .logo-dark, [data-theme="pearl"] .footer-logo-dark { display: block; }
[data-theme="pearl"] .logo-light, [data-theme="pearl"] .footer-logo-light { display: none; }

/* ── 4. TICKER ───────────────────────────────────────────── */

.ticker-wrap {
  background: var(--ticker-bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: sticky;
  top: 0;
  z-index: 801;
}
.ticker-track {
  display: inline-flex;
  gap: 80px;
  animation: tickerScroll 30s linear infinite;
}
.ticker-item {
  font-size: 0.78rem; font-weight: 500; color: var(--text2);
  display: inline-flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.ticker-item i { color: var(--accent); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 5. THEME SWITCHER ───────────────────────────────────── */

.theme-panel { position: fixed; bottom: 110px; left: 20px; z-index: 900; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.theme-toggle-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--accent); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.theme-toggle-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.theme-options {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px;
  display: none; flex-direction: column; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4); min-width: 80px;
}
.theme-options.open { display: flex; }
.theme-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text2); white-space: nowrap; }
.theme-dot { display: flex; flex-direction: column; align-items: center; gap: 4px; background: none; border: 2px solid transparent; border-radius: 10px; padding: 4px; transition: border-color 0.2s; }
.theme-dot .dot-color { width: 32px; height: 32px; border-radius: 50%; display: block; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.theme-dot small { font-size: 0.6rem; color: var(--text2); font-weight: 500; }
.theme-dot.active, .theme-dot:hover { border-color: var(--accent); }
.theme-dot.active .dot-color { box-shadow: 0 0 0 3px var(--accent); }

/* ── 6. NAVBAR ───────────────────────────────────────────── */

#navbar {
  position: sticky; top: 36px; left: 0; right: 0; z-index: 800;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: var(--nav-bg);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 36px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--text2); transition: color 0.2s; }
.nav-link:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-size: 0.86rem; font-weight: 600;
  padding: 9px 20px; border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 4px 0; }
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: var(--bg); z-index: 700; padding: 100px 24px 40px; flex-direction: column; }
.mobile-overlay.open { display: flex; }
.mobile-menu { display: flex; flex-direction: column; gap: 24px; }
.mobile-link { font-size: 1.8rem; font-weight: 700; color: var(--text); }
.mobile-link:hover { text-decoration: none; color: var(--accent); }
.mobile-cta { margin-top: 12px; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-size: 1.1rem; font-weight: 700; padding: 16px 32px; border-radius: 100px; width: fit-content; }

/* ── 7. HERO ─────────────────────────────────────────────── */

.hero {
  min-height: calc(100vh - 106px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg); padding: 80px 24px 80px;
}
.hero-glow { position: absolute; top: -100px; right: -150px; width: 700px; height: 700px; border-radius: 50%; background: var(--hero-glow); filter: blur(100px); pointer-events: none; z-index: 0; }
.hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; position: relative; z-index: 1; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--surface); border: 1px solid var(--border); color: var(--accent); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; padding: 7px 16px; border-radius: 100px; margin-bottom: 18px; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-sub { font-size: 1rem; color: var(--text2); max-width: 500px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-meta span { font-size: 0.8rem; color: var(--text3); display: flex; align-items: center; gap: 6px; }
.hero-meta span i { color: var(--accent); }
.hero-visual { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.hero-orb { width: 280px; height: 280px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); opacity: 0.12; filter: blur(40px); animation: orbPulse 4s ease-in-out infinite; }
@keyframes orbPulse { 0%,100%{transform:scale(1);opacity:.12} 50%{transform:scale(1.15);opacity:.2} }
.hero-card { position: absolute; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 14px 18px; display: flex; flex-direction: column; gap: 2px; min-width: 140px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); animation: floatCard 6s ease-in-out infinite; }
.hero-card i { font-size: 1.2rem; color: var(--accent); margin-bottom: 4px; }
.hero-card span { font-size: 0.72rem; color: var(--text2); font-weight: 500; }
.hero-card strong { font-size: 1rem; font-weight: 700; color: var(--text); }
.card-1 { top: 30px; left: 0; animation-delay: 0s; }
.card-2 { bottom: 60px; left: 20px; animation-delay: -2s; }
.card-3 { top: 60px; right: 0; animation-delay: -4s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.scroll-indicator span { display: block; width: 2px; height: 8px; background: var(--accent); border-radius: 2px; animation: scrollBounce 1.5s ease-in-out infinite; }
.scroll-indicator span:nth-child(2) { animation-delay: 0.2s; opacity: 0.6; }
.scroll-indicator span:nth-child(3) { animation-delay: 0.4s; opacity: 0.3; }
@keyframes scrollBounce { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(1.5);opacity:0.5} }

/* ── 8. ABOUT ─────────────────────────────────────────────── */

.about { padding: 100px 0; background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-content p { font-size: 0.95rem; color: var(--text2); line-height: 1.75; margin-bottom: 16px; }
.about-list { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text2); }
.about-list li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.skills-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 4px; }
.skill-item {}
.skill-header { display: flex; justify-content: space-between; font-size: 0.84rem; font-weight: 600; color: var(--text2); margin-bottom: 8px; }
.skill-bar { background: var(--surface2); border-radius: 100px; height: 8px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 100px; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
/* ── About visual – animated neural network ── */
.about-visual { display: flex; justify-content: center; align-items: center; }

.av-wrap {
  position: relative;
  width: 380px;
  height: 420px;
  flex-shrink: 0;
}

/* Central brain SVG */
.av-brain {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.av-brain-svg { width: 280px; height: 280px; }

/* Spoke & ring lines */
.av-spoke-lines line, .av-ring-lines polygon {
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.25;
}

/* Outer nodes – staggered blink */
.avn {
  fill: var(--accent);
  opacity: 0.7;
  animation: avNodeBlink 2.6s ease-in-out infinite;
}
.avn1 { animation-delay: 0s; }
.avn2 { animation-delay: 0.4s; }
.avn3 { animation-delay: 0.8s; }
.avn4 { animation-delay: 1.2s; }
.avn5 { animation-delay: 1.6s; }
.avn6 { animation-delay: 2s; }
@keyframes avNodeBlink {
  0%, 100% { opacity: 0.5; r: 7; }
  50%       { opacity: 1;   r: 10; }
}

/* Core */
.av-core-ring {
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 8 5;
  opacity: 0.4;
  animation: avCoreSpin 12s linear infinite;
  transform-origin: 150px 150px;
}
.av-core {
  fill: var(--surface);
  stroke: var(--accent);
  stroke-width: 1.5;
  opacity: 0.95;
}
@keyframes avCoreSpin { to { stroke-dashoffset: -80; } }

/* Floating metric cards */
.av-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  min-width: 90px;
  animation: avFloat 3.5s ease-in-out infinite;
}
.av-card-val {
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.av-card-lbl { font-size: 0.68rem; color: var(--text2); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* Positions & individual float timing */
.av-c1 { top: 20px;  left: -10px;  animation-delay: 0s;    animation-duration: 3.4s; }
.av-c2 { top: 20px;  right: -10px; animation-delay: 0.8s;  animation-duration: 3.8s; }
.av-c3 { bottom: 40px; left: -10px;  animation-delay: 1.6s;  animation-duration: 3.2s; }
.av-c4 { bottom: 40px; right: -10px; animation-delay: 0.4s;  animation-duration: 4s; }

@keyframes avFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Service tags */
.av-tag {
  position: absolute;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  animation: avFloat 4s ease-in-out infinite;
}
.av-t1 { top: 50%;  left: -30px;   transform: translateY(-50%); animation-delay: 0.2s; }
.av-t2 { top: 50%;  right: -30px;  transform: translateY(-50%); animation-delay: 1s; }
.av-t3 { bottom: 10px; left: 50%; transform: translateX(-50%); animation-delay: 1.8s; }

@media (max-width: 768px) {
  .av-wrap { width: 320px; height: 360px; }
  .av-t1, .av-t2 { display: none; }
}

/* ── 9. STATS ─────────────────────────────────────────────── */

.stats-section { padding: 72px 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-num { font-size: 2.8rem; font-weight: 900; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.87rem; color: var(--text2); font-weight: 500; }

/* ── 10. SERVICES ────────────────────────────────────────── */

.services { padding: 100px 0; background: var(--bg2); }
.svc-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.svc-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 600; font-family: inherit;
  background: var(--surface); border: 2px solid var(--border);
  color: var(--text2); transition: all 0.2s;
}
.svc-tab:hover { border-color: var(--accent); color: var(--text); }
.svc-tab.active { background: linear-gradient(135deg, var(--accent), var(--accent2)); border-color: transparent; color: #fff; }
.tab-badge { background: rgba(255,255,255,0.25); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase; }
.svc-tab:not(.active) .tab-badge { background: var(--accent); color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 28px 24px; position: relative; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.35s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); border-color: var(--accent); }
.service-card.featured { border-color: var(--accent); background: linear-gradient(160deg, var(--surface) 70%, color-mix(in srgb, var(--accent) 8%, var(--surface))); }
.featured-badge { position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.service-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p  { font-size: 0.88rem; color: var(--text2); line-height: 1.65; margin-bottom: 20px; }
.service-cta { font-size: 0.82rem; font-weight: 700; color: var(--accent); }
.service-cta:hover { text-decoration: underline; }

/* ── 11. WHY ITWAALE ─────────────────────────────────────── */

.why-section { padding: 100px 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 28px 24px; transition: transform 0.25s, border-color 0.25s; }
.why-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.why-icon { width: 48px; height: 48px; background: var(--ticker-bg); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--accent); margin-bottom: 16px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: 0.87rem; color: var(--text2); line-height: 1.65; }

/* ── 12. TESTIMONIALS ────────────────────────────────────── */

.testimonials { padding: 100px 0; background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.testi-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; }
.testi-card p { font-size: 0.9rem; color: var(--text2); line-height: 1.7; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 700; }
.testi-author span   { font-size: 0.78rem; color: var(--text2); }

/* ── 13. BLOG ────────────────────────────────────────────── */

.blog-section { padding: 100px 0; background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; transition: transform 0.25s, border-color 0.25s; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.blog-card-ai { background: linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--accent) 5%, var(--surface))); border-color: var(--accent); }
.blog-category { display: inline-block; background: var(--ticker-bg); border: 1px solid var(--border); color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.blog-category.ai-cat { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; border-color: transparent; }
.blog-title { font-size: 1rem; font-weight: 700; line-height: 1.4; flex: 0; }
.blog-title a { color: var(--text); transition: color 0.2s; }
.blog-title a:hover { color: var(--accent); text-decoration: none; }
.blog-excerpt { font-size: 0.87rem; color: var(--text2); line-height: 1.65; flex: 1; }
.blog-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.blog-meta span { font-size: 0.75rem; color: var(--text3); display: flex; align-items: center; gap: 5px; }
.blog-meta span i { color: var(--accent); }
.blog-read-more { font-size: 0.83rem; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; background: none; border: none; padding: 0; font-family: inherit; }
.blog-read-more:hover { text-decoration: underline; }
.blog-cta { text-align: center; }

/* ── 14. CONTACT ─────────────────────────────────────────── */

.contact-section { padding: 100px 0; background: var(--bg2); }
.contact-section .section-title { max-width: 700px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 28px; }
.contact-info-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: -12px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; background: var(--ticker-bg); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; font-size: 0.9rem; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text2); margin-bottom: 4px; }
.contact-item a { display: block; font-size: 0.9rem; color: var(--text2); transition: color 0.2s; }
.contact-item a:hover { color: var(--accent); text-decoration: none; }
.contact-item span { font-size: 0.9rem; color: var(--text2); display: block; line-height: 1.5; }
.contact-whatsapp { margin-top: -8px; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; font-size: 0.9rem; font-weight: 700;
  padding: 12px 22px; border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover { opacity: 0.9; transform: translateY(-2px); text-decoration: none; }
.whatsapp-btn i { font-size: 1.1rem; }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.contact-form h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.form-note { font-size: 0.82rem; color: var(--text2); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text2); }
.form-group label span { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 11px 16px; font-size: 0.9rem; font-family: inherit;
  color: var(--text); outline: none; transition: border-color 0.2s;
  width: 100%; resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--surface); color: var(--text); }
.form-submit-btn { width: 100%; justify-content: center; margin-top: 4px; font-size: 1rem; }
.form-feedback { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: 0.87rem; display: flex; align-items: center; gap: 8px; }
.form-feedback[hidden] { display: none; }
.form-feedback.success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); color: #4ade80; }
.form-feedback.error   { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); color: #f87171; }
.cf-turnstile { margin: 16px 0; display: flex; justify-content: center; width: 100%; }
.chat-turnstile { position: absolute; bottom: 90px; left: -9999px; pointer-events: none; }

/* ── 15. FOOTER ──────────────────────────────────────────── */

/* ══════════════════════════════════════════════════════
   FOOTER — Circuit CTA + Links Grid
══════════════════════════════════════════════════════ */

.footer { background: #060608; }

/* ── CTA banner ── */
.footer-cta-wrap {
  position: relative;
  overflow: hidden;
  padding: 100px 20px 110px;
  text-align: center;
  background: #060608;
}

/* Circuit SVG background */
.footer-circuit-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Traces */
.fct-traces path {
  stroke: var(--accent);
  stroke-width: 1.2;
  stroke-dasharray: 6 3;
  opacity: 0.14;
}

/* IC chip outlines */
.fct-chips rect {
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.18;
}
.fct-chips text {
  fill: var(--accent);
  opacity: 0.22;
}

/* SMD resistor/capacitor outlines */
.fct-chips rect:nth-child(n+4) {
  stroke-width: 0.8;
  opacity: 0.14;
}

/* Via pads */
.fct-vias circle {
  fill: var(--accent);
  opacity: 0.55;
}
.fv-hot {
  animation: fvHotPulse 2.4s ease-out infinite;
}
@keyframes fvHotPulse {
  0%   { r: 7; opacity: 0.9; }
  60%  { r: 18; opacity: 0; }
  100% { r: 7; opacity: 0; }
}

/* Via ring pulse (SVG animate handles r, CSS handles opacity) */
.fct-vias .fv { animation: fvBlink 3s ease-in-out infinite; }
.fv1  { animation-delay: 0s; }
.fv2  { animation-delay: 0.3s; }
.fv3  { animation-delay: 0.6s; }
.fv4  { animation-delay: 0.9s; }
.fv5  { animation-delay: 1.2s; }
.fv6  { animation-delay: 1.5s; }
.fv7  { animation-delay: 1.8s; }
.fv8  { animation-delay: 2.1s; }
.fv9  { animation-delay: 2.4s; }
.fv10 { animation-delay: 2.7s; }
@keyframes fvBlink {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 1; }
}

/* Moving signal packets */
.fct-pkt {
  fill: var(--accent);
  opacity: 0.9;
}
.fct-pkt-rev { fill: var(--accent2); }

/* Scan line sweep */
.fct-scan {
  fill: var(--accent);
  opacity: 0.04;
}

/* CTA content sits above SVG */
.footer-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.footer-cta-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 12px 0 16px;
}
.footer-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 36px;
}
.footer-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-wa-cta:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; color: #fff; }

/* ── Links section ── */
.footer-links-wrap {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-logo { height: 34px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.84rem; color: var(--text2); line-height: 1.7; max-width: 280px; margin-bottom: 14px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text2);
  letter-spacing: 0.04em;
}
.footer-wa { display: inline-flex; align-items: center; gap: 7px; background: #25D366; color: #fff; font-size: 0.82rem; font-weight: 700; padding: 8px 16px; border-radius: 100px; transition: opacity 0.2s; }
.footer-wa:hover { opacity: 0.9; text-decoration: none; }
.footer-links h4, .footer-contact-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.86rem; color: var(--text2); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-contact-col address { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-col a, .footer-contact-col span { font-size: 0.86rem; color: var(--text2); display: flex; align-items: flex-start; gap: 7px; transition: color 0.2s; }
.footer-contact-col a:hover { color: var(--accent); text-decoration: none; }
.footer-contact-col i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; color: var(--text3); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 0.8rem; color: var(--text3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); text-decoration: none; }

/* ── 16. WHATSAPP FLOAT ──────────────────────────────────── */

.wa-float {
  position: fixed; bottom: 28px; left: 80px; z-index: 888;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); text-decoration: none; }

/* ── 17. BACK TO TOP ─────────────────────────────────────── */

.back-to-top {
  position: fixed; bottom: 28px; right: 100px; z-index: 888;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--accent); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════════
   CHATBOT WIDGET
══════════════════════════════════════════════════════════ */

#it-chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.chat-bubble { width: 62px; height: 62px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative; box-shadow: 0 6px 28px rgba(0,0,0,0.35); transition: transform 0.3s, box-shadow 0.3s; flex-shrink: 0; }
.chat-bubble:hover { transform: scale(1.08); box-shadow: 0 10px 36px rgba(0,0,0,0.4); }
.bubble-logo { width: 34px; height: auto; object-fit: contain; transition: opacity 0.3s, transform 0.3s; }
.chat-close-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; opacity: 0; transform: scale(0.5) rotate(-90deg); transition: opacity 0.3s, transform 0.3s; }
.chat-bubble.is-open .bubble-logo { opacity: 0; transform: scale(0.5); }
.chat-bubble.is-open .chat-close-icon { opacity: 1; transform: scale(1) rotate(0); }
.pulse-ring { position: absolute; inset: -4px; border-radius: 50%; border: 3px solid var(--accent); animation: pulsering 2.2s ease-out infinite; }
.chat-bubble.is-open .pulse-ring { display: none; }
@keyframes pulsering { 0%{opacity:.8;transform:scale(1)} 70%{opacity:0;transform:scale(1.5)} 100%{opacity:0;transform:scale(1.5)} }
.chat-notif { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 11px 14px; font-size: 0.84rem; font-weight: 500; color: var(--text); display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; max-width: 230px; }
.chat-notif.show { opacity: 1; transform: none; pointer-events: auto; }
.chat-notif-close { background: none; border: none; color: var(--text2); font-size: 1.1rem; line-height: 1; padding: 0; flex-shrink: 0; }
.chat-notif-close:hover { color: var(--text); }
.chat-window { position: absolute; bottom: 80px; right: 0; width: 370px; max-height: 560px; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.5); opacity: 0; transform: translateY(16px) scale(0.97); pointer-events: none; transition: opacity 0.3s, transform 0.3s; }
.chat-window.open { opacity: 1; transform: none; pointer-events: auto; }
.chat-header { background: linear-gradient(135deg, var(--accent), var(--accent2)); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 38px; height: 38px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.chat-avatar img { width: 28px; height: auto; object-fit: contain; }
.chat-header-info strong { display: block; color: #fff; font-size: 0.93rem; font-weight: 700; }
.chat-status { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: rgba(255,255,255,0.85); }
.status-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.chat-close-btn { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.2); color: #fff; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.chat-close-btn:hover { background: rgba(255,255,255,0.35); }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; scroll-behavior: smooth; background: var(--bg); }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.msg { max-width: 82%; line-height: 1.5; animation: msgIn 0.3s ease; }
@keyframes msgIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }
.msg-bot { align-self: flex-start; display: flex; gap: 8px; align-items: flex-end; }
.msg-bot .msg-avatar { width: 26px; height: 26px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: #fff; font-weight: 700; flex-shrink: 0; }
.msg-bot .msg-bubble { background: var(--surface2); border: 1px solid var(--border); color: var(--text); padding: 9px 13px; border-radius: 18px 18px 18px 4px; font-size: 0.86rem; }
.msg-user { align-self: flex-end; }
.msg-user .msg-bubble { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; padding: 9px 13px; border-radius: 18px 18px 4px 18px; font-size: 0.86rem; }
.msg-typing .msg-bubble { display: flex; align-items: center; gap: 4px; padding: 12px 16px; }
.typing-dot { width: 7px; height: 7px; background: var(--text2); border-radius: 50%; animation: typingBounce 1.2s ease-in-out infinite; }
.typing-dot:nth-child(2){animation-delay:.2s} .typing-dot:nth-child(3){animation-delay:.4s}
@keyframes typingBounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }
.quick-replies { display: flex; flex-wrap: wrap; gap: 7px; padding: 10px 14px 4px; background: var(--bg); }
.qr-btn { background: var(--surface2); border: 1px solid var(--border); color: var(--text); border-radius: 100px; padding: 6px 12px; font-size: 0.79rem; font-weight: 600; font-family: inherit; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.qr-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.chat-input-area { display: flex; gap: 8px; padding: 11px 13px; background: var(--surface); border-top: 1px solid var(--border); flex-shrink: 0; }
.chat-input { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 100px; padding: 9px 16px; font-size: 0.87rem; font-family: inherit; color: var(--text); outline: none; transition: border-color 0.2s; }
.chat-input::placeholder { color: var(--text3); }
.chat-input:focus { border-color: var(--accent); }
.chat-send-btn { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-size: 0.86rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: opacity 0.2s, transform 0.2s; }
.chat-send-btn:hover { opacity: 0.9; transform: scale(1.05); }
.chat-send-btn:disabled { opacity: 0.4; transform: none; cursor: not-allowed; }
.chat-footer-note { text-align: center; font-size: 0.67rem; color: var(--text3); padding: 5px 14px 9px; background: var(--surface); display: flex; align-items: center; justify-content: center; gap: 5px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-cta-wrap { padding: 72px 20px 80px; }
}
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .testi-grid     { grid-template-columns: repeat(2, 1fr); }
  .blog-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-sub, .hero-meta { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-cta-wrap { padding: 56px 20px 64px; }
  .footer-cta-heading { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .chat-window { position: fixed; inset: 0; width: 100%; max-height: 100%; border-radius: 0; border: none; }
  #it-chat-widget { bottom: 16px; right: 16px; }
  .wa-float { bottom: 16px; left: 16px; }
  .back-to-top { bottom: 16px; right: 84px; }
  .theme-panel { bottom: 84px; left: 12px; }
}
@media (max-width: 480px) {
  .hero { padding: 70px 20px 60px; }
  .about { padding: 72px 0; }
  .services, .why-section, .testimonials, .blog-section, .contact-section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .section-title { font-size: 1.65rem; }
  .ticker-wrap { display: none; }
  /* Prevent iOS auto-zoom on form inputs */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; min-height: 44px; }
  /* Scale Turnstile widget on very small screens */
  .cf-turnstile { transform: scale(0.9); transform-origin: center top; margin: 20px 0 8px; }
}

@media (max-width: 380px) {
  .av-wrap { width: 300px; height: 340px; }
}

/* ══════════════════════════════════════════════════════════
   HERO – ANIMATIONS (Particle Canvas + Orbit System)
══════════════════════════════════════════════════════════ */

/* Canvas fills the hero visual area */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 20px;
  cursor: crosshair;
}

/* Orb scene – positioned from center of hero-visual */
.hero-orb-system {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 440px; height: 440px;
  margin: -220px 0 0 -220px;
  z-index: 1;
  transform-style: preserve-3d;
  pointer-events: none;
}

/* Morphing blob */
.hero-blob {
  position: absolute;
  top: 50%; left: 50%;
  width: 220px; height: 220px;
  margin: -110px 0 0 -110px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  opacity: 0.18;
  filter: blur(32px);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blobMorph 10s ease-in-out infinite;
}
@keyframes blobMorph {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50%  { border-radius: 50% 40% 60% 40% / 40% 50% 70% 50%; }
  75%  { border-radius: 40% 60% 30% 70% / 60% 30% 60% 40%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Orbit wrappers – centered in the scene */
.orbit-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
}
.orbit-tilt-b { transform: perspective(600px) rotateX(68deg); }
.orbit-tilt-c { transform: perspective(600px) rotateX(50deg) rotateZ(40deg); }

/* Orbit rings */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  animation: orbitSpin linear infinite;
}
.ring-a {
  width: 220px; height: 220px;
  margin: -110px 0 0 -110px;
  opacity: 0.55;
  animation-duration: 9s;
}
.ring-b {
  width: 320px; height: 320px;
  margin: -160px 0 0 -160px;
  opacity: 0.35;
  animation-duration: 16s;
  animation-direction: reverse;
}
.ring-c {
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
  opacity: 0.2;
  animation-duration: 26s;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Glowing orbit planets */
.orbit-planet {
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px 5px var(--accent);
}
.planet-sm {
  width: 9px; height: 9px;
  top: -4.5px;
  background: var(--accent2);
  box-shadow: 0 0 12px 4px var(--accent2);
}
.planet-xs {
  width: 7px; height: 7px;
  top: -3.5px;
}

/* Hero cards – glassmorphism upgrade */
.hero-card {
  z-index: 2;
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border));
}

/* Hero visual tilt transition */
.hero-visual {
  transition: transform 0.08s ease;
  transform-style: preserve-3d;
  overflow: visible;
}

/* ══════════════════════════════════════════════════════════
   CLIENTS SECTION
══════════════════════════════════════════════════════════ */

.clients-section {
  padding: 80px 0 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-header-wrap {
  margin-bottom: 40px;
}
.clients-header-wrap .section-sub {
  margin-bottom: 0;
}

.clients-track-outer {
  position: relative;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clients-track-outer::before,
.clients-track-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.clients-track {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  animation: clientsScroll 28s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }

@keyframes clientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 22px;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  min-width: 220px;
}
.client-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  text-decoration: none;
}
.client-favicon {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--surface2);
  padding: 4px;
  flex-shrink: 0;
}
.client-info strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.client-info span   { display: block; font-size: 0.75rem; color: var(--text2); }
.client-tag {
  margin-left: auto;
  background: var(--ticker-bg);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ══════════════════════════════════════════════════════════
   GOOGLE REVIEWS SECTION
══════════════════════════════════════════════════════════ */

.google-reviews-section {
  padding: 100px 0;
  background: var(--bg2);
}

.google-g-logo { flex-shrink: 0; }

/* ── Google Business Profile card ── */
.gbp-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
}
.gbp-left {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 40px;
  flex-shrink: 0;
}
.gbp-score-block { display: flex; flex-direction: column; gap: 4px; }
.gbp-score {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gbp-stars { color: #FBBC04; font-size: 1.25rem; letter-spacing: 3px; }
.gbp-count { font-size: 0.8rem; color: var(--text2); margin-top: 2px; }

.gbp-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
}
.gbp-right {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.gbp-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}
.gbp-type { font-size: 0.85rem; color: var(--text2); }
.gbp-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text3);
  margin-top: 4px;
}
.gbp-address svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.gbp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  width: fit-content;
  transition: opacity 0.2s, transform 0.2s;
}
.gbp-btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; color: #fff; }

/* ── Rating bar chart ── */
.gbp-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 56px;
}
.gbp-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text2);
}
.gbp-bar-row span:first-child { width: 32px; text-align: right; flex-shrink: 0; }
.gbp-bar-row span:last-child  { width: 20px; flex-shrink: 0; }
.gbp-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.gbp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 100px;
  transition: width 1s ease;
}

/* ── greview-title-block standalone ── */
.greview-title-block { text-align: center; }
.greview-title-block .section-title { margin-bottom: 0; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .gbp-card { flex-direction: column; }
  .gbp-divider { width: auto; height: 1px; }
  .gbp-left, .gbp-right { padding: 28px 24px; }
  .hero-orb-system { display: none; }
}
@media (max-width: 480px) {
  .clients-section { padding: 60px 0 40px; }
  .google-reviews-section { padding: 72px 0; }
}
