/* ==========================================
   dot.psd Website Stylesheet
   ========================================== */

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

:root {
  --blue: #2D1FE8;
  --magenta: #D41FBE;
  --grad: linear-gradient(135deg, #2D1FE8 0%, #8B1AD4 50%, #D41FBE 100%);
  --grad-text: linear-gradient(135deg, #6B8AFF 0%, #C46FFF 50%, #FF6FE0 100%);

  /* DARK MODE (default) */
  --bg: #080612;
  --bg2: #0f0a22;
  --bg3: #150e2e;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --text: #f0eeff;
  --text2: #a09ac0;
  --text3: #6b6390;
  --card-bg: rgba(255,255,255,0.03);
  --nav-bg: rgba(8,6,18,0.85);
}

[data-theme="light"] {
  --bg: #f5f3ff;
  --bg2: #ede9ff;
  --bg3: #e4dfff;
  --surface: rgba(45,31,232,0.05);
  --surface-hover: rgba(45,31,232,0.08);
  --border: rgba(45,31,232,0.1);
  --border-strong: rgba(45,31,232,0.2);
  --text: #120a3a;
  --text2: #4a3f7a;
  --text3: #8070b0;
  --card-bg: rgba(255,255,255,0.7);
  --nav-bg: rgba(245,243,255,0.85);
  --grad-text: linear-gradient(135deg, #2D1FE8 0%, #8B1AD4 50%, #D41FBE 100%);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  /* Secondary Font applied globally to Body */
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}

/* ── TYPOGRAPHY (Articulat + Montserrat + Syne) ── */
h1, h2, h3, h4, h5, .stat-num, .stat-plus, .btn, .price-main { 
  font-family: 'Articulat', sans-serif; 
  line-height: 1.1; 
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--text);
  overflow: visible;
}

.section-tag, .loader-text, .plan-badge, .service-num, .method-type {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

/* ── LOGOS (CLEAN NATIVE PNG) ── */
.nav-logo-img { 
  height: 36px !important; 
  max-width: 140px !important; 
  width: auto !important; 
  object-fit: contain !important; 
  display: block !important; 
}
.footer-logo-img { 
  height: 48px !important; 
  max-width: 180px !important; 
  width: auto !important; 
  margin-bottom: 16px !important; 
  object-fit: contain !important; 
  display: block !important; 
}
.loader-logo-img { 
  height: 60px !important; 
  max-width: 220px !important; 
  width: auto !important; 
  margin: 0 auto !important; 
  object-fit: contain !important; 
  display: block !important; 
  position: relative;
  z-index: 5;
}

/* Strict Light/Dark display mapping */
.logo-for-dark { display: block !important; }
.logo-for-light { display: none !important; }
html[data-theme="light"] .logo-for-dark { display: none !important; }
html[data-theme="light"] .logo-for-light { display: block !important; }

/* ── CURSOR ── */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--magenta);
  box-shadow: 0 0 12px var(--magenta);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(212,31,190,0.5);
  transition: opacity 0.2s, width 0.2s, height 0.2s, border-color 0.2s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 54px; height: 54px;
  border-color: var(--magenta);
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── UPGRADED CINEMATIC LOADER ── */
.loader {
  position: fixed; inset: 0;
  background: #000000 !important;
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.loader-bg-grid {
  position: absolute; inset: -50%;
  background-image: 
    linear-gradient(rgba(212,31,190,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,31,190,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg) translateY(0);
  animation: gridFly 15s linear infinite;
  z-index: 0;
}
@keyframes gridFly {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(500px); }
}

.loader-glow-1 {
  position: absolute;
  width: 60vw; height: 60vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(212,31,190,0.15) 0%, transparent 60%);
  border-radius: 50%;
  top: -10%; left: -10%;
  animation: floatGlow 8s ease-in-out infinite alternate;
  filter: blur(40px);
  transform: translateZ(0); 
}

.loader-glow-2 {
  position: absolute;
  width: 50vw; height: 50vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(circle, rgba(45,31,232,0.15) 0%, transparent 60%);
  border-radius: 50%;
  bottom: -10%; right: -10%;
  animation: floatGlow 10s ease-in-out infinite alternate-reverse;
  filter: blur(40px);
  transform: translateZ(0);
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(0.8); }
  100% { transform: translate(10%, 10%) scale(1.2); }
}

.loader-inner { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; align-items: center;}

/* Orbitals */
.loader-center-display {
  position: relative;
  width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.loader-orbitals {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
}
.orbit {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.orbit-1 {
  width: 100%; height: 100%;
  border: 1px dashed rgba(212,31,190,0.4);
  animation: spinOrbit 12s linear infinite;
}
.orbit-2 {
  width: 75%; height: 75%;
  border: 1px dotted rgba(45,31,232,0.6);
  animation: spinOrbit 8s linear infinite reverse;
}
.orbit-3 {
  width: 50%; height: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  border-top: 1px solid var(--magenta);
  border-bottom: 1px solid var(--blue);
  animation: spinOrbit 4s linear infinite;
}
@keyframes spinOrbit {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.loader-bar-wrap {
  width: 280px;
  padding: 0 20px;
}
.loader-bar {
  width: 100%; height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 16px;
  position: relative;
  border-radius: 2px;
}
.loader-fill {
  height: 100%; width: 0%;
  background: var(--grad);
  box-shadow: 0 0 15px var(--magenta);
  border-radius: 2px;
  transition: width 0.2s ease-out; 
  position: relative;
}
.loader-fill::after {
  content: ''; position: absolute; right: 0; top: -2px;
  width: 6px; height: 6px; background: #fff;
  border-radius: 50%; box-shadow: 0 0 12px #fff, 0 0 20px var(--blue);
}
.loader-console {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #c46fff; font-family: 'DM Mono', monospace;
  text-shadow: 0 0 5px rgba(196,111,255,0.5);
}
.blink-cursor {
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9998;
  transition: transform 0.1s linear;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 40px;
  transition: padding 0.3s;
}
.nav.scrolled .nav-container { padding: 14px 24px; }

.nav-logo { text-decoration: none; flex-shrink: 0; display: flex; align-items: center; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin-left: auto;
}
.nav-link {
  text-decoration: none;
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

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

.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--surface-hover); transform: rotate(15deg); }
.theme-icon { display: none; }
[data-theme="dark"] .dark-icon { display: block; }
[data-theme="light"] .light-icon { display: block; }

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Articulat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 24px rgba(212,31,190,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,31,190,0.5); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { background: var(--surface-hover); transform: translateY(-2px); }

.btn-nav {
  background: var(--grad);
  color: #fff;
  padding: 9px 20px;
  font-size: 13px;
  box-shadow: 0 2px 16px rgba(212,31,190,0.3);
}

.btn-full { width: 100%; justify-content: center; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(212,31,190,0.3);
  border-radius: 100px;
  background: rgba(212,31,190,0.05);
  color: var(--magenta);
}
.section-title {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(45,31,232,0.25);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(212,31,190,0.2);
  bottom: -50px; left: -80px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: rgba(139,26,212,0.15);
  top: 50%; left: 50%;
  animation: orbFloat 7s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}

.hero-content {
  position: relative; z-index: 10 !important;
  max-width: 1200px; margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 32px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 8px #22c55e; }
  50% { box-shadow: 0 0 16px #22c55e, 0 0 24px rgba(34,197,94,0.4); }
}

.title-line { display: block; overflow: visible; }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text2);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stat-numrow {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1px;
  white-space: nowrap;
}
.stat-num {
  font-size: 36px; font-weight: 800;
  color: #c46fff;
  line-height: 1;
}
.stat-plus {
  font-size: 24px; font-weight: 800;
  color: #ff6fe0;
  line-height: 1.1;
  padding-bottom: 2px;
}
.stat-lbl {
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border-strong);
}

.hero3d-container {
  position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  width: 55%; max-width: 600px; aspect-ratio: 1/1;
  pointer-events: none; z-index: 1;
}
.hero3d-container canvas { width: 100%; height: 100%; display: block; outline: none; }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text3);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--border-strong), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── GLITCH ── */
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg);
  overflow: visible;
}
.glitch::before {
  color: #ff00ea;
  animation: glitch1 3s infinite steps(1) 2s;
  clip-path: polygon(0 0, 110% 0, 110% 40%, 0 40%);
  -webkit-text-fill-color: #ff00ea;
  background: transparent;
}
.glitch::after {
  color: #00f7ff;
  animation: glitch2 3s infinite steps(1) 2.1s;
  clip-path: polygon(0 60%, 110% 60%, 110% 100%, 0 100%);
  -webkit-text-fill-color: #00f7ff;
  background: transparent;
}
@keyframes glitch1 {
  0%,90%,100% { transform: translate(0); opacity: 0; }
  91% { transform: translate(-3px, 1px); opacity: 1; }
  93% { transform: translate(3px, -1px); opacity: 1; }
  95% { transform: translate(-2px); opacity: 0; }
}
@keyframes glitch2 {
  0%,90%,100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(3px, 2px); opacity: 1; }
  94% { transform: translate(-3px, -2px); opacity: 1; }
  96% { transform: translate(2px); opacity: 0; }
}

/* ── MARQUEE ── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 18px 0;
}
.marquee-track { display: flex; }
.marquee-inner {
  display: flex; align-items: center; gap: 32px;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-inner span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.marquee-dot {
  color: var(--magenta) !important;
  font-size: 10px !important;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
  box-shadow: 0 20px 60px rgba(45,31,232,0.15);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon { margin-bottom: 20px; }
.service-icon svg { width: 48px; height: 48px; }

.service-num {
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 10px;
}
.service-name {
  font-size: 22px; font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.service-tags span {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--surface);
  color: var(--text3);
  border: 1px solid var(--border);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.service-arrow {
  font-size: 20px;
  color: var(--magenta);
  transition: transform 0.3s;
}
.service-card:hover .service-arrow { transform: translateX(8px); }

/* ── WHY SECTION ── */
.why-section { background: var(--bg2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.why-left .section-title,
.why-left .section-sub { text-align: left; margin-left: 0; }

.cost-compare { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.cost-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  background: var(--card-bg);
}
.cost-item.agency { border-color: rgba(212,31,190,0.3); background: rgba(212,31,190,0.04); }
.cost-label {
  display: block;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px; font-weight: 600;
}
.cost-breakdown { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.cost-role {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text2);
}
.cost-role span:last-child { color: var(--text); font-weight: 500; }
.cost-total {
  font-size: 20px; font-weight: 800;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.cost-total.red { color: #f87171; }
.cost-total.green {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cost-desc { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 14px; }
.savings-tag {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  letter-spacing: 0.5px;
  margin-top: 10px;
}
.vs-badge {
  text-align: center;
  font-size: 13px; font-weight: 800;
  color: var(--text3); letter-spacing: 3px;
}

.why-right {
  display: flex;
  flex-direction: column;
  height: 100%; 
}
.why-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
  transform-style: preserve-3d;
}
.why-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(45,31,232,0.15);
}
.why-card-icon { font-size: 24px; margin-bottom: 10px; }
.why-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }

.why3d-wrap {
  width: 100%;
  flex-grow: 1; 
  min-height: 180px; 
  height: auto;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: crosshair;
}
.why3d-wrap:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(212,31,190,0.15);
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(45,31,232,0.2);
}
.pricing-card.popular {
  border-color: rgba(212,31,190,0.5);
  background: rgba(212,31,190,0.04);
  transform: scale(1.02);
}
.pricing-card.popular:hover { transform: scale(1.02) translateY(-6px); }
.pricing-card.dominate { border-color: rgba(45,31,232,0.4); }

.popular-glow {
  position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,31,190,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.plan-badge {
  display: inline-block;
  font-size: 10px;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 16px;
}
.starter-badge { background: rgba(100,200,100,0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }
.popular-badge { background: rgba(212,31,190,0.15); color: var(--magenta); border: 1px solid rgba(212,31,190,0.4); }
.dominate-badge { background: rgba(45,31,232,0.15); color: #818cf8; border: 1px solid rgba(129,140,248,0.4); }

.plan-emoji { font-size: 32px; margin-bottom: 12px; }
.plan-name { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.plan-tagline { font-size: 13px; color: var(--text3); margin-bottom: 20px; line-height: 1.5; }

.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.price-from { font-size: 11px; color: var(--text3); }
.price-main {
  font-size: 32px; font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period { font-size: 13px; color: var(--text3); }
.plan-range { font-size: 12px; color: var(--text3); margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }

.plan-section-title {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; margin: 16px 0 8px;
}
.includes-title { color: var(--magenta); }
.not-title { color: var(--text3); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.plan-features li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13px; color: var(--text2); line-height: 1.5;
}
.check { color: var(--magenta); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cross { color: var(--text3); flex-shrink: 0; margin-top: 1px; }
.plan-features.not-included li { opacity: 0.6; }

.plan-ideal {
  font-size: 12px; color: var(--text3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 20px 0 20px;
  line-height: 1.6;
}
.plan-ideal strong { color: var(--text); }

.btn-plan {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
  width: 100%; justify-content: center;
  padding: 14px;
}
.btn-plan:hover { background: var(--surface-hover); transform: translateY(-2px); }
.btn-plan-popular {
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px rgba(212,31,190,0.4);
}
.btn-plan-popular:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,31,190,0.6); }

.pricing-footer {
  text-align: center; margin-top: 52px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.pricing-footer p { color: var(--text2); font-size: 16px; }

/* ── PROCESS ── */
.process-section { background: var(--bg2); }
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Articulat', sans-serif;
  font-size: 15px; font-weight: 800; color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(212,31,190,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover .step-num {
  transform: scale(1.15);
  box-shadow: 0 8px 32px rgba(212,31,190,0.5);
}
.step-content h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-content p { font-size: 12px; color: var(--text3); line-height: 1.6; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-left .section-title,
.contact-left .section-sub { text-align: left; margin-left: 0; }

.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: pointer;
}
.contact-method:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
  transform: translateX(6px);
}
.method-icon { font-size: 22px; flex-shrink: 0; }
.method-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.method-type { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }
.method-val { font-size: 15px; color: var(--text); font-weight: 500; }
.method-arrow { color: var(--magenta); font-size: 18px; transition: transform 0.2s; }
.contact-method:hover .method-arrow { transform: translateX(4px); }

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.contact-card-glow {
  position: absolute; top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(45,31,232,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-card h3 {
  font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 12px;
}
.contact-card > p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }

/* ── FOOTER ── */
.footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-tagline { font-size: 14px; color: var(--text2); margin-bottom: 8px; line-height: 1.6; }
.footer-location { font-size: 13px; color: var(--text3); }

.footer-links-group h5 {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 600; color: var(--text3);
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-size: 13px; color: var(--text2); text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
.footer-links-group a:hover { color: var(--magenta); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--text3); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { border-color: var(--magenta); color: var(--magenta); transform: translateY(-3px); }

/* ── SCROLL ANIMATIONS ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1; transform: translate(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── TILT CARDS ── */
.tilt-card { transform-style: preserve-3d; will-change: transform; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-6px); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-track::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

@media (max-width: 768px) {
  /* ── BASE ── */
  html { font-size: 15px; }
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }

  /* ── NAV ── */
  .nav.scrolled {
    background: var(--bg) !important; 
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  html[data-theme="light"] .nav.scrolled { background: #f5f3ff !important; }

  .nav-container { padding: 14px 18px; justify-content: space-between; gap: 0; }
  .nav-links {
    position: fixed; inset: 0;
    background: var(--bg);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px; list-style: none;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    font-size: 26px;
    font-family: 'Articulat', sans-serif;
    font-weight: 700;
    color: var(--text);
  }
  .nav-link::after { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .btn-nav { display: none; }

  /* ── HERO & MOBILE STATS FIX ── */
  .hero { padding: 100px 18px 72px; min-height: auto; }
  .hero-title {
    font-size: clamp(38px, 11vw, 58px);
    letter-spacing: -2px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .title-line { overflow: visible; white-space: normal; }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; font-size: 15px; padding: 14px 20px; }
  
  .hero-stats { 
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    gap: 5px !important;
  }
  .hero-stat { 
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .stat-num { font-size: 26px; }
  .stat-plus { font-size: 20px; }
  .stat-lbl { font-size: 10px; }
  .stat-divider { display: none !important; }
  .hero-scroll-hint { display: none; }

  .hero3d-container {
    width: 150% !important;
    max-width: 600px !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    top: auto !important;  
    bottom: -15% !important; 
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    opacity: 0.15 !important; 
    z-index: 0 !important;
  }
  .hero-content {
    z-index: 2 !important;
    position: relative;
  }

  /* ── SECTION HEADINGS ── */
  .section-title { font-size: clamp(28px, 8vw, 40px); letter-spacing: -1px; }
  .section-sub { font-size: 14px; }
  .section-header { margin-bottom: 40px; }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px; border-radius: 16px; }
  .service-name { font-size: 18px; }
  .service-desc { font-size: 13px; }

  /* ── WHY SECTION ── */
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-card { padding: 16px 14px; }
  .why-card h4 { font-size: 13px; }
  .why-card p { font-size: 12px; }
  .cost-item { padding: 18px; }
  .cost-role { font-size: 12px; }
  .cost-total { font-size: 18px; }
  .why-left .section-title,
  .why-left .section-sub { text-align: left; }
  
  .why3d-wrap { min-height: 250px; flex-grow: 0; }

  /* ── PRICING ── */
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; gap: 16px; }
  .pricing-card { padding: 24px; border-radius: 18px; }
  .pricing-card.popular { transform: none; border-width: 2px; }
  .plan-name { font-size: 20px; }
  .price-main { font-size: 28px; }
  .plan-features li { font-size: 12px; }

  /* ── PROCESS TIMELINE FIX ── */
  .process-track { 
    grid-template-columns: 1fr; 
    gap: 0; 
    position: relative;
    padding-left: 0 !important;
  }
  .process-track::before { display: none; }
  .process-track::after {
    content: "";
    position: absolute;
    left: 24px !important;
    transform: translateX(-50%) !important;
    top: 24px !important;
    bottom: 24px !important;
    width: 2px;
    background: var(--border);
    z-index: 0 !important;
  }
  .process-step { 
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 32px 0;
    position: relative;
  }
  .process-step:last-child { padding-bottom: 0; }
  .step-num { 
    width: 48px; height: 48px;
    font-size: 13px;
    flex-shrink: 0;
    margin: 0;
    position: relative;
    z-index: 2 !important;
  }
  .step-content { padding-top: 10px; }
  .step-content h4 { font-size: 13px; }
  .step-content p { font-size: 11px; }

  /* ── CONTACT ── */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-card { padding: 24px; }
  .contact-card h3 { font-size: 20px; }
  .contact-left .section-title,
  .contact-left .section-sub { text-align: left; }
  .method-val { font-size: 13px; word-break: break-all; }
  .contact-method { padding: 14px 16px; gap: 12px; }

  /* ── FOOTER ── */
  .footer { padding: 44px 0 24px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  .footer-tagline { font-size: 13px; }
  .footer-links-group h5 { margin-bottom: 10px; }
  .footer-links-group a { font-size: 13px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-copy { font-size: 12px; }

  /* ── MARQUEE ── */
  .marquee-inner span { font-size: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 88px 16px 60px; }
  .hero-title { font-size: clamp(34px, 10vw, 48px); letter-spacing: -1.5px; }
  .why-cards { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .footer-socials { gap: 8px; }
  .footer-socials a { width: 32px; height: 32px; }
  .footer-socials a svg { width: 14px; height: 14px; }
  .nav-link { font-size: 22px; }
  .contact-card { padding: 20px; }
}

/* ── CALENDLY WIDGET STYLING ── */
.calendly-card {
  padding: 0 !important;
  display: block !important;
  overflow: hidden;
}
.calendly-header {
  text-align: center;
  padding: 40px 24px 20px 24px;
  position: relative;
  z-index: 2;
}
.calendly-header h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.calendly-header p {
  font-size: 14px;
  color: var(--text2);
}

.calendly-wrapper-light { display: none !important; }
.calendly-wrapper-dark { display: block !important; }
html[data-theme="light"] .calendly-wrapper-dark { display: none !important; }
html[data-theme="light"] .calendly-wrapper-light { display: block !important; }

@media (max-width: 768px) {
  .calendly-header { padding: 30px 16px 10px 16px; }
  .calendly-header h3 { font-size: 22px; }
}

/* ── AI CHAT WIDGET (UPGRADED UI) ── */
.ai-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
}
.ai-chat-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grad);
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(212,31,190,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, opacity 0.3s;
  position: relative;
}
.ai-chat-toggle.hidden {
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}
.ai-chat-toggle svg { width: 28px; height: 28px; position: relative; z-index: 2;}
.ai-chat-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--magenta);
  animation: chatPulse 2s infinite;
  z-index: 1;
}
@keyframes chatPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.ai-chat-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  background: var(--bg2);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}
.ai-chat-panel.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.ai-chat-header {
  background: var(--surface);
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
}
.ai-chat-header-info { display: flex; align-items: center; gap: 12px; }
.ai-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: bold;
}
.ai-chat-header-info h4 { font-family: 'Articulat', sans-serif; font-size: 16px; margin-bottom: 2px; color: var(--text); }
.ai-chat-header-info p { font-size: 11px; color: #22c55e; margin: 0; font-weight: 600;}
.ai-chat-close { background: none; border: none; color: var(--text3); font-size: 24px; cursor: pointer; transition: color 0.2s; }
.ai-chat-close:hover { color: var(--text); }

.ai-chat-messages {
  height: 380px;
  padding: 20px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--bg);
}
.ai-msg { display: flex; max-width: 85%; }
.bot-msg { align-self: flex-start; }
.user-msg { align-self: flex-end; }

.msg-content {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px; line-height: 1.5;
}
.bot-msg .msg-content {
  background: var(--surface);
  color: var(--text);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border);
}
.user-msg .msg-content {
  background: var(--grad);
  color: white;
  border-bottom-right-radius: 4px;
}

/* ── AI Menu & Buttons ── */
.ai-action-menu {
  display: flex; flex-direction: column; gap: 8px; margin-top: -8px; width: 85%;
}
.ai-menu-btn {
  background: var(--surface); color: var(--text); border: 1px solid var(--magenta);
  padding: 10px 14px; border-radius: 12px; font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: all 0.2s; text-align: left;
}
.ai-menu-btn:hover { background: var(--grad); color: white; border-color: transparent; }

.typing-indicator .msg-content { display: flex; gap: 4px; align-items: center; padding: 16px; }
.typing-indicator span {
  width: 6px; height: 6px; background: var(--text3); border-radius: 50%;
  animation: typingBounce 1s infinite alternate;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0% { transform: translateY(0); } 100% { transform: translateY(-4px); } }

.ai-chat-actions { display: flex; flex-direction: column; gap: 8px; margin-top: -8px; align-self: flex-start;}
.btn-chat-action {
  background: var(--surface); color: var(--text); border: 1px solid var(--magenta);
  padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; text-decoration: none;
  transition: all 0.2s; text-align: center;
}
.btn-chat-action:hover { background: var(--grad); color: white; border-color: transparent; }

.ai-chat-input-area {
  padding: 16px; background: var(--surface); border-top: 1px solid var(--border);
  display: flex; gap: 10px;
}
.ai-chat-input-area input {
  flex: 1; background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; padding: 0 16px; color: var(--text); font-family: 'Montserrat', sans-serif;
  font-size: 13px; outline: none; transition: border-color 0.2s;
}
.ai-chat-input-area input:focus { border-color: var(--magenta); }
.ai-chat-input-area button {
  width: 40px; height: 40px; border-radius: 50%; background: var(--grad);
  border: none; color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.ai-chat-input-area button svg { width: 18px; height: 18px; margin-left: -2px; }

@media (max-width: 480px) {
  .ai-chat-widget { bottom: 20px; right: 20px; }
  .ai-chat-panel { 
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; 
    width: 100%; height: 100%; border-radius: 0; transform: translateY(100%);
  }
  .ai-chat-messages { height: calc(100svh - 140px); } 
}