/* ══════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════ */
:root {
  --blue-primary: #0099ff;
  --blue-light:   #00d4ff;
  --blue-dark:    #0066ff;
  --black:        #0a0f1e;
  --black-soft:   #0d1117;
  --white:        #ffffff;
  --gray-text:    #6b7280;
  --gray-light:   #f3f4f6;
  --border:       rgba(0,0,0,0.08);
  --font-main:    'Inter', -apple-system, sans-serif;
  --font-alt:     'Poppins', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background: #fff; color: #111; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ══════════════════════════════════
   HEADER / NAV
══════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(1, 205, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,212,255,0.15);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(255,255,255,0.97); border-bottom-color: #e5e7eb; }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 48px; }
.nav-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.site-header.scrolled .nav-logo span { color: var(--black); }

.nav-menu { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-menu a:hover { color: var(--blue-light); background: rgba(0,212,255,0.08); }
.site-header.scrolled .nav-menu a { color: #374151; }
.site-header.scrolled .nav-menu a:hover { color: var(--blue-primary); }

.nav-cta {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(0,102,255,0.3);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,102,255,0.4) !important; color: #fff !important; background: linear-gradient(135deg, var(--blue-light), var(--blue-dark)) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
.site-header.scrolled .hamburger span { background: #111; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #fff;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { display: block; padding: 12px 16px; font-size: 15px; font-weight: 500; color: #374151; border-radius: 8px; }
.mobile-nav a:hover { background: #f3f4f6; color: var(--blue-primary); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.dm-hero {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 80px;
}
#waveCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,153,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,153,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  z-index: 0; pointer-events: none;
}
.hero-glow {
  position: absolute; top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,180,255,0.07) 0%, rgba(0,120,255,0.03) 45%, transparent 70%);
  z-index: 0; pointer-events: none;
  animation: glowBreath 5s ease-in-out infinite;
}
@keyframes glowBreath {
  0%,100% { opacity:.6; transform:translate(-50%,-50%) scale(1); }
  50%      { opacity:1;  transform:translate(-50%,-50%) scale(1.1); }
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.hero-orb-1 { width:500px; height:500px; background:rgba(0,180,255,0.07); top:-150px; left:-150px; animation: orbDrift 18s ease-in-out infinite; }
.hero-orb-2 { width:400px; height:400px; background:rgba(0,100,255,0.05); bottom:-120px; right:-100px; animation: orbDrift 13s ease-in-out infinite reverse; }
@keyframes orbDrift { 0%,100%{transform:translate(0,0)} 50%{transform:translate(25px,-18px)} }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 860px; margin: 0 auto;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,153,255,0.07); border: 1px solid rgba(0,153,255,0.2);
  padding: 6px 18px; border-radius: 30px; font-size: 12px; font-weight: 600;
  color: #0077cc; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s ease forwards .2s;
}
.chip-dot { width:6px; height:6px; background:#0099ff; border-radius:50%; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(1.6)} }

.hero-title {
  font-size: clamp(34px,5.5vw,68px); font-weight:900; color:#0a0f1e;
  line-height:1.06; letter-spacing:-0.03em; margin-bottom:22px;
  opacity:0; animation: fadeUp .9s ease forwards .35s;
}
.hero-title .line-blue {
  background: linear-gradient(90deg,#00b4ff,#0066ff,#00b4ff);
  background-size: 200% 100%;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { 0%{background-position:0%} 100%{background-position:200%} }
.hero-typewriter-wrap { display:block; height:1.15em; line-height:1.15; margin-top:4px; }
.hero-typewriter { display:inline-block; color:#0088ee; }

.hero-sub {
  font-size: clamp(15px,1.8vw,18px); color:#4b5563; max-width:600px;
  margin:0 auto 34px; line-height:1.7; font-weight:400;
  opacity:0; animation: fadeUp .9s ease forwards .55s;
}
.hero-sub strong { color:#111827; font-weight:700; }

.hero-channels {
  display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:32px;
  opacity:0; animation: fadeUp .9s ease forwards .7s;
}
.ch-pill {
  display:inline-flex; align-items:center; gap:6px;
  background:#f0f7ff; border:1px solid #bfdfff;
  padding:6px 13px; border-radius:20px; font-size:12.5px; color:#1a5fa8; font-weight:600;
}

.hero-ctas {
  display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-bottom:32px;
  opacity:0; animation: fadeUp .9s ease forwards .85s;
}
.btn-primary {
  display:inline-flex; align-items:center; gap:10px;
  background:linear-gradient(135deg,#00b4ff,#0066ff); color:#fff;
  font-size:15px; font-weight:700; padding:15px 30px; border-radius:50px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,102,255,.3);
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 10px 32px rgba(0,102,255,.45); color:#fff; }
.btn-secondary {
  display:inline-flex; align-items:center; gap:10px;
  background:#fff; color:#1a5fa8; font-size:15px; font-weight:600;
  padding:15px 28px; border-radius:50px; border:1.5px solid #bfdfff;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.btn-secondary:hover { transform:translateY(-3px); border-color:#0099ff; box-shadow:0 6px 20px rgba(0,153,255,.12); color:#1a5fa8; }
.btn-arrow { transition:transform .2s; }
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform:translateX(4px); }

.hero-trust {
  display:flex; justify-content:center; align-items:center; gap:10px; flex-wrap:wrap;
  opacity:0; animation: fadeUp .9s ease forwards 1s;
}
.trust-item { display:inline-flex; align-items:center; gap:5px; font-size:12.5px; color:#9ca3af; font-weight:500; }
.trust-sep { width:3px; height:3px; background:#d1d5db; border-radius:50%; }
.trust-check { color:#0099ff; font-weight:800; font-size:12px; }

.hero-stats {
  display:flex; justify-content:center; margin-top:52px; padding-top:40px;
  border-top:1px solid #e5e7eb;
  opacity:0; animation: fadeUp .9s ease forwards 1.1s;
}
.stat-item { flex:1; max-width:180px; text-align:center; padding:0 20px; position:relative; }
.stat-item+.stat-item::before {
  content:''; position:absolute; left:0; top:10%; bottom:10%;
  width:1px; background:#e5e7eb;
}
.stat-num {
  font-size:clamp(26px,3.5vw,40px); font-weight:900;
  background:linear-gradient(135deg,#00b4ff,#0066ff);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  line-height:1; margin-bottom:6px;
}
.stat-label { font-size:12.5px; color:#6b7280; line-height:1.45; }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ══════════════════════════════════
   MARQUEE BANNER
══════════════════════════════════ */
.text-marquee {
  background: linear-gradient(180deg,#ffffff 0%,#29a1f2 100%);
  padding: 20px 0; overflow:hidden; width:100%;
}
.text-marquee span {
  display:inline-block; padding-left:100%;
  font-size:clamp(28px,4vw,55px); font-weight:800;
  color:rgba(255,255,255,0.5);
  animation: marquee 18s linear infinite;
  white-space:nowrap;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-100%)} }

/* ══════════════════════════════════
   PAIN CARDS
══════════════════════════════════ */
.pain-section { background:#fff; padding:80px 24px; }
.section-container { max-width:1200px; margin:0 auto; }

.dominia-v2-wrap {
  display:grid; grid-template-columns:repeat(2,minmax(290px,1fr));
  gap:30px; align-items:stretch; font-family:var(--font-main);
}
.dominia-v2-card {
  background:#fff; border-radius:26px; padding:38px 38px 28px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 10px 28px rgba(0,0,0,0.08),0 2px 6px rgba(0,0,0,0.04);
  position:relative; overflow:hidden;
  transition:transform .2s, box-shadow .2s, border-color .2s;
}
.dominia-v2-card::after {
  content:""; position:absolute; width:320px; height:320px;
  right:-120px; top:-140px;
  background:radial-gradient(circle,rgba(41,161,242,0.14),transparent 65%);
  pointer-events:none;
}
.dominia-v2-card:hover { transform:translateY(-4px); border-color:rgba(41,161,242,0.22); box-shadow:0 16px 40px rgba(0,0,0,0.12); }
.dominia-v2-head { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:16px; }
.dominia-v2-pill {
  display:inline-block; padding:8px 14px; border-radius:999px;
  background:rgba(41,161,242,0.12); color:#1b79c8;
  font-size:11.5px; font-weight:800; letter-spacing:.5px; text-transform:uppercase;
  border:1px solid rgba(41,161,242,0.22);
}
.dominia-v2-dot { width:10px; height:10px; border-radius:50%; background:#29A1F2; box-shadow:0 0 0 4px rgba(41,161,242,0.12); flex-shrink:0; }
.dominia-v2-title { font-size:27px; line-height:1.18; font-weight:800; color:#0a0a0a; margin:0 0 12px; }
.dominia-v2-desc { font-size:16.2px; line-height:1.55; color:#535a63; margin:0 0 26px; }
.dominia-v2-stats { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.dominia-v2-stat { background:#f8fbff; border:1px solid rgba(41,161,242,0.10); border-radius:16px; padding:18px 18px 16px; }
.dominia-v2-number { font-size:20px; font-weight:800; color:#29A1F2; line-height:1.2; margin-bottom:6px; }
.dominia-v2-label { font-size:13.8px; color:#66707b; }
.dominia-v2-foot { margin-top:18px; padding-top:14px; border-top:1px dashed rgba(0,0,0,0.08); }
.dominia-v2-note { font-size:11.8px; color:#8a93a0; }

/* ══════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════ */
.testimonials-section {
  background:linear-gradient(180deg,#fff 30%,#fff 70%);
  padding:80px 24px; text-align:center;
}
.section-label {
  font-size:16px; font-weight:400; text-transform:uppercase;
  letter-spacing:2px; color:#222; margin-bottom:16px;
}
.section-title-large {
  font-size:clamp(28px,4vw,48px); font-weight:500;
  letter-spacing:-2px; color:#222; margin-bottom:48px;
  max-width:700px; margin-left:auto; margin-right:auto;
}
.testimonials-carousel { max-width:700px; margin:0 auto; position:relative; }
.testimonial-slide { display:none; }
.testimonial-slide.active { display:block; }
.testimonial-text { font-size:16px; line-height:24px; color:#212121; margin-bottom:24px; font-weight:300; }
.testimonial-image img { width:120px; height:120px; border-radius:0; object-fit:cover; margin:0 auto 16px; display:block; }
.testimonial-title { font-size:22px; font-weight:400; text-transform:uppercase; letter-spacing:9px; color:#212121; }
.carousel-controls { display:flex; justify-content:center; gap:16px; margin-top:24px; align-items:center; }
.carousel-btn {
  background:none; border:none; font-size:24px; cursor:pointer;
  color:#212121; padding:8px; transition:color .2s;
}
.carousel-btn:hover { color:var(--blue-primary); }
.carousel-dots { display:flex; gap:8px; }
.carousel-dot { width:10px; height:10px; border-radius:50%; background:#212121; cursor:pointer; transition:background .2s; }
.carousel-dot.active { background:#00B9FF; }

/* ══════════════════════════════════
   AI FEATURE CARDS (dark neon)
══════════════════════════════════ */
.ai-features-section { padding:80px 24px; background:#fff; }
.ai-grid {
  display:grid; grid-template-columns:repeat(2,minmax(280px,1fr));
  gap:32px; font-family:var(--font-main); padding:20px; max-width:1200px; margin:0 auto;
}
.ai-card {
  background:linear-gradient(135deg,#0a0e1a 0%,#0d1117 100%);
  border:2px solid transparent; border-radius:24px;
  padding:38px 32px 36px; position:relative; overflow:hidden;
  transition:all .4s cubic-bezier(.4,0,.2,1);
  box-shadow:0 8px 32px rgba(0,0,0,.4),inset 0 1px 0 rgba(255,255,255,.05);
}
.ai-card::before {
  content:""; position:absolute; inset:0; border-radius:24px; padding:2px;
  background:linear-gradient(135deg,#00d4ff 0%,#0099ff 25%,#0066ff 50%,#0099ff 75%,#00d4ff 100%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  opacity:.6; transition:opacity .4s ease;
}
.ai-card:hover { transform:translateY(-8px) scale(1.02); box-shadow:0 20px 60px rgba(0,153,255,.3),0 0 80px rgba(0,212,255,.2); }
.ai-card:hover::before { opacity:1; }
.ai-icon {
  width:56px; height:56px; border-radius:16px;
  background:linear-gradient(135deg,rgba(0,153,255,.2),rgba(0,212,255,.1));
  border:1px solid rgba(0,153,255,.4);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  box-shadow:0 8px 32px rgba(0,153,255,.2),inset 0 1px 0 rgba(255,255,255,.1);
  transition:all .3s ease;
}
.ai-card:hover .ai-icon { transform:scale(1.1) rotate(5deg); }
.ai-icon span { font-size:26px; }
.ai-card h3 { color:#fff; font-size:22px; line-height:1.3; font-weight:700; margin:0 0 14px; transition:color .3s; }
.ai-card:hover h3 { color:#00d4ff; }
.ai-card p { color:rgba(255,255,255,.75); font-size:15px; line-height:1.6; margin:0; transition:color .3s; }
.ai-card:hover p { color:rgba(255,255,255,.9); }

/* ══════════════════════════════════
   SOLUTIONS GRID
══════════════════════════════════ */
.solutions-section { padding:80px 24px; background:#fff; }
.ai-solutions-wrapper { max-width:1400px; margin:0 auto; padding:40px 20px; font-family:var(--font-main); }
.ai-solutions-top { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-bottom:24px; }
.ai-solutions-bottom { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.solution-card, .solution-card-small {
  background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:20px;
  padding:32px; box-shadow:0 4px 20px rgba(0,0,0,.06);
  transition:all .3s ease;
}
.solution-card:hover, .solution-card-small:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,153,255,.15); border-color:rgba(0,153,255,.2); }
.solution-card-small { padding:28px 24px; }
.solution-title { font-size:20px; font-weight:700; color:#212529; margin:0 0 12px; line-height:1.3; }
.solution-desc  { font-size:15px; color:#6c757d; line-height:1.6; margin:0; }
.solution-title-small { font-size:18px; font-weight:700; color:#212529; margin:0 0 12px; line-height:1.3; }
.solution-desc-small  { font-size:14px; color:#6c757d; line-height:1.6; margin:0; }

/* Chat mockup */
.chat-mockup { background:#f8f9fa; border-radius:16px; padding:20px; margin-bottom:24px; min-height:280px; }
.chat-message { display:flex; gap:12px; margin-bottom:16px; }
.msg-avatar { width:32px; height:32px; border-radius:50%; background:#e9ecef; display:flex; align-items:center; justify-content:center; font-weight:600; font-size:14px; color:#495057; flex-shrink:0; }
.ai-avatar { background:linear-gradient(135deg,#00d4ff,#0099ff); color:#fff; }
.msg-time { font-size:11px; color:#6c757d; margin-bottom:4px; }
.msg-text { background:#fff; padding:12px 16px; border-radius:12px; font-size:14px; line-height:1.5; color:#212529; box-shadow:0 2px 8px rgba(0,0,0,.05); }
.ai-msg .msg-text { background:#f1f3f5; }
.calendar-link { display:inline-flex; align-items:center; gap:8px; background:#fff; padding:10px 14px; border-radius:10px; margin-top:8px; font-size:13px; color:#0099ff; box-shadow:0 2px 8px rgba(0,0,0,.05); }
.chat-input { display:flex; align-items:center; gap:12px; background:#fff; padding:12px 16px; border-radius:12px; margin-top:16px; border:1px solid #e9ecef; }
.input-text { flex:1; font-size:14px; color:#adb5bd; }
.send-icon { width:28px; height:28px; background:#00d4ff; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:16px; }

/* Content mockup */
.content-mockup { margin-bottom:24px; min-height:280px; }
.generating-box { background:#f8f9fa; border-radius:16px; padding:20px; height:100%; }
.preview-area { background:#fff; border-radius:12px; height:180px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; border:2px dashed #dee2e6; position:relative; overflow:hidden; }
.loading-state { font-size:14px; color:#6c757d; animation:pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.preview-area::after { content:""; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg,transparent,rgba(0,212,255,.2),transparent); animation:shimmer-load 2s infinite; }
@keyframes shimmer-load { 0%{left:-100%} 100%{left:100%} }
.content-input { display:flex; gap:12px; }
.content-input input { flex:1; padding:12px 16px; border:1px solid #e9ecef; border-radius:10px; font-size:14px; background:#fff; color:#495057; font-family:inherit; }
.generate-btn { padding:12px 24px; background:#00d4ff; color:#fff; border:none; border-radius:10px; font-size:14px; font-weight:600; cursor:pointer; white-space:nowrap; font-family:inherit; }

/* Icon circle */
.icon-circle { width:180px; height:180px; margin:0 auto 24px; position:relative; }
.floating-icons { position:relative; width:100%; height:100%; }
.float-icon { position:absolute; font-size:24px; animation:float 3s ease-in-out infinite; }
.icon-1{top:10%;left:10%;animation-delay:0s}
.icon-2{top:10%;right:10%;animation-delay:.5s}
.icon-3{bottom:10%;left:10%;animation-delay:1s}
.icon-4{bottom:10%;right:10%;animation-delay:1.5s}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.center-badge { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:120px; height:120px; background:#fff; border:3px solid #00d4ff; border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; box-shadow:0 8px 24px rgba(0,153,255,.2); }
.badge-number { font-size:32px; font-weight:800; color:#00d4ff; line-height:1; }
.badge-label  { font-size:12px; color:#6c757d; margin-top:4px; }

/* Voice visual */
.voice-visual { height:180px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; margin-bottom:24px; }
.voice-wave { display:flex; align-items:center; gap:6px; height:60px; }
.wave-bar { width:6px; background:linear-gradient(180deg,#00d4ff,#0099ff); border-radius:3px; animation:wave-anim 1.2s ease-in-out infinite; }
.bar-1{height:20%;animation-delay:0s}.bar-2{height:40%;animation-delay:.1s}.bar-3{height:70%;animation-delay:.2s}.bar-4{height:90%;animation-delay:.3s}.bar-5{height:70%;animation-delay:.4s}.bar-6{height:40%;animation-delay:.5s}.bar-7{height:20%;animation-delay:.6s}
@keyframes wave-anim { 0%,100%{height:20%} 50%{height:100%} }
.speaking-badge { display:inline-flex; align-items:center; gap:8px; background:#e7f5ff; padding:8px 16px; border-radius:20px; font-size:13px; color:#0099ff; font-weight:600; }
.pulse-dot { width:8px; height:8px; background:#00d4ff; border-radius:50%; animation:pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.voice-bubble { background:#fff; padding:12px 16px; border-radius:12px; font-size:14px; color:#495057; box-shadow:0 4px 12px rgba(0,0,0,.08); }

/* Chart visual */
.chart-visual { height:180px; margin-bottom:24px; position:relative; display:flex; align-items:center; justify-content:center; }
.efficiency-chart { width:100%; height:100%; }
.trend-line { stroke-dasharray:300; stroke-dashoffset:300; animation:drawLine 2s ease forwards; }
@keyframes drawLine { to{stroke-dashoffset:0} }
.trend-area { opacity:0; animation:fadeArea 1s ease 1s forwards; }
@keyframes fadeArea { to{opacity:1} }
.chart-badge { position:absolute; padding:6px 12px; border-radius:8px; font-size:12px; font-weight:600; box-shadow:0 4px 12px rgba(0,0,0,.1); opacity:0; animation:slideInBadge .5s ease forwards; background:#e7f5ff; color:#0099ff; }
.badge-efficiency { top:20px; right:20px; animation-delay:2s; }
.badge-cost       { bottom:30px; left:20px; animation-delay:2.2s; }
@keyframes slideInBadge { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }

/* ══════════════════════════════════
   CALENDLY SECTION
══════════════════════════════════ */
.calendly-section { padding:60px 24px; background:#fff; }
.calendly-section .section-container { max-width:900px; }

/* ══════════════════════════════════
   TECH CAROUSEL
══════════════════════════════════ */
.tech-section { background:#fff; padding:48px 0; }
.dm-carousel-label { text-align:center; margin-bottom:32px; }
.dm-carousel-label span { font-size:13px; font-weight:600; color:#9ca3af; letter-spacing:.1em; text-transform:uppercase; }
.dm-track-wrap { position:relative; width:100%; }
.dm-track-wrap::before, .dm-track-wrap::after {
  content:''; position:absolute; top:0; bottom:0; width:120px; z-index:2; pointer-events:none;
}
.dm-track-wrap::before { left:0; background:linear-gradient(to right,#fff,transparent); }
.dm-track-wrap::after  { right:0; background:linear-gradient(to left,#fff,transparent); }
.dm-track { display:flex; gap:0; width:max-content; animation:scroll-left 28s linear infinite; }
.dm-track:hover { animation-play-state:paused; }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.dm-logo-item { display:flex; align-items:center; gap:10px; padding:0 44px; white-space:nowrap; transition:opacity .2s; }
.dm-logo-item:hover { opacity:.7; }
.dm-logo-icon { width:32px; height:32px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.dm-logo-icon svg { width:100%; height:100%; }
.dm-logo-name { font-size:18px; font-weight:700; color:#1a1a2e; letter-spacing:-.01em; }
.dm-divider { width:5px; height:5px; border-radius:50%; background:#00d4ff; opacity:.4; flex-shrink:0; align-self:center; margin:0 -22px; }

/* ══════════════════════════════════
   PROCESS & ROI
══════════════════════════════════ */
.process-section { background:#fff; padding:80px 24px; font-family:var(--font-main); }
.dm-chip { display:inline-flex; align-items:center; gap:7px; background:rgba(0,212,255,.08); border:1px solid rgba(0,212,255,.25); padding:5px 16px; border-radius:30px; font-size:12px; font-weight:600; color:#0099ff; letter-spacing:.06em; text-transform:uppercase; margin-bottom:16px; }
.dm-chip-dot { width:6px; height:6px; background:#00d4ff; border-radius:50%; animation:blink 1.5s ease-in-out infinite; }
.dm-section-head { text-align:center; margin-bottom:56px; }
.dm-section-title { font-size:clamp(26px,4vw,44px); font-weight:900; color:#111; letter-spacing:-.02em; line-height:1.15; margin-bottom:12px; }
.dm-section-title span { background:linear-gradient(90deg,#00d4ff,#0099ff); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.dm-section-sub { font-size:16px; color:#6b7280; max-width:520px; margin:0 auto; line-height:1.65; }

/* Steps */
.steps-wrap { max-width:1000px; margin:0 auto 80px; position:relative; }
.steps-wrap::before { content:''; position:absolute; top:38px; left:calc(12.5% + 26px); right:calc(12.5% + 26px); height:2px; background:linear-gradient(90deg,#00d4ff,#0099ff,#00d4ff); background-size:200% 100%; animation:linePulse 3s ease-in-out infinite; z-index:0; }
@keyframes linePulse { 0%,100%{background-position:0% 50%;opacity:.3} 50%{background-position:100% 50%;opacity:.8} }
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; z-index:1; }
.step-card { text-align:center; padding:0 8px; opacity:0; transform:translateY(20px); transition:opacity .5s, transform .5s; }
.step-card.visible { opacity:1; transform:translateY(0); }
.step-num-wrap { width:52px; height:52px; margin:0 auto 20px; position:relative; }
.step-num-bg { width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,#00d4ff,#0099ff); display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:900; color:#fff; box-shadow:0 4px 16px rgba(0,153,255,.35); position:relative; z-index:1; transition:transform .3s, box-shadow .3s; }
.step-card:hover .step-num-bg { transform:scale(1.1); box-shadow:0 6px 24px rgba(0,153,255,.5); }
.step-num-ring { position:absolute; inset:-6px; border-radius:50%; border:2px solid rgba(0,212,255,.3); animation:ringPulse 2s ease-out infinite; }
@keyframes ringPulse { 0%{transform:scale(.85);opacity:.8} 100%{transform:scale(1.3);opacity:0} }
.step-icon { width:44px; height:44px; margin:0 auto 14px; display:flex; align-items:center; justify-content:center; background:rgba(0,212,255,.07); border:1.5px solid rgba(0,212,255,.2); border-radius:12px; transition:background .3s, border-color .3s; }
.step-card:hover .step-icon { background:rgba(0,212,255,.13); border-color:#00d4ff; }
.step-icon svg { width:22px; height:22px; }
.step-title { font-size:16px; font-weight:800; color:#111; margin-bottom:8px; line-height:1.3; }
.step-desc  { font-size:13.5px; color:#6b7280; line-height:1.6; }
.step-time  { display:inline-block; margin-top:12px; background:rgba(0,212,255,.08); border:1px solid rgba(0,212,255,.2); color:#0099ff; font-size:11.5px; font-weight:700; padding:4px 12px; border-radius:20px; }

/* ROI Calculator */
.roi-section { max-width:1000px; margin:0 auto; }
.roi-card { background:#0a0f1e; border-radius:24px; padding:48px 44px; border:1px solid rgba(0,212,255,.15); box-shadow:0 20px 60px rgba(0,0,0,.12); opacity:0; transform:translateY(24px); transition:opacity .6s, transform .6s; }
.roi-card.visible { opacity:1; transform:translateY(0); }
.roi-head { text-align:center; margin-bottom:40px; }
.roi-title { font-size:clamp(22px,3vw,34px); font-weight:900; color:#fff; letter-spacing:-.02em; margin-bottom:8px; }
.roi-title span { background:linear-gradient(90deg,#00d4ff,#0099ff); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.roi-subtitle { font-size:15px; color:#8696a0; max-width:460px; margin:0 auto; line-height:1.6; }
.roi-body { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.roi-inputs { display:flex; flex-direction:column; gap:24px; }
.roi-input-group { display:flex; flex-direction:column; gap:10px; }
.roi-label { font-size:13px; font-weight:600; color:#e9edef; display:flex; justify-content:space-between; align-items:center; }
.roi-label-val { font-size:15px; font-weight:800; color:#00d4ff; }
input[type="range"] { -webkit-appearance:none; width:100%; height:6px; border-radius:3px; background:#1a2535; outline:none; cursor:pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance:none; width:20px; height:20px; border-radius:50%; background:linear-gradient(135deg,#00d4ff,#0099ff); box-shadow:0 2px 8px rgba(0,153,255,.5); cursor:pointer; }
.roi-range-labels { display:flex; justify-content:space-between; font-size:11px; color:#4b5563; }
.roi-results { display:flex; flex-direction:column; gap:14px; }
.roi-block-loss { background:rgba(255,75,75,.06); border:1px solid rgba(255,75,75,.2); border-radius:16px; padding:20px 22px; }
.roi-block-gain { background:rgba(0,212,255,.05); border:1px solid rgba(0,212,255,.2); border-radius:16px; padding:20px 22px; }
.roi-block-label { font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; margin-bottom:14px; }
.roi-block-loss .roi-block-label { color:#ff6b6b; }
.roi-block-gain .roi-block-label { color:#00d4ff; }
.roi-metric-row { display:flex; justify-content:space-between; align-items:center; padding:7px 0; border-bottom:1px solid rgba(255,255,255,.04); }
.roi-metric-row:last-child { border-bottom:none; }
.roi-metric-name { font-size:13px; color:#8696a0; }
.roi-metric-val  { font-size:15px; font-weight:800; }
.roi-block-loss .roi-metric-val { color:#ff6b6b; }
.roi-block-gain .roi-metric-val { color:#00d4ff; }
.roi-divider { display:flex; align-items:center; gap:12px; color:#8696a0; font-size:12px; font-weight:600; }
.roi-divider::before,.roi-divider::after { content:''; flex:1; height:1px; background:rgba(255,255,255,.06); }
.roi-highlight { background:linear-gradient(135deg,rgba(0,212,255,.12),rgba(0,153,255,.08)); border:1.5px solid #00d4ff; border-radius:16px; padding:20px 22px; text-align:center; }
.roi-highlight-label { font-size:12px; font-weight:700; color:#8696a0; text-transform:uppercase; letter-spacing:.07em; margin-bottom:6px; }
.roi-highlight-num { font-size:42px; font-weight:900; background:linear-gradient(90deg,#00d4ff,#0099ff); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:4px; }
.roi-highlight-sub { font-size:13px; color:#8696a0; }
.roi-cta { margin-top:36px; text-align:center; padding-top:28px; border-top:1px solid rgba(0,212,255,.1); }
.roi-cta-text { font-size:14px; color:#8696a0; margin-bottom:16px; }
.roi-cta-text strong { color:#e9edef; }
.roi-cta-btn { display:inline-flex; align-items:center; gap:10px; background:linear-gradient(135deg,#00d4ff,#0099ff); color:#fff; font-size:15px; font-weight:700; padding:15px 32px; border-radius:50px; transition:transform .2s, box-shadow .2s; }
.roi-cta-btn:hover { transform:translateY(-2px); box-shadow:0 10px 30px rgba(0,153,255,.4); color:#fff; }
.roi-arrow { transition:transform .2s; }
.roi-cta-btn:hover .roi-arrow { transform:translateX(4px); }
.roi-disclaimer { margin-top:12px; font-size:11.5px; color:#4b5563; }

/* ══════════════════════════════════
   FOR WHO
══════════════════════════════════ */
.forwho-section { background:#fff; padding:80px 24px; font-family:var(--font-main); }
.fw-header { text-align:center; margin-bottom:52px; }
.fw-title { font-size:clamp(28px,4.5vw,48px); font-weight:900; color:#111; letter-spacing:-.02em; line-height:1.1; margin-bottom:14px; text-transform:uppercase; }
.fw-subtitle { font-size:16px; color:#6b7280; max-width:500px; margin:0 auto; line-height:1.6; }
.fw-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:1000px; margin:0 auto; }
.fw-card { background:#fff; border-radius:20px; padding:36px 32px; position:relative; overflow:hidden; opacity:0; transform:translateY(20px); transition:opacity .55s, transform .55s, box-shadow .3s; }
.fw-card.visible { opacity:1; transform:translateY(0); }
.fw-card:hover { transform:translateY(-4px); }
.fw-card-yes { border:2px solid #00d4ff; box-shadow:0 2px 20px rgba(0,212,255,.1); }
.fw-card-no  { border:2px solid #e5e7eb; box-shadow:0 2px 16px rgba(0,0,0,.05); transition-delay:.12s; }
.fw-card-header { display:flex; align-items:center; gap:14px; margin-bottom:28px; }
.fw-card-icon { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:700; flex-shrink:0; }
.fw-card-yes .fw-card-icon { background:rgba(0,212,255,.1); border:2px solid #00d4ff; color:#0099ff; }
.fw-card-no  .fw-card-icon { background:#f3f4f6; border:2px solid #d1d5db; color:#6b7280; }
.fw-card-heading { font-size:21px; font-weight:800; letter-spacing:-.01em; }
.fw-card-yes .fw-card-heading { color:#0099ff; }
.fw-card-no  .fw-card-heading { color:#111; }
.fw-items { display:flex; flex-direction:column; gap:16px; }
.fw-item { display:flex; align-items:flex-start; gap:13px; opacity:0; transform:translateX(-8px); transition:opacity .4s, transform .4s; }
.fw-item.visible { opacity:1; transform:translateX(0); }
.fw-item-icon { width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; font-size:11px; font-weight:700; }
.fw-card-yes .fw-item-icon { background:rgba(0,212,255,.1); border:1.5px solid #00d4ff; color:#0099ff; }
.fw-card-no  .fw-item-icon { background:#f3f4f6; border:1.5px solid #d1d5db; color:#9ca3af; }
.fw-item-text { font-size:15px; line-height:1.6; font-weight:500; color:#374151; }
.fw-cta { margin-top:32px; padding-top:24px; border-top:1px solid rgba(0,212,255,.2); }
.fw-cta-btn { display:inline-flex; align-items:center; gap:10px; background:linear-gradient(135deg,#00d4ff,#0099ff); color:#fff; font-size:14px; font-weight:700; padding:13px 26px; border-radius:50px; transition:transform .2s, box-shadow .2s; }
.fw-cta-btn:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,153,255,.35); color:#fff; }
.fw-cta-arrow { transition:transform .2s; }
.fw-cta-btn:hover .fw-cta-arrow { transform:translateX(4px); }

/* ══════════════════════════════════
   CTA SECTION
══════════════════════════════════ */
.cta-section { background:#fff; padding:80px 24px; }
.cta-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.cta-title { font-size:clamp(28px,3.9vw,50px); font-weight:600; color:#000; letter-spacing:-.02em; line-height:1.1; margin-bottom:20px; }
.cta-desc  { font-size:22px; color:#000; font-weight:300; line-height:1.5; margin-bottom:28px; }
.cta-btn {
  display:inline-flex; align-items:center; gap:10px;
  background:#00C2CA; color:#fff; font-size:16px; font-weight:500;
  padding:20px 50px; border-radius:50px; border:1px solid #fff;
  transition:all .2s;
}
.cta-btn:hover { background:transparent; border-color:#00C2CA; color:#00C2CA; }
.cta-image img { width:100%; border-radius:12px; }

/* ══════════════════════════════════
   SERVICE CARDS
══════════════════════════════════ */
.services-section { padding:60px 24px; background:#fff; }
.cards-row { display:flex; gap:30px; flex-wrap:wrap; max-width:1200px; margin:0 auto; }
.service-ai-card {
  background:#fff; padding:40px; border-radius:28px; color:#111;
  box-shadow:0 10px 35px rgba(0,0,0,.08); max-width:550px;
  font-family:var(--font-main); flex:1 1 320px; border:1px solid rgba(0,0,0,.05);
}
.service-ai-card .tag { display:inline-block; background:#29A1F2; padding:6px 16px; border-radius:999px; font-size:12px; font-weight:600; color:#fff; margin-bottom:18px; letter-spacing:.5px; }
.service-ai-card .card-title { font-size:24px; font-weight:700; margin:0 0 12px; color:#0a0a0a; }
.service-ai-card .card-desc  { opacity:.75; margin:15px 0 30px; line-height:1.6; font-size:15px; }
.service-ai-card .stats { display:flex; justify-content:space-between; gap:20px; }
.service-ai-card .stat h3 { font-size:40px; color:#29A1F2; margin:0; font-weight:700; }
.service-ai-card .stat span { font-size:14px; opacity:.7; }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-section { padding:80px 24px; background:#fff; }
.faq-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 2fr; gap:60px; align-items:start; }
.faq-label { font-size:37px; font-weight:500; color:#00EEFF; font-family:'Montserrat',sans-serif; margin-bottom:8px; }
.faq-title { font-size:48px; font-weight:800; text-transform:uppercase; color:#000; font-family:'Archivo',sans-serif; line-height:1; }
.faq-list { border-top:3px solid #000CFF; }
.faq-item { border-bottom:3px solid #000CFF; margin-bottom:16px; }
.faq-question {
  width:100%; text-align:left; background:none; border:none;
  padding:35px 0; cursor:pointer; display:flex; justify-content:space-between; align-items:center;
  font-family:'Archivo',sans-serif; font-size:26px; font-weight:700; color:#00EEFF; text-transform:uppercase;
  letter-spacing:-.45px;
}
.faq-question:hover { color:#00d4ff; }
.faq-icon { font-size:24px; color:#00EEFF; flex-shrink:0; transition:transform .3s; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-answer {
  display:none; padding:0 0 20px;
  font-family:'Montserrat',sans-serif; font-size:18px; color:#000; line-height:1.2;
}
.faq-item.open .faq-answer { display:block; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer { background:#000; color:#fff; padding:60px 24px 0; }
.footer-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr auto auto; gap:60px; padding-bottom:40px; }
.footer-brand img { max-height:60px; margin-bottom:16px; }
.footer-brand p { font-size:14px; color:rgba(255,255,255,.6); line-height:1.6; max-width:280px; }
.footer-socials { display:flex; gap:12px; margin-top:16px; }
.footer-socials a { display:flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.05); transition:background .2s; }
.footer-socials a:hover { background:rgba(70,127,247,.3); }
.footer-socials svg { width:18px; height:18px; fill:#467FF7; }
.footer-col h6 { font-size:22px; font-weight:600; margin-bottom:20px; color:#fff; font-family:var(--font-alt); }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:16px; color:rgba(255,255,255,.75); font-weight:300; transition:color .2s; font-family:var(--font-alt); }
.footer-col ul li a:hover { color:#C8D5DC; }
.footer-col .contact-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col .contact-list li { font-size:16px; color:rgba(255,255,255,.75); font-weight:300; font-family:var(--font-alt); }
.footer-col .contact-list li a { color:rgba(255,255,255,.75); transition:color .2s; }
.footer-col .contact-list li a:hover { color:#C8D5DC; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding:20px 0; text-align:center; }
.footer-bottom p { font-size:16px; font-weight:300; color:rgba(255,255,255,.6); font-family:var(--font-alt); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .dominia-v2-wrap     { grid-template-columns:1fr; }
  .ai-grid             { grid-template-columns:1fr; }
  .ai-solutions-top    { grid-template-columns:1fr; }
  .ai-solutions-bottom { grid-template-columns:1fr; }
  .steps-wrap::before  { display:none; }
  .steps-grid          { grid-template-columns:repeat(2,1fr); }
  .roi-body            { grid-template-columns:1fr; }
  .fw-grid             { grid-template-columns:1fr; }
  .cta-inner           { grid-template-columns:1fr; gap:40px; }
  .faq-inner           { grid-template-columns:1fr; }
  .footer-inner        { grid-template-columns:1fr; gap:40px; }
}
@media (max-width: 768px) {
  .nav-menu  { display:none; }
  .hamburger { display:block; }
  .hero-ctas { flex-direction:column; align-items:center; }
  .btn-primary, .btn-secondary { width:100%; max-width:320px; justify-content:center; }
  .hero-stats { flex-wrap:wrap; gap:20px; }
  .stat-item { max-width:none; width:calc(50% - 10px); padding:0; }
  .stat-item+.stat-item::before { display:none; }
  .trust-sep { display:none; }
  .steps-grid  { grid-template-columns:1fr; }
  .roi-card    { padding:32px 24px; }
  .faq-question { font-size:20px; }
  .dm-hero { padding:90px 16px 60px; }
}
@media (max-width: 480px) {
  .dominia-v2-stats { grid-template-columns:1fr; }
  .service-ai-card .stats { flex-direction:column; }
}
