/* Tom & Poolee – main.css */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: #0a0a0f; color: rgba(255,255,255,.92); font-family: 'Inter', system-ui, sans-serif; font-size: 1rem; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
address { font-style: normal; }

/* ── Tokens ── */
:root {
  --ink:    #0a0a0f;
  --ink-2:  #12121a;
  --ink-3:  #1a1a26;
  --border: rgba(255,255,255,.07);
  --muted:  rgba(255,255,255,.45);
  --blue:   #1a56e8;
  --blue-l: #3b82f6;
  --violet: #7c3aed;
  --green:  #10b981;
  --grad:   linear-gradient(135deg,#1a56e8,#7c3aed);
  --r-sm: 6px; --r-md: 12px; --r-lg: 18px; --r-xl: 24px; --r-full: 9999px;
  --ease: cubic-bezier(.4,0,.2,1);
  --font-disp: 'Plus Jakarta Sans','Inter',system-ui,sans-serif;
}

/* ── Utils ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--ink-2); }
.gradient-text { background: linear-gradient(135deg,var(--blue-l),var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-l); display: block; margin-bottom: .75rem; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header h2 { font-family: var(--font-disp); font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 1rem; }
.section-header p { color: var(--muted); font-size: 1.0625rem; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.5rem; border-radius: var(--r-full); font-weight: 600; font-size: .9375rem; transition: all .2s var(--ease); white-space: nowrap; cursor: pointer; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-l); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,86,232,.4); }
.btn-ghost { border: 1px solid var(--border); color: rgba(255,255,255,.92); }
.btn-ghost:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.05); }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ── Preloader ── */
#preloader { position: fixed; inset: 0; z-index: 9999; background: var(--ink); display: flex; align-items: center; justify-content: center; transition: opacity .5s, visibility .5s; }
#preloader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; align-items: center; justify-content: center; }
.preloader-inner > svg { width: 280px; height: 280px; }

/* ── Progress bar ── */
#progress-bar { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: var(--grad); z-index: 9998; }

/* ── Logo mark ── */
.logo-mark { display: block; flex-shrink: 0; }
.logo-mark .lm-dark  { fill: #010101; }
.logo-mark .lm-blue  { fill: #184989; }
.logo-on-dark .lm-dark { fill: #ffffff; }
.logo-on-dark .lm-blue { fill: #1a56e8; }

/* ── NAV ── */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 1rem 0; transition: background .3s, border-color .3s; border-bottom: 1px solid transparent; }
#nav.scrolled { background: rgba(10,10,15,.9); backdrop-filter: blur(16px); border-color: var(--border); }
.nav-inner { display: flex; align-items: center; gap: 1.5rem; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: .625rem; font-family: var(--font-disp); font-weight: 800; font-size: 1rem; white-space: nowrap; flex-shrink: 0; }
.nav-menu { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav-link { padding: .5rem .875rem; border-radius: var(--r-md); font-size: .9375rem; font-weight: 500; transition: background .15s; }
.nav-link:hover { background: rgba(255,255,255,.07); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn { display: flex; align-items: center; gap: .35rem; padding: .5rem .875rem; border-radius: var(--r-md); font-size: .9375rem; font-weight: 500; transition: background .15s; }
.nav-dropdown-btn:hover { background: rgba(255,255,255,.07); }
.nav-mega {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  width: 660px;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
  z-index: 600;
  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .15s var(--ease), visibility .15s;
}
.nav-dropdown:hover .nav-mega,
.nav-dropdown:focus-within .nav-mega { opacity: 1; pointer-events: auto; visibility: visible; }
.nav-mega-col { flex: 1; min-width: 0; }
.nav-mega-heading { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-l); margin: .75rem 0 .375rem; }
.nav-mega-heading:first-child { margin-top: 0; }
.nav-mega-link { display: flex; align-items: center; gap: .5rem; padding: .375rem .5rem; border-radius: 6px; font-size: .875rem; color: var(--muted); transition: color .1s, background .1s; }
.nav-mega-link:hover { color: rgba(255,255,255,.92); background: rgba(255,255,255,.05); }

/* Lang switcher */
.nav-actions { display: flex; align-items: center; gap: .625rem; }
.lang-switcher { position: relative; }
.lang-btn { display: flex; align-items: center; gap: .3rem; padding: .375rem .75rem; border-radius: var(--r-full); border: 1px solid var(--border); font-size: .8125rem; font-weight: 700; transition: border-color .15s; }
.lang-btn:hover { border-color: rgba(255,255,255,.2); }
.lang-menu { display: none; position: absolute; top: calc(100% + .5rem); right: 0; background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-md); min-width: 130px; box-shadow: 0 8px 24px rgba(0,0,0,.5); z-index: 600; overflow: hidden; }
.lang-switcher.open .lang-menu { display: block; }
.lang-menu a { display: block; padding: .6rem 1rem; font-size: .875rem; color: var(--muted); transition: background .1s, color .1s; }
.lang-menu a:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.92); }

/* Mobile toggle */
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; border-radius: var(--r-md); transition: background .15s; margin-left: auto; }
.nav-mobile-toggle:hover { background: rgba(255,255,255,.07); }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.92); border-radius: 2px; transition: all .25s var(--ease); }
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1rem 1.5rem 2rem;
  z-index: 499;
}
.nav-mobile.open { display: block; }
.nav-mobile-link { padding: .7rem .75rem; border-radius: var(--r-md); font-weight: 600; display: block; }
.nav-mobile-sub  { padding: .5rem .75rem .5rem 1.5rem; border-radius: var(--r-md); font-size: .875rem; color: var(--muted); display: block; }
.nav-mobile-link:hover, .nav-mobile-sub:hover { background: rgba(255,255,255,.05); color: rgba(255,255,255,.92); }
.nav-mobile-divider { height: 1px; background: var(--border); margin: .625rem 0; }
.lang-row { display: flex; gap: .5rem; padding: .5rem .75rem; }
.lang-row a { padding: .375rem .875rem; border-radius: var(--r-full); font-size: .8125rem; font-weight: 700; border: 1px solid var(--border); color: var(--muted); transition: all .15s; }
.lang-row a:hover, .lang-row a.active { border-color: var(--blue); color: var(--blue-l); background: rgba(26,86,232,.12); }

/* Mobile expandable services */
.nav-mobile-expand { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; }
.nav-mobile-chevron { flex-shrink: 0; transition: transform .25s var(--ease); }
.nav-mobile-expand[aria-expanded="true"] .nav-mobile-chevron { transform: rotate(180deg); }
.nav-mobile-submenu { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.nav-mobile-group { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-l); padding: .75rem .75rem .25rem; }

/* ── HERO ── */
.hero { position: relative; padding: 9rem 0 5rem; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-bg-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-bg-blob--blue   { width: 500px; height: 500px; background: radial-gradient(circle,rgba(26,86,232,.22),transparent 70%); top: -10%; right: -5%; }
.hero-bg-blob--violet { width: 400px; height: 400px; background: radial-gradient(circle,rgba(124,58,237,.18),transparent 70%); bottom: -10%; left: -5%; }
.hero-content { position: relative; z-index: 1; max-width: 800px; }

/* Two-column hero layout: SVG visual on left, text on right */
.hero-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}
.hero-columns .hero-content {
  max-width: none;
}
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  will-change: transform;
}
.hero-visual svg {
  width: 100%;
  height: auto;
  max-width: 480px;
  display: block;
}
@media (max-width: 900px) {
  .hero-columns {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
}
.hero-badge { display: inline-flex; align-items: center; border: 1px solid rgba(26,86,232,.4); background: rgba(26,86,232,.1); color: var(--blue-l); border-radius: var(--r-full); padding: .375rem 1rem; font-size: .8125rem; font-weight: 600; margin-bottom: 1.75rem; }
.hero h1 { font-family: var(--font-disp); font-size: clamp(2.25rem,6vw,4.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -.04em; margin-bottom: 1.25rem; }
.hero-sub { font-size: clamp(.9375rem,2vw,1.125rem); color: var(--muted); max-width: 560px; margin-bottom: 2rem; line-height: 1.7; }
.hero-ctas { display: flex; gap: .875rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-disp); font-size: 1.875rem; font-weight: 800; color: var(--blue-l); display: block; }
.hero-stat-lbl { font-size: .8125rem; color: var(--muted); }

/* ── Cards / Services ── */
.card { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.75rem; transition: border-color .2s, transform .2s; display: block; }
.card:hover { border-color: rgba(26,86,232,.35); transform: translateY(-3px); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.card h3 { font-family: var(--font-disp); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; color: var(--blue-l); margin-top: .875rem; font-weight: 600; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* ── Why ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-points { display: flex; flex-direction: column; gap: 1.75rem; }
.why-point { display: flex; gap: 1rem; }
.why-num { font-family: var(--font-disp); font-size: .8rem; font-weight: 800; color: var(--blue); opacity: .5; min-width: 2rem; padding-top: .15rem; }
.why-point h3 { font-weight: 700; margin-bottom: .25rem; font-size: .9375rem; }
.why-point p { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.why-visual { background: var(--ink-3); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2rem; }
.why-badges { display: flex; flex-direction: column; gap: .625rem; }
.why-badge { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: .625rem 1rem; font-size: .875rem; font-weight: 500; }

/* ── Tech ── */
.tech-pills { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.tech-pill { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-full); padding: .375rem .875rem; font-size: .8125rem; font-weight: 500; color: var(--muted); }
.tech-pill:hover { border-color: rgba(26,86,232,.4); color: rgba(255,255,255,.92); }

/* ── Process ── */
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.process-step { text-align: center; }
.process-num { font-family: var(--font-disp); font-size: 2.25rem; font-weight: 800; color: var(--blue); opacity: .18; margin-bottom: .375rem; }
.process-step h3 { font-size: .9375rem; font-weight: 700; margin-bottom: .25rem; }
.process-step p { font-size: .8125rem; color: var(--muted); line-height: 1.55; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testimonial { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.5rem; }
.testimonial-stars { color: #f59e0b; margin-bottom: .75rem; }
.testimonial blockquote { font-size: .875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.125rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8125rem; color: #fff; flex-shrink: 0; }
.testimonial-name { font-size: .875rem; font-weight: 600; }
.testimonial-role { font-size: .8rem; color: var(--muted); }

/* ── CTA ── */
.cta-banner { background: linear-gradient(135deg,rgba(26,86,232,.1),rgba(124,58,237,.1)); border-top: 1px solid rgba(26,86,232,.15); border-bottom: 1px solid rgba(26,86,232,.15); padding: 5rem 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-disp); font-size: clamp(1.5rem,3vw,2.5rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 1rem; }
.cta-banner p { color: var(--muted); font-size: 1.0625rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; padding: 1.125rem 0; font-size: .9375rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color .15s; }
.faq-question:hover { color: var(--blue-l); }
.faq-icon { font-size: 1.125rem; flex-shrink: 0; transition: transform .25s var(--ease); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .3s var(--ease); }
.faq-answer p { padding-bottom: 1.125rem; color: var(--muted); font-size: .9375rem; line-height: 1.7; }

/* ── Page hero ── */
.page-hero { padding: 8rem 0 4rem; position: relative; overflow: hidden; background: var(--ink); }
.page-hero .hero-bg-grid { position: absolute; inset: 0; }
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { font-family: var(--font-disp); font-size: clamp(1.875rem,4vw,3rem); font-weight: 800; letter-spacing: -.04em; margin-bottom: 1rem; }
.page-hero p { font-size: 1.0625rem; color: var(--muted); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; margin-bottom: 1.25rem; flex-wrap: wrap; }
.breadcrumb a { font-size: .8125rem; color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: rgba(255,255,255,.92); }
.breadcrumb span { color: rgba(255,255,255,.2); font-size: .75rem; }

/* ── Features grid ── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3.5rem; align-items: start; }
.contact-card { display: flex; align-items: flex-start; gap: .875rem; padding: 1.125rem; background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-lg); margin-bottom: .75rem; }
.contact-icon { font-size: 1.125rem; flex-shrink: 0; }
.contact-lbl { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: .15rem; }
.contact-val { font-weight: 500; }
.contact-val a:hover { color: var(--blue-l); }

/* ── Forms ── */
.form-group { margin-bottom: 1.125rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .4rem; }
.form-label .req { color: #ef4444; margin-left: .15rem; }
.form-control { width: 100%; background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: .7rem .9375rem; color: rgba(255,255,255,.92); font-size: .9375rem; font-family: inherit; transition: border-color .15s; resize: vertical; }
.form-control:focus { outline: none; border-color: var(--blue); }
.form-control::placeholder { color: rgba(255,255,255,.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-err { font-size: .8125rem; color: #ef4444; margin-top: .3rem; display: none; }
.has-error .form-err     { display: block; }
.has-error .form-control { border-color: #ef4444; }
.privacy-row { display: flex; align-items: flex-start; gap: .625rem; }
.privacy-row input { margin-top: .25rem; accent-color: var(--blue); flex-shrink: 0; }
.privacy-row label { font-size: .875rem; color: var(--muted); }
.privacy-row a { color: var(--blue-l); }
.char-count { font-size: .75rem; color: var(--muted); text-align: right; margin-top: .2rem; }
.form-success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); border-radius: var(--r-lg); padding: 1.5rem; text-align: center; display: none; }
.form-success.show { display: block; }
.service-checks { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.service-check input { display: none; }
.service-check span { display: inline-block; padding: .35rem .8rem; border: 1px solid var(--border); border-radius: var(--r-full); font-size: .8125rem; font-weight: 500; color: var(--muted); transition: all .15s; cursor: pointer; }
.service-check input:checked + span { border-color: var(--blue); color: var(--blue-l); background: rgba(26,86,232,.12); }

/* ── Stats ── */
.stats-row { display: flex; justify-content: center; align-items: center; gap: 2.5rem; flex-wrap: wrap; padding: 2.5rem; background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-xl); }
.stat-num { font-family: var(--font-disp); font-size: 2.5rem; font-weight: 800; color: var(--blue-l); display: block; }
.stat-label { font-size: .875rem; color: var(--muted); margin-top: .125rem; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ── Values ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.value-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.5rem; }
.value-icon { font-size: 1.5rem; margin-bottom: .75rem; display: block; }
.value-card h3 { font-size: .9375rem; font-weight: 700; margin-bottom: .375rem; }
.value-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── Legal ── */
.legal-content { max-width: 800px; }
.legal-content h2 { font-family: var(--font-disp); font-size: 1.25rem; font-weight: 700; margin: 2rem 0 .75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1rem; font-weight: 600; margin: 1.25rem 0 .375rem; }
.legal-content p { color: var(--muted); line-height: 1.75; margin-bottom: .875rem; }
.legal-content ul { color: var(--muted); padding-left: 1.5rem; margin-bottom: .875rem; list-style: disc; line-height: 1.75; }
.legal-content a { color: var(--blue-l); }

/* ── WhatsApp FAB ── */
.whatsapp-fab { position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 400; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; }
.whatsapp-fab:hover { transform: scale(1.08); }

/* ── Chatbot ── */
.chatbot { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 400; }
.chatbot-toggle { width: 52px; height: 52px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(26,86,232,.45); transition: transform .2s; margin-left: auto; }
.chatbot-toggle:hover { transform: scale(1.08); }
.chatbot-window { width: 320px; max-height: 460px; background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-xl); flex-direction: column; box-shadow: 0 8px 48px rgba(0,0,0,.5); margin-bottom: .75rem; display: none; }
.chatbot-window.open { display: flex; }
.chatbot-header { display: flex; align-items: center; gap: .625rem; padding: .875rem 1.125rem; border-bottom: 1px solid var(--border); }
.chatbot-avatar { font-size: 1.375rem; }
.chatbot-name { font-weight: 700; font-size: .9rem; }
.chatbot-status { font-size: .75rem; color: var(--green); }
.chatbot-close { margin-left: auto; color: var(--muted); padding: .25rem; transition: color .15s; }
.chatbot-close:hover { color: rgba(255,255,255,.92); }
.chatbot-messages { flex: 1; overflow-y: auto; padding: .875rem 1.125rem; display: flex; flex-direction: column; gap: .5rem; }
.msg { max-width: 82%; padding: .5rem .75rem; border-radius: var(--r-md); font-size: .875rem; line-height: 1.5; }
.msg-bot { background: var(--ink-3); align-self: flex-start; }
.msg-user { background: var(--blue); align-self: flex-end; }
.msg-typing { display: flex; gap: 4px; align-items: center; padding: .75rem; }
.msg-typing span { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; animation: cblink 1.2s ease infinite; }
.msg-typing span:nth-child(2) { animation-delay: .2s; }
.msg-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes cblink { 0%,80%,100%{opacity:.2} 40%{opacity:1} }
.chatbot-input-row { display: flex; gap: .5rem; padding: .75rem 1.125rem; border-top: 1px solid var(--border); }
.chatbot-input-row input { flex: 1; background: var(--ink-3); border: 1px solid var(--border); border-radius: var(--r-full); padding: .4375rem .875rem; color: rgba(255,255,255,.92); font-size: .875rem; }
.chatbot-input-row input:focus { outline: none; border-color: var(--blue); }
.chatbot-input-row button { width: 34px; height: 34px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s; }
.chatbot-input-row button:hover { background: var(--blue-l); }

/* ── Footer ── */
.footer { background: var(--ink-2); border-top: 1px solid var(--border); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-logo { display: flex; align-items: center; gap: .5rem; font-family: var(--font-disp); font-weight: 800; font-size: .9375rem; margin-bottom: .875rem; }
.footer-brand p { font-size: .875rem; color: var(--muted); line-height: 1.65; margin-bottom: .875rem; max-width: 240px; }
.footer-brand address a { font-size: .8125rem; color: var(--muted); display: block; transition: color .15s; }
.footer-brand address a:hover { color: rgba(255,255,255,.92); }
.footer nav h3 { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .75rem; }
.footer nav a { display: block; font-size: .875rem; color: var(--muted); padding: .2rem 0; transition: color .15s; }
.footer nav a:hover { color: rgba(255,255,255,.92); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .875rem; padding: 1.25rem 0; border-top: 1px solid var(--border); font-size: .8125rem; color: var(--muted); }

/* ── Cookie ── */
.cookie-banner { position: fixed; bottom: 1.5rem; left: 1.5rem; max-width: 360px; background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.25rem 1.375rem; box-shadow: 0 8px 32px rgba(0,0,0,.5); z-index: 300; display: none; }
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: .875rem; color: var(--muted); margin-bottom: .875rem; line-height: 1.6; }
.cookie-banner a { color: var(--blue-l); }
.cookie-actions { display: flex; gap: .5rem; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(3,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid, .features-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* hide desktop nav, show mobile toggle */
  .nav-menu { display: none; }
  .nav-actions .btn-primary { display: none; }
  .nav-actions .lang-switcher { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-inner { gap: .5rem; }
  .nav-actions { margin-left: auto; }

  .services-grid  { grid-template-columns: 1fr 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .hero-stats     { gap: 1.25rem; }
  .stats-row      { gap: 1.5rem; }
  .stat-divider   { display: none; }
  .chatbot-window { width: 290px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero { padding: 6.5rem 0 4rem; min-height: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .section { padding: 3.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 9rem 0 8rem;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide backgrounds — distinct atmospheric gradients */
.hero-slide--1 {
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(26,86,232,.35), transparent),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(124,58,237,.25), transparent),
    linear-gradient(160deg, #0a0a0f 0%, #0f1628 50%, #0a0a0f 100%);
}
.hero-slide--2 {
  background:
    radial-gradient(ellipse 70% 70% at 80% 20%, rgba(6,182,212,.3), transparent),
    radial-gradient(ellipse 50% 60% at 10% 70%, rgba(26,86,232,.2), transparent),
    linear-gradient(160deg, #050d1a 0%, #071520 50%, #0a0a0f 100%);
}
.hero-slide--3 {
  background:
    radial-gradient(ellipse 80% 50% at 60% 40%, rgba(16,185,129,.25), transparent),
    radial-gradient(ellipse 60% 70% at 30% 80%, rgba(26,86,232,.2), transparent),
    linear-gradient(160deg, #050f0a 0%, #071a10 50%, #0a0a0f 100%);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Slider dots */
.hero-slider-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .625rem;
  z-index: 11;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Stats ticker — infinite-scroll bottom band of the hero */
.hero-ticker-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background: rgba(10,10,15,.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
  z-index: 10;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.hero-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: .9375rem 0;
  animation: hero-ticker-scroll 48s linear infinite;
  will-change: transform;
}
.hero-ticker-bar:hover .hero-ticker-track {
  animation-play-state: paused;
}
@keyframes hero-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-ticker-item {
  display: flex;
  align-items: baseline;
  gap: .375rem;
  padding: 0 1.875rem;
  white-space: nowrap;
}
.ticker-num {
  font-family: var(--font-disp);
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-l);
  line-height: 1;
}
.ticker-lbl {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}
.ticker-sep {
  color: rgba(26,86,232,.4);
  font-size: .5rem;
  flex-shrink: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero-slide { padding: 7rem 0 7rem; }
  .hero-slider-dots { bottom: 4rem; }
  .hero-ticker-item { padding: 0 1.125rem; }
  .ticker-num { font-size: .9375rem; }
  .ticker-lbl { font-size: .8125rem; }
}
@media (max-width: 480px) {
  .hero-slide { padding: 6rem 0 7rem; }
  .hero-ticker-item { padding: 0 .875rem; }
}

/* ════════════════════════════════════════════════════════════════════
   HERO FLOATING OBJECTS
   All animations use transform/opacity only for GPU acceleration.
   Respects prefers-reduced-motion.
   ════════════════════════════════════════════════════════════════════ */

/* Container sits behind text, pointer-events off */
.fo-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}

/* Base floating object */
.fo {
  position: absolute;
  will-change: transform, opacity;
  opacity: 0;
  transition: opacity .4s ease;
}

/* Only show when slide is active */
.hero-slide.active .fo {
  opacity: 1;
}

/* ── Keyframe library ──────────────────────────────────────────────── */

@keyframes fo-float-a {
  0%   { transform: translate3d(0, 0px, 0) rotate(0deg); }
  33%  { transform: translate3d(6px, -14px, 0) rotate(1.5deg); }
  66%  { transform: translate3d(-4px, -8px, 0) rotate(-1deg); }
  100% { transform: translate3d(0, 0px, 0) rotate(0deg); }
}
@keyframes fo-float-b {
  0%   { transform: translate3d(0, 0px, 0) rotate(0deg) scale(1); }
  50%  { transform: translate3d(-8px, -18px, 0) rotate(-2deg) scale(1.02); }
  100% { transform: translate3d(0, 0px, 0) rotate(0deg) scale(1); }
}
@keyframes fo-float-c {
  0%   { transform: translate3d(0, 0px, 0) rotate(0deg); }
  40%  { transform: translate3d(10px, -10px, 0) rotate(3deg); }
  80%  { transform: translate3d(-6px, -20px, 0) rotate(-1.5deg); }
  100% { transform: translate3d(0, 0px, 0) rotate(0deg); }
}
@keyframes fo-float-d {
  0%   { transform: translate3d(0, 0px, 0) scale(1); }
  50%  { transform: translate3d(4px, -12px, 0) scale(1.03); }
  100% { transform: translate3d(0, 0px, 0) scale(1); }
}
@keyframes fo-pulse-glow {
  0%,100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .85; transform: scale(1.08); }
}
@keyframes fo-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes fo-orbit {
  0%   { transform: translate3d(0,0,0) rotate(0deg) translate3d(12px,0,0) rotate(0deg); }
  100% { transform: translate3d(0,0,0) rotate(360deg) translate3d(12px,0,0) rotate(-360deg); }
}

/* ── Slide 1: Full-Service Digital Agency ──────────────────────────── */

.fo-s1-1 {  /* browser window — top right */
  top: 10%; right: 5%;
  animation: fo-float-b 11s ease-in-out infinite;
  animation-delay: 0s;
}
.fo-s1-2 {  /* code snippet — right mid-upper */
  top: 28%; right: 4%;
  animation: fo-float-a 13s ease-in-out infinite;
  animation-delay: 1.4s;
}
.fo-s1-3 {  /* database — bottom right */
  bottom: 20%; right: 5%;
  animation: fo-float-c 14s ease-in-out infinite;
  animation-delay: 0.7s;
}
.fo-s1-4 {  /* API graph — center right */
  top: 46%; right: 22%;
  animation: fo-float-d 10s ease-in-out infinite;
  animation-delay: 2.2s;
}
.fo-s1-5 {  /* code brackets — far top right */
  top: 6%; right: 26%;
  animation: fo-float-b 16s ease-in-out infinite;
  animation-delay: 3s;
}
.fo-s1-6 {  /* server rack — bottom center-right */
  bottom: 22%; right: 22%;
  animation: fo-float-a 12s ease-in-out infinite;
  animation-delay: 1s;
}
.fo-s1-7 {  /* hex cluster — upper far right */
  top: 8%; right: 38%;
  animation: fo-float-c 15s ease-in-out infinite;
  animation-delay: 0.3s;
}
.fo-s1-8 {  /* 250+ stat pill — mid right */
  top: 60%; right: 6%;
  animation: fo-float-d 9s ease-in-out infinite;
  animation-delay: 1.8s;
}

/* ── Slide 2: AI / Automation ───────────────────────────────────────── */

.fo-s2-1 {  /* neural network — right side */
  top: 18%; right: 8%;
  animation: fo-float-b 14s ease-in-out infinite;
  animation-delay: 0s;
}
.fo-s2-2 {  /* chat bubble — top right */
  top: 10%; right: 22%;
  animation: fo-float-a 10s ease-in-out infinite;
  animation-delay: 1.5s;
}
.fo-s2-3 {  /* workflow — bottom right */
  bottom: 24%; right: 6%;
  animation: fo-float-c 12s ease-in-out infinite;
  animation-delay: 0.8s;
}
.fo-s2-4 {  /* stat card — top center */
  top: 14%; right: 38%;
  animation: fo-float-d 9s ease-in-out infinite;
  animation-delay: 2.2s;
}
.fo-s2-5 {  /* pulsing orb — far right middle */
  top: 44%; right: 4%;
  animation: fo-pulse-glow 4s ease-in-out infinite;
  animation-delay: 0s;
}
.fo-s2-6 {  /* shield — bottom center-right */
  bottom: 28%; right: 28%;
  animation: fo-float-a 11s ease-in-out infinite;
  animation-delay: 3.5s;
}

/* ── Slide 3: Gastronomy ────────────────────────────────────────────── */

.fo-s3-1 {  /* order receipt — right */
  top: 16%; right: 8%;
  animation: fo-float-b 11s ease-in-out infinite;
  animation-delay: 0s;
}
.fo-s3-2 {  /* phone — bottom right */
  bottom: 18%; right: 14%;
  animation: fo-float-a 13s ease-in-out infinite;
  animation-delay: 0.7s;
}
.fo-s3-3 {  /* 0% tag — top right */
  top: 12%; right: 24%;
  animation: fo-float-c 9s ease-in-out infinite;
  animation-delay: 1.4s;
}
.fo-s3-4 {  /* delivery timer — center right */
  top: 40%; right: 6%;
  animation: fo-float-d 12s ease-in-out infinite;
  animation-delay: 2s;
}
.fo-s3-5 {  /* chart — upper area */
  top: 20%; right: 38%;
  animation: fo-float-b 14s ease-in-out infinite;
  animation-delay: 0.3s;
}
.fo-s3-6 {  /* star rating — lower */
  bottom: 32%; right: 22%;
  animation: fo-float-a 10s ease-in-out infinite;
  animation-delay: 2.8s;
}

/* ── Mobile: reduce objects, simpler animations ─────────────────────── */
@media (max-width: 768px) {
  /* Show only 2-3 objects per slide on mobile */
  .fo-s1-3, .fo-s1-4, .fo-s1-5, .fo-s1-6, .fo-s1-7, .fo-s1-8 { display: none; }
  .fo-s2-3, .fo-s2-4, .fo-s2-6            { display: none; }
  .fo-s3-3, .fo-s3-4, .fo-s3-5            { display: none; }

  /* Push visible objects to right edge so they don't cover text */
  .fo-s1-1 { right: 2%; top: 10%; transform: scale(.72); }
  .fo-s1-2 { right: 2%; top: 38%; transform: scale(.68); }

  .fo-s2-1 { right: 2%; top: 15%; transform: scale(.7); }
  .fo-s2-2 { right: 2%; top: 40%; transform: scale(.7); }
  .fo-s2-5 { right: 4%; top: 60%; }

  .fo-s3-1 { right: 2%; top: 12%; transform: scale(.75); }
  .fo-s3-2 { right: 2%; bottom: 22%; transform: scale(.7); }
  .fo-s3-6 { right: 2%; bottom: 40%; transform: scale(.8); }
}

/* ── Respect prefers-reduced-motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fo { animation: none !important; }
}
