@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@700;800;900&family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f8fafc;
  --bg-soft: #eef4ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-dark: rgba(15, 23, 42, 0.84);
  --ink: #0f172a;
  --ink-soft: #475569;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.09);
  --line-strong: rgba(37, 99, 235, 0.22);
  --brand: #0f172a;
  --brand-deep: #020617;
  --brand-soft: #e0edff;
  --accent: #2563eb;
  --accent-2: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.13);
  --whatsapp: #25d366;
  --success: #16a34a;
  --danger: #dc2626;
  --gold: #fbbf24;
  --shadow-xs: 0 8px 20px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 14px 34px rgba(15, 23, 42, 0.1);
  --shadow-md: 0 22px 54px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 34px 90px rgba(15, 23, 42, 0.18);
  --glow-blue: 0 0 0 1px rgba(59, 130, 246, 0.22), 0 18px 54px rgba(37, 99, 235, 0.28);
  --glow-whatsapp: 0 0 0 1px rgba(37, 211, 102, 0.25), 0 18px 48px rgba(37, 211, 102, 0.28);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 42px;
  --container: 1160px;
  --edge: clamp(16px, 5vw, 40px);
  --section-y: clamp(56px, 13vw, 112px);
  --ease: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-long: 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% -10%, rgba(59, 130, 246, 0.18), transparent 30%),
    radial-gradient(circle at 98% 12%, rgba(37, 211, 102, 0.11), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #eef4ff 100%);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.modal-open,
body.chat-open,
body.form-feedback-open {
  overflow: hidden;
}

body.has-mobile-sticky-actions {
  padding-bottom: calc(86px + env(safe-area-inset-bottom));
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

::selection {
  background: rgba(37, 99, 235, 0.18);
  color: var(--ink);
}

.site-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  max-width: 100%;
  overflow-x: hidden;
}

.page-main {
  flex: 1 1 auto;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(var(--container), calc(100% - var(--edge) - var(--edge)));
  margin-inline: auto;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px) saturate(1.2);
}

.section {
  position: relative;
  padding: var(--section-y) 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto clamp(26px, 8vw, 52px);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(0.68rem, 2.8vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-copy h1,
.page-hero-copy h1,
.section-header h2,
.split-copy h2,
.feature-pane h2,
.contact-panel h2,
.cta-copy h2,
.footer-top h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(2rem, 10vw, 2.75rem);
}

.page-hero-copy h1,
.section-header h2,
.split-copy h2,
.feature-pane h2,
.contact-panel h2,
.cta-copy h2,
.footer-top h2 {
  font-size: clamp(1.9rem, 8vw, 3rem);
}

.hero-copy p,
.page-hero-copy p,
.section-header p,
.split-copy p,
.card-copy p,
.service-card p,
.feature-card p,
.step-card p,
.testimonial-copy p,
.faq-answer p,
.contact-card p,
.footer-top p,
.footer-col p,
.chatbot-subtitle {
  color: var(--ink-soft);
  line-height: 1.76;
}

.section-header p {
  margin: 14px auto 0;
  max-width: 58ch;
  font-size: clamp(0.95rem, 3.5vw, 1.06rem);
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: center;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    background var(--ease),
    color var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 42%);
  transition: opacity var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 55%, #60a5fa 100%);
  color: #fff;
  box-shadow: var(--glow-blue);
}

.btn-secondary {
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(12px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.btn-whatsapp,
.hero-actions a[href*="wa.me"] {
  border-color: rgba(37, 211, 102, 0.35);
  background: linear-gradient(135deg, var(--whatsapp), #128c7e);
  color: #fff;
  box-shadow: var(--glow-whatsapp);
}

.btn-ai-consult {
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.32),
    0 0 34px rgba(37, 99, 235, 0.32),
    0 18px 54px rgba(37, 99, 235, 0.3);
}

.site-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 95;
  width: 100%;
  padding-top: max(10px, env(safe-area-inset-top));
  pointer-events: none;
}

.desktop-topbar {
  display: none;
  pointer-events: auto;
}

.header-shell {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 70px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px) saturate(1.45);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    border-color var(--ease);
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.16);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand {
  flex: 1 1 auto;
  max-width: calc(100% - 54px);
}

.brand-mark {
  display: flex;
  flex: 0 0 auto;
  width: clamp(62px, 16vw, 74px);
  height: clamp(62px, 16vw, 74px);
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark-logo {
  overflow: hidden;
  padding: 0;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.brand-mark-logo picture {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.main-logo,
.brand-mark-logo img {
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  transform: translateZ(0);
}

.brand-copy {
  min-width: 0;
  max-width: min(48vw, 190px);
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-family: "Cinzel", "Poppins", "Inter", sans-serif;
  font-size: clamp(0.92rem, 3.9vw, 1.1rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
}

.brand-copy strong {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.brand-title-line,
.brand-title-sub {
  display: inline;
}

.brand-title-sub {
  color: #111827;
}

.brand-word-dark {
  color: #111827;
}

.brand-word-red {
  color: #e30613;
}

.brand-copy small,
.footer-brand small {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-family: "Inter", "Space Grotesk", sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav,
.header-actions {
  display: none;
}

.mobile-header-contact {
  display: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.voice-toggle,
.mobile-toggle,
.mobile-close,
.slider-btn,
.chatbot-close,
.lightbox-close,
.form-feedback-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(12px);
}

.voice-toggle {
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 15px;
}

.voice-toggle.is-muted {
  color: var(--muted);
  background: rgba(226, 232, 240, 0.9);
}

.voice-toggle-symbol {
  line-height: 1;
}

.voice-toggle-text {
  display: none;
}

.mobile-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 15px;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform var(--ease), opacity var(--ease), width var(--ease);
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.is-active span:nth-child(2) {
  width: 8px;
  opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mega-menu {
  display: none;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(2, 6, 23, 0.56);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(10px);
  transition: opacity var(--ease), visibility var(--ease);
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 111;
  width: min(430px, 100vw);
  padding: 10px;
  transform: translateX(104%);
  transition: transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-sidebar.is-open {
  transform: translateX(0);
}

.mobile-sidebar-shell {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 30px 0 0 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.86)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.22), transparent 36%);
  box-shadow: -24px 0 70px rgba(2, 6, 23, 0.2);
  backdrop-filter: blur(22px) saturate(1.35);
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  font-size: 1.45rem;
  line-height: 1;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
}

.mobile-link,
.mobile-services-toggle,
.mobile-services-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.mobile-services-list {
  display: grid;
  gap: 8px;
  max-height: 38vh;
  overflow-y: auto;
  padding: 8px 0 2px 8px;
}

.mobile-services-list a {
  min-height: 46px;
  border-radius: 16px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-contact {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.mobile-contact .btn {
  width: 100%;
  min-height: 50px;
}

.mobile-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mobile-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero {
  margin-top: -76px;
  padding: 0 0 clamp(38px, 10vw, 70px);
}

.hero-shell {
  position: relative;
  display: grid;
  min-height: calc(100svh - 14px);
  align-items: end;
  overflow: hidden;
  padding: calc(86px + env(safe-area-inset-top)) 18px 70px;
  border-radius: 0 0 34px 34px;
  background: var(--brand-deep);
  box-shadow: var(--shadow-lg);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-shell::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.03), rgba(2, 6, 23, 0.18)),
    radial-gradient(circle at 50% 24%, rgba(37, 99, 235, 0.03), transparent 34%);
}

.hero-shell::after {
  inset: auto 18% 22px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: min(100%, 360px);
  margin-inline: auto;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.36), rgba(15, 23, 42, 0.2)),
    radial-gradient(circle at top, rgba(59, 130, 246, 0.14), transparent 58%);
  box-shadow:
    0 24px 70px rgba(2, 6, 23, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px) saturate(1.1);
  text-align: center;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 38%, rgba(37, 211, 102, 0.18));
  opacity: 0.72;
  pointer-events: none;
}

.hero-mini-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #bfdbfe;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #dbeafe;
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  max-width: 9.5ch;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(2.2rem, 10vw, 3rem);
  overflow-wrap: break-word;
  text-shadow: 0 8px 28px rgba(2, 6, 23, 0.62);
  text-wrap: balance;
}

.hero-copy p {
  width: 100%;
  max-width: 28ch;
  margin: 12px auto 0;
  color: rgba(241, 245, 249, 0.92);
  font-size: clamp(0.95rem, 4vw, 1.08rem);
  font-weight: 600;
  overflow-wrap: break-word;
  text-shadow: 0 2px 16px rgba(2, 6, 23, 0.58);
}

.hero-trustbar,
.quick-pills {
  display: flex;
  width: 100%;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hero-trustbar::-webkit-scrollbar,
.quick-pills::-webkit-scrollbar,
.home-services-grid::-webkit-scrollbar {
  display: none;
}

.hero-trustbar {
  margin-top: 18px;
}

.hero-trustitem,
.quick-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  backdrop-filter: blur(12px);
}

.counter-row {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.counter-card {
  min-width: 0;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.counter-card strong {
  display: block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.15rem, 6vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.counter-card span {
  display: block;
  margin-top: 5px;
  color: rgba(226, 232, 240, 0.82);
  font-size: clamp(0.62rem, 2.8vw, 0.74rem);
  line-height: 1.35;
}

.hero-actions {
  width: 100%;
  margin-top: 20px;
}

.hero-actions .btn {
  width: 100%;
  min-height: 56px;
}

.hero-quick-links {
  margin-top: 12px;
}

.hero-media,
.hero-slider,
.hero-slider-track,
.hero-slide,
.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media.reveal {
  opacity: 1;
  transform: none;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 760ms ease, transform 960ms ease, visibility 760ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-image-wrap,
.image-frame,
.page-hero-image,
.gallery-card img,
.service-card img,
.testimonial-image,
.feature-image,
.cta-image {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.hero-image-wrap {
  background: var(--brand-deep);
}

.hero-image-wrap img,
.hero-slide img,
.page-hero-image img,
.image-frame img,
.gallery-card img,
.service-card img,
.testimonial-image img,
.feature-image img,
.cta-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-image-wrap img,
.hero-slide img {
  filter: brightness(1.08) saturate(1.1) contrast(1.02);
}

.hero-slider-chip,
.hero-note,
.hero-badge-card {
  position: absolute;
  z-index: 3;
}

.hero-slider-chip {
  top: calc(86px + env(safe-area-inset-top));
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.28);
  color: #dbeafe;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero-note,
.hero-badge-card {
  display: none;
}

.hero-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  transition: width var(--ease), background var(--ease);
}

.hero-slider-dot.is-active {
  width: 26px;
  background: #fff;
}

.page-hero {
  padding: clamp(22px, 8vw, 58px) 0 clamp(28px, 8vw, 70px);
}

.page-hero-shell,
.split-section,
.cta-shell,
.contact-shell,
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 6vw, 30px);
}

.page-hero-shell {
  overflow: hidden;
  padding: clamp(20px, 6vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.78));
  box-shadow: var(--shadow-sm);
}

.page-hero-copy p {
  margin: 16px 0 0;
  font-size: clamp(0.96rem, 3.7vw, 1.07rem);
}

.page-hero-copy .btn-row {
  margin-top: 22px;
}

.page-hero-image,
.image-frame,
.feature-image,
.cta-image {
  aspect-ratio: 4 / 3.25;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.breadcrumb a {
  color: #2563eb;
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.48;
}

.split-copy,
.contact-panel,
.feature-pane,
.contact-form {
  padding: clamp(20px, 6vw, 30px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xs);
}

.split-copy .btn-row,
.cta-copy .btn-row {
  margin-top: 22px;
}

.value-list,
.feature-list,
.faq-list,
.support-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li,
.feature-list li,
.support-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  line-height: 1.72;
}

.value-list li::before,
.feature-list li::before,
.support-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
}

.chip-cloud,
.stat-band {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #334155;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: var(--shadow-xs);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.home-services {
  overflow: hidden;
}

.home-services-grid {
  display: grid;
  grid-auto-columns: minmax(274px, 84vw);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 16px;
  overflow-x: auto;
  padding: 6px var(--edge) 18px;
  margin-inline: calc(0px - var(--edge));
  scroll-padding-inline: var(--edge);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.service-card,
.feature-card,
.step-card,
.testimonial-card,
.contact-card,
.stat-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.11), transparent 38%);
  box-shadow: var(--shadow-xs);
}

.service-card,
.feature-card,
.step-card,
.testimonial-card,
.contact-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 16px;
  border-radius: var(--radius-lg);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    background var(--ease);
}

.home-services-grid .service-card {
  scroll-snap-align: start;
}

.link-card:hover,
.link-card:focus-visible,
.service-card:hover,
.service-card:focus-within,
.feature-card:hover,
.feature-card:focus-within,
.step-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-md);
}

.service-card .image-frame,
.service-card img {
  aspect-ratio: 4 / 3;
}

.service-card h3,
.feature-card h3,
.step-card h3,
.contact-card h3,
.testimonial-copy h3 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.18rem, 5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.service-card p,
.feature-card p,
.step-card p,
.contact-card p,
.testimonial-copy p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.service-card p {
  flex: 1 1 auto;
}

.service-card .meta,
.feature-card .meta,
.step-card .meta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #1d4ed8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card .meta {
  margin-top: 14px;
}

.service-card .meta-row {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.service-card .meta-row strong {
  color: var(--ink);
  font-size: 0.93rem;
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: var(--shadow-xs);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.service-card-btn:hover,
.service-card-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.service-card-btn-whatsapp {
  border-color: rgba(37, 211, 102, 0.32);
  background: linear-gradient(135deg, var(--whatsapp), #128c7e);
  color: #fff;
}

.section-actions,
.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-actions .btn,
.gallery-actions .btn {
  width: min(100%, 340px);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.feature-grid,
.process-grid,
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

.step-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: var(--glow-blue);
}

.gallery-grid {
  column-count: 1;
  column-gap: 14px;
}

.gallery-card {
  display: inline-flex;
  width: 100%;
  break-inside: avoid;
  flex-direction: column;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.gallery-card img {
  aspect-ratio: 4 / 4.8;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
}

.gallery-card:nth-child(2n) img {
  aspect-ratio: 4 / 3.6;
}

.gallery-card span {
  display: block;
  padding: 12px 4px 0;
}

.gallery-card strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gallery-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.testimonial-shell {
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.testimonial-slide {
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

.testimonial-image {
  aspect-ratio: 4 / 3.2;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #e2e8f0;
  box-shadow: var(--shadow-xs);
}

.testimonial-copy {
  padding: 4px 2px 0;
}

.testimonial-card .rating,
.testimonial-copy .rating {
  color: var(--gold);
  font-size: 0.94rem;
  letter-spacing: 0.12em;
}

.testimonial-author {
  display: grid;
  gap: 3px;
  margin-top: 16px;
}

.testimonial-author strong {
  color: var(--ink);
  font-weight: 800;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.9rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 800;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.2);
  transition: width var(--ease), background var(--ease);
}

.slider-dot.is-active {
  width: 24px;
  background: var(--accent);
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xs);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.faq-question span:last-child {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #1d4ed8;
  font-size: 1.2rem;
}

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer p {
  margin-bottom: 0;
}

.cta-shell {
  overflow: hidden;
  align-items: center;
  padding: clamp(22px, 7vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 0%, rgba(59, 130, 246, 0.36), transparent 36%),
    radial-gradient(circle at 90% 20%, rgba(37, 211, 102, 0.24), transparent 32%),
    linear-gradient(135deg, #020617, #0f172a 52%, #1e293b);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-copy {
  padding: 0;
}

.cta-copy h2,
.cta-copy p {
  color: #fff;
}

.cta-copy p {
  margin: 16px 0 0;
  color: rgba(226, 232, 240, 0.86);
}

.cta-image {
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-shell {
  align-items: start;
}

.contact-info-grid {
  margin-top: 18px;
}

.contact-card .btn {
  width: 100%;
  margin-top: 14px;
}

.contact-form {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.86);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.floating-field {
  position: relative;
  display: block;
}

.floating-field > span {
  position: absolute;
  top: 17px;
  left: 16px;
  z-index: 1;
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  transition:
    top var(--ease),
    transform var(--ease),
    color var(--ease),
    background var(--ease);
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.chatbot-form input {
  width: 100%;
  min-height: 56px;
  padding: 24px 16px 10px;
  border: 1px solid rgba(15, 23, 42, 0.11);
  border-radius: 18px;
  outline: 0;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  transition:
    border-color var(--ease),
    box-shadow var(--ease),
    background var(--ease);
}

.contact-form textarea {
  min-height: 146px;
  resize: vertical;
}

.floating-select-field select {
  appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.chatbot-form input:focus {
  border-color: rgba(37, 99, 235, 0.45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.floating-field input:focus + span,
.floating-field input:not(:placeholder-shown) + span,
.floating-field textarea:focus + span,
.floating-field textarea:not(:placeholder-shown) + span,
.floating-field select:focus + span,
.floating-field select:valid + span {
  top: 0;
  transform: translateY(-50%) scale(0.86);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.96);
}

.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.form-submit-btn {
  width: 100%;
}

.form-submit-btn:disabled {
  cursor: wait;
  opacity: 0.9;
}

.btn-loader {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--ease), transform var(--ease);
}

.form-submit-btn.is-loading .btn-loader {
  opacity: 1;
  transform: scale(1);
  animation: spin 700ms linear infinite;
}

.form-note,
.form-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-pending {
  color: #b45309;
}

.map-frame {
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  background: #e2e8f0;
  box-shadow: var(--shadow-xs);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
}

.form-feedback-modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
}

.form-feedback-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.68);
  backdrop-filter: blur(10px);
}

.form-feedback-card,
.lightbox-card {
  position: relative;
  z-index: 1;
  width: min(460px, calc(100% - 28px));
  margin: min(12vh, 90px) auto 0;
  padding: 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  animation: popupIn 340ms var(--ease-long);
}

.form-feedback-card h3,
.lightbox-copy strong {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.form-feedback-card p {
  margin: 12px 0 22px;
  color: var(--ink-soft);
}

.form-feedback-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  color: var(--success);
  font-size: 1.75rem;
  font-weight: 900;
}

.form-feedback-modal.is-error .form-feedback-icon {
  background: rgba(220, 38, 38, 0.12);
  color: var(--danger);
}

.form-feedback-close,
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  font-size: 1.2rem;
  line-height: 1;
}

.footer {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  background:
    radial-gradient(circle at 15% 0%, rgba(59, 130, 246, 0.22), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(37, 211, 102, 0.14), transparent 28%),
    linear-gradient(180deg, #0f172a, #020617);
  color: #e2e8f0;
}

.footer-shell {
  padding: clamp(34px, 8vw, 60px) 0 calc(26px + env(safe-area-inset-bottom));
}

.footer-top,
.footer-grid,
.footer-bottom {
  display: grid;
  gap: 22px;
}

.footer-top {
  padding-bottom: 30px;
}

.footer-top h2 {
  max-width: 13ch;
  color: #fff;
}

.footer-top p,
.footer-col p {
  color: rgba(226, 232, 240, 0.74);
}

.footer-actions {
  display: grid;
  gap: 12px;
}

.footer-cta-btn {
  width: 100%;
}

.footer-grid {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand small,
.footer-col a,
.footer-col span {
  color: rgba(226, 232, 240, 0.72);
}

.footer-col {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.footer-col h3 {
  margin: 0 0 12px;
  color: #bfdbfe;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-top: 9px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #fff;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(226, 232, 240, 0.68);
  font-size: 0.9rem;
}

.footer-credit-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-credit strong {
  color: #93c5fd;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.floating-stack {
  display: none;
}

.mobile-sticky-actions {
  position: fixed;
  right: 8px;
  bottom: calc(8px + env(safe-area-inset-bottom));
  left: 8px;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(20px) saturate(1.35);
}

.mobile-sticky-action {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0 6px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mobile-sticky-action i {
  flex: 0 0 auto;
  font-size: 0.86rem;
}

.mobile-sticky-action span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-sticky-action-email,
.mobile-sticky-action-ai {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.mobile-sticky-action-whatsapp {
  border-color: transparent;
  background: linear-gradient(135deg, var(--whatsapp), #128c7e);
  color: #fff;
}

.chatbot-toggle {
  --skyra-size: 48px;
  --skyra-avatar-size: 42px;
  --skyra-bubble-width: min(178px, calc(100vw - 82px));
  position: fixed;
  right: 10px;
  bottom: calc(82px + env(safe-area-inset-bottom));
  z-index: 101;
  display: grid;
  width: var(--skyra-size);
  height: var(--skyra-size);
  min-height: var(--skyra-size);
  place-items: center;
  isolation: isolate;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  color: #6d28d9;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.98);
  overflow: visible;
  backdrop-filter: blur(18px) saturate(1.2);
  transition: transform var(--ease), box-shadow var(--ease);
}

.chatbot-toggle:hover,
.chatbot-toggle:focus-visible {
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.24), inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-4px) scale(1.04);
}

.chatbot-toggle::before,
.chatbot-toggle::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.chatbot-toggle::before {
  inset: -4px;
  z-index: -2;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(168, 85, 247, 0.38), rgba(34, 211, 238, 0.25));
  filter: blur(12px);
  opacity: 0.58;
  animation: softPulse 2.8s infinite ease-out;
}

.chatbot-toggle::after {
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.chatbot-avatar-wrap {
  position: relative;
  z-index: 1;
  display: block;
  width: var(--skyra-avatar-size);
  height: var(--skyra-avatar-size);
  flex: 0 0 var(--skyra-avatar-size);
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #eef2ff, #60a5fa 54%, #7c3aed);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.chatbot-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chatbot-toggle-copy {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  z-index: 0;
  display: flex;
  width: var(--skyra-bubble-width);
  min-height: 44px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 7px 13px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(12px, -50%) scale(0.96);
  animation: skyraBubblePop 10s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.chatbot-toggle-copy::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
  border-right: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-50%) rotate(45deg);
}

.chatbot-toggle:hover .chatbot-toggle-copy,
.chatbot-toggle:focus-visible .chatbot-toggle-copy {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
  animation: none;
}

.chatbot-toggle-brand {
  display: inline-flex;
  align-items: baseline;
  color: #2563eb;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.5rem, 1.85vw, 0.6rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.chatbot-toggle-brand::after {
  content: " beta";
  margin-left: 3px;
  color: #64748b;
  font-size: 0.62em;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.chatbot-toggle-title {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #7c3aed;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 3.55vw, 0.92rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chatbot-robo-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
  pointer-events: none;
}

.chatbot-robo-core {
  position: absolute;
  inset: 0;
  animation: roboCoreOrbit 4.8s ease-in-out infinite;
}

.chatbot-robo-visor {
  position: absolute;
  top: 31%;
  left: 27%;
  width: 46%;
  height: 20%;
  overflow: hidden;
  border-radius: 999px;
}

.chatbot-robo-eye {
  position: absolute;
  top: 20%;
  width: 18%;
  height: 60%;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 14px rgba(103, 232, 249, 0.72);
  animation: roboEyeBlink 4.2s infinite ease-in-out;
}

.chatbot-robo-eye-left {
  left: 23%;
}

.chatbot-robo-eye-right {
  right: 23%;
}

.chatbot-robo-scan {
  position: absolute;
  top: 0;
  left: -24%;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.92), transparent);
  filter: blur(0.5px);
  animation: roboScanSweep 3.8s infinite ease-in-out;
}

.chatbot-notification {
  position: absolute;
  top: -4px;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  min-width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  animation: badgeBounce 1.7s infinite ease-in-out;
}

.chatbot-backdrop {
  position: fixed;
  inset: 0;
  z-index: 125;
  background: rgba(2, 6, 23, 0.52);
  backdrop-filter: blur(10px);
}

.chatbot-panel {
  position: fixed;
  right: 10px;
  bottom: calc(154px + env(safe-area-inset-bottom));
  left: 10px;
  z-index: 126;
  display: flex;
  max-height: min(620px, calc(100dvh - 174px));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px) saturate(1.35);
  animation: chatRise 320ms var(--ease-long);
}

.chatbot-head {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.chatbot-title {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.chatbot-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.chatbot-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  font-size: 1.1rem;
}

.chatbot-messages {
  display: flex;
  min-height: 230px;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 14px;
  scroll-behavior: smooth;
}

.chatbot-save-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 12px 10px;
  padding: 8px 11px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.chatbot-save-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
  box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.14);
}

.chatbot-save-status[data-state="saving"] .chatbot-save-dot,
.chatbot-save-status[data-state="retrying"] .chatbot-save-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
  animation: softPulse 1s infinite;
}

.chatbot-save-status[data-state="saved"] {
  color: #15803d;
}

.chatbot-save-status[data-state="saved"] .chatbot-save-dot {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.chatbot-save-status[data-state="error"] {
  color: #b45309;
}

.chatbot-save-status[data-state="error"] .chatbot-save-dot {
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.chatbot-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 12px 12px;
}

.chatbot-tool-btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  box-shadow: var(--shadow-xs);
}

.chatbot-tool-whatsapp {
  border-color: rgba(37, 211, 102, 0.28);
  background: rgba(37, 211, 102, 0.1);
  color: #15803d;
}

.chatbot-tool-location {
  border-color: rgba(37, 99, 235, 0.22);
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}

.chatbot-tool-btn:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.chat-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.62;
}

.chat-message p {
  margin: 0;
}

.chat-message time {
  display: block;
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 750;
  opacity: 0.68;
}

.chat-message.user {
  margin-left: auto;
  border-bottom-right-radius: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.chat-message.ai {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom-left-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.chat-message.typing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: typingBounce 900ms infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 150ms;
}

.typing-dot:nth-child(3) {
  animation-delay: 300ms;
}

.chatbot-form {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.chatbot-form input {
  min-height: 50px;
  padding: 0 14px;
  border-radius: 16px;
}

.chatbot-form button {
  min-width: 74px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 800;
}

.ai-message-toast,
.voice-assist-toast {
  position: fixed;
  right: 12px;
  left: 12px;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.2), transparent 34%),
    rgba(15, 23, 42, 0.9);
  color: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--ease), transform var(--ease);
  backdrop-filter: blur(18px) saturate(1.25);
}

.ai-message-toast {
  bottom: calc(94px + env(safe-area-inset-bottom));
  padding: 12px 14px;
}

.voice-assist-toast {
  bottom: calc(154px + env(safe-area-inset-bottom));
  padding: 12px;
}

.ai-message-toast.is-visible,
.voice-assist-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ai-message-toast strong,
.voice-assist-toast strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
}

.ai-message-toast span,
.voice-assist-toast span {
  display: block;
  margin-top: 3px;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.72rem;
  line-height: 1.35;
}

.voice-assist-toast button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.34);
  pointer-events: auto;
}

.lightbox {
  display: grid;
  place-items: center;
  padding: 14px;
}

.lightbox-card {
  width: min(920px, 100%);
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.lightbox-image {
  width: 100%;
  max-height: 70dvh;
  object-fit: cover;
}

.lightbox-copy {
  padding: 20px;
}

.lightbox-copy p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.reveal {
  opacity: 1;
  transform: none;
  animation: heroTextReveal 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

@media (hover: hover) and (pointer: fine) {
  .image-frame:hover img,
  .page-hero-image:hover img,
  .gallery-card:hover img,
  .service-card:hover img,
  .testimonial-card:hover .testimonial-image img,
  .feature-image:hover img,
  .cta-image:hover img {
    transform: scale(1.045);
  }
}

@media (min-width: 380px) {
  .gallery-grid {
    column-count: 2;
  }

  .mobile-sticky-action {
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 0;
  }

  .header-shell {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    gap: 6px;
    min-height: 86px;
    padding: max(10px, env(safe-area-inset-top)) 10px 10px;
    border-radius: 0 0 22px 22px;
    background: rgba(255, 255, 255, 0.96);
  }

  .hero {
    margin-top: 86px;
  }

  .hero-shell {
    width: 100%;
    max-width: none;
    min-height: calc(100svh - 210px);
    margin-inline: 0;
    align-items: center;
    padding: 18px 10px 18px;
    border-radius: 0 0 42px 42px;
    background: transparent;
    clip-path: none;
    overflow: hidden;
  }

  .hero-media,
  .hero-shell::before {
    clip-path: none;
  }

  .hero-media {
    inset: 0;
    overflow: hidden;
    border-radius: 0 0 42px 42px;
  }

  .hero-shell::after {
    inset: auto 0 0;
    z-index: 2;
    display: block;
    height: 34px;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.18));
    clip-path: ellipse(82% 100% at 50% 100%);
    pointer-events: none;
  }

  .hero-image-wrap,
  .hero-slide img {
    width: 100%;
    height: 100%;
    border-radius: 0 0 42px 42px;
    object-fit: cover;
    object-position: center;
  }

  .hero-copy {
    width: min(calc(100% - 12px), 330px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: translateY(96px);
  }

  .hero-copy::before {
    display: none;
  }

  .hero-mini-label {
    min-height: 20px;
    padding-inline: 6px;
    font-size: 0.44rem;
  }

  .hero-copy h1 {
    margin-top: 4px;
    font-size: clamp(1.34rem, 6.1vw, 1.72rem);
    text-shadow: 0 4px 18px rgba(2, 6, 23, 0.72);
  }

  .hero-copy p {
    margin-top: 4px;
    font-size: clamp(0.7rem, 2.7vw, 0.78rem);
    text-shadow: 0 3px 14px rgba(2, 6, 23, 0.72);
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 7px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 40px;
    padding-inline: 8px;
    font-size: 0.8rem;
  }

  .brand {
    gap: 7px;
    max-width: calc(100% - 112px);
  }

  .brand-mark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }

  .brand-copy {
    max-width: calc(100vw - 202px);
  }

  .brand-copy strong {
    font-size: clamp(0.9rem, 4.2vw, 1.08rem);
    letter-spacing: -0.052em;
    line-height: 0.98;
  }

  .brand-title-line,
  .brand-title-sub {
    display: block;
  }

  .brand-copy small {
    display: block;
    margin-top: 3px;
    font-size: clamp(0.48rem, 2.15vw, 0.58rem);
    letter-spacing: 0.07em;
  }

  .mobile-toggle {
    width: 40px;
    height: 42px;
    border-radius: 14px;
  }

  .mobile-header-contact {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 11px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.09);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
  }

  .mobile-header-contact i {
    font-size: 0.72rem;
  }
}

@media (max-width: 920px) {
  .voice-toggle {
    display: none;
  }
}

@media (min-width: 560px) {
  .btn-row,
  .footer-actions,
  .form-actions {
    flex-direction: row;
  }

  .btn-row {
    display: flex;
    flex-wrap: wrap;
  }

  .btn-row .btn {
    width: auto;
  }

  .card-grid,
  .feature-grid,
  .process-grid,
  .contact-info-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .testimonial-card .testimonial-image {
    aspect-ratio: 4 / 3.4;
  }
}

@media (min-width: 760px) {
  .hero-shell {
    border-radius: 0 0 46px 46px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 8vw, 5.4rem);
  }

  .hero-note {
    right: 20px;
    bottom: 24px;
    display: block;
    width: min(270px, 38vw);
    padding: 16px;
    border-radius: 22px;
  }

  .hero-note strong {
    display: block;
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.22;
  }

  .hero-note span {
    display: block;
    margin-top: 6px;
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .gallery-grid {
    column-count: 3;
  }

  .testimonial-slide {
    grid-template-columns: 0.42fr 0.58fr;
    gap: 22px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  body.has-mobile-sticky-actions {
    padding-bottom: 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px) saturate(1.2);
  }

  .site-header.is-scrolled {
    top: 0;
    transform: translateZ(0);
  }

  .desktop-topbar {
    display: block;
    background: linear-gradient(90deg, #f59e0b, #fb923c);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .desktop-topbar-inner {
    display: flex;
    width: min(calc(100% - 40px), 1680px);
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .desktop-topbar-group,
  .desktop-topbar-group a {
    display: inline-flex;
    align-items: center;
  }

  .desktop-topbar-group {
    gap: 12px;
    min-width: 0;
  }

  .desktop-topbar-group a {
    gap: 7px;
    white-space: nowrap;
  }

  .desktop-topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.55);
  }

  .desktop-topbar-note {
    min-width: 0;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-shell {
    display: grid;
    width: min(calc(100% - 40px), 1680px);
    grid-template-columns: minmax(330px, 0.9fr) minmax(480px, 1.35fr) auto;
    gap: 20px;
    min-height: 92px;
    padding: 9px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled .header-shell,
  body[data-page="home"] .site-header:not(.is-scrolled) .header-shell {
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .site-header:not(.is-scrolled) .brand-copy strong,
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-word-dark,
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-title-sub,
  body[data-page="home"] .site-header:not(.is-scrolled) .nav-link,
  body[data-page="home"] .site-header:not(.is-scrolled) .services-trigger {
    color: var(--ink);
  }

  body[data-page="home"] .site-header:not(.is-scrolled) .brand-copy small {
    color: var(--muted);
  }

  .brand {
    width: 100%;
    max-width: none;
    gap: 14px;
    overflow: hidden;
  }

  .brand-copy {
    overflow: hidden;
    max-width: none;
  }

  .brand-copy strong {
    overflow: hidden;
    font-size: clamp(1rem, 1.3vw, 1.24rem);
    letter-spacing: -0.06em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .brand-mark {
    width: 76px;
    height: 76px;
    border-radius: 50%;
  }

  .main-nav,
  .nav-list {
    display: flex;
    align-items: center;
  }

  .main-nav {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
  }

  .nav-list {
    width: 100%;
    gap: 2px;
    margin: 0;
    padding: 4px;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.72);
    list-style: none;
  }

  .nav-item {
    position: relative;
  }

  .nav-services-group {
    position: static;
  }

  .nav-link,
  .services-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    color: var(--ink-soft);
    font-size: 0.84rem;
    font-weight: 800;
    transition: background var(--ease), color var(--ease);
  }

  .services-trigger::after {
    content: "+";
    margin-left: 8px;
    font-size: 1rem;
    line-height: 1;
  }

  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-link.is-active,
  .services-trigger:hover,
  .services-trigger:focus-visible,
  .services-trigger.is-active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
  }

  .header-actions {
    display: none;
    gap: 8px;
  }

  .header-tools {
    justify-content: flex-end;
    min-width: 46px;
  }

  .header-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 800;
  }

  .header-actions .btn {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 0.88rem;
  }

  .voice-toggle {
    width: 46px;
    min-width: 46px;
    gap: 0;
    padding: 0;
    border-radius: 999px;
  }

  .voice-toggle-text {
    display: none;
    font-size: 0.84rem;
    font-weight: 800;
  }

  .mobile-toggle {
    display: none;
  }

  .mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 20;
    display: block;
    width: min(1080px, calc(100vw - 40px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(24px) saturate(1.25);
    transform: translate(-50%, 12px) scale(0.98);
    transform-origin: top center;
    transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
  }

  .mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
  }

  .mega-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 18px;
  }

  .mega-intro {
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    background:
      radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 38%),
      linear-gradient(180deg, #ffffff, #eff6ff);
  }

  .mega-intro h3 {
    margin: 18px 0 10px;
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .mega-intro p {
    margin: 0;
    color: var(--ink-soft);
  }

  .mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-height: 62vh;
    overflow-y: auto;
    padding-right: 4px;
  }

  .mega-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  }

  .mega-card:hover,
  .mega-card:focus-visible,
  .mega-card.is-current {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: var(--shadow-sm);
  }

  .mega-card img {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    object-fit: cover;
  }

  .mega-card strong {
    display: block;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.025em;
  }

  .mega-card > span > span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .hero {
    margin-top: 126px;
    padding-bottom: 88px;
  }

  .hero-shell {
    min-height: min(820px, 100svh);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
    overflow: visible;
    padding: 76px 0 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-shell::before {
    inset: 0 46% 0 -8vw;
    border-radius: 0 48px 48px 0;
    background:
      radial-gradient(circle at 20% 15%, rgba(59, 130, 246, 0.24), transparent 32%),
      linear-gradient(135deg, #020617, #0f172a 62%, #1e293b);
    box-shadow: var(--shadow-lg);
  }

  .hero-shell::after {
    display: none;
  }

  .hero-copy {
    width: min(520px, 100%);
    margin-inline: 0;
    padding: 34px;
    border-radius: 38px;
    align-items: flex-start;
    text-align: left;
  }

  .hero-copy h1 {
    color: #fff;
    font-size: clamp(3.6rem, 5.4vw, 5.4rem);
  }

  .hero-copy p {
    margin-inline: 0;
  }

  .hero-trustbar,
  .quick-pills {
    flex-wrap: wrap;
    overflow: visible;
  }

  .counter-row {
    max-width: 520px;
  }

  .hero-actions {
    flex-direction: row;
    width: auto;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 180px;
  }

  .hero-media,
  .hero-slider,
  .hero-slider-track {
    position: relative;
    inset: auto;
    min-height: 620px;
  }

  .hero-media {
    z-index: 2;
  }

  .hero-slide,
  .hero-image-wrap {
    position: absolute;
  }

  .hero-image-wrap {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 44px;
    box-shadow: var(--shadow-lg);
  }

  .hero-slider-chip {
    top: 22px;
    left: 22px;
  }

  .hero-note {
    right: 24px;
    bottom: 24px;
    background: rgba(255, 255, 255, 0.78);
  }

  .hero-note strong {
    color: var(--ink);
  }

  .hero-note span {
    color: var(--ink-soft);
  }

  .hero-badge-card {
    top: 24px;
    right: 24px;
    display: block;
    width: 220px;
    padding: 16px;
    border-radius: 24px;
  }

  .hero-badge-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #1d4ed8;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero-badge-card strong {
    display: block;
    margin-top: 10px;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -0.03em;
  }

  .hero-badge-card small {
    display: block;
    margin-top: 6px;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  .hero-slider-dots {
    bottom: 26px;
    left: 28px;
    transform: none;
  }

  .page-hero-shell,
  .split-section,
  .cta-shell,
  .contact-shell,
  .feature-showcase,
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .page-hero-image,
  .image-frame,
  .feature-image,
  .cta-image {
    min-height: 360px;
  }

  .home-services-grid {
    overflow: visible;
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
    margin-inline: 0;
  }

  .section-header {
    margin-inline: 0;
    text-align: left;
  }

  .home-services .section-actions,
  .home-testimonials .slider-controls {
    justify-content: flex-start;
  }

  .testimonial-shell {
    padding: 24px;
  }

  .testimonial-slide {
    grid-template-columns: 0.38fr 0.62fr;
    gap: 28px;
  }

  .testimonial-copy h3 {
    font-size: 1.7rem;
  }

  .form-submit-btn {
    width: auto;
    min-width: 210px;
  }

  .mobile-sticky-actions {
    display: none;
  }

  .floating-stack {
    position: fixed;
    right: 18px;
    bottom: 104px;
    z-index: 90;
    display: grid;
    gap: 12px;
  }

  .floating-action {
    position: relative;
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    color: #fff;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    transition: transform var(--ease);
  }

  .floating-action:hover,
  .floating-action:focus-visible {
    transform: translate(-5px, -2px);
  }

  .floating-action.whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #128c7e);
  }

  .floating-action.call {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
  }

  .floating-action.email {
    background: linear-gradient(135deg, #1e293b, #0f172a);
  }

  .floating-badge,
  .floating-icon-shell {
    display: grid;
    place-items: center;
  }

  .floating-badge {
    width: 100%;
    height: 100%;
  }

  .floating-icon-shell {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
  }

  .floating-icon {
    font-size: 1.2rem;
  }

  .floating-label {
    position: absolute;
    top: 50%;
    right: 68px;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    max-width: 0;
    padding: 0 13px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    opacity: 0;
    white-space: nowrap;
    transform: translateY(-50%);
    transition: max-width var(--ease), opacity var(--ease);
  }

  .floating-action:hover .floating-label,
  .floating-action:focus-visible .floating-label {
    max-width: 150px;
    opacity: 1;
  }

  .chatbot-toggle {
    --skyra-size: 56px;
    --skyra-avatar-size: 48px;
    --skyra-bubble-width: 190px;
    right: 18px;
    bottom: 18px;
    width: var(--skyra-size);
    height: var(--skyra-size);
    min-height: var(--skyra-size);
  }

  .chatbot-avatar-wrap {
    width: var(--skyra-avatar-size);
    height: var(--skyra-avatar-size);
    flex-basis: var(--skyra-avatar-size);
  }

  .chatbot-panel {
    right: 18px;
    bottom: 88px;
    left: auto;
    width: min(410px, calc(100vw - 36px));
    max-height: min(680px, calc(100dvh - 128px));
  }

  .ai-message-toast,
  .voice-assist-toast {
    right: 110px;
    left: auto;
    width: min(360px, calc(100vw - 140px));
  }

  .ai-message-toast {
    bottom: 28px;
  }

  .voice-assist-toast {
    bottom: 102px;
  }
}

@media (min-width: 1180px) {
  .nav-link,
  .services-trigger {
    padding: 0 10px;
    font-size: 0.86rem;
  }
}

@media (min-width: 1360px) {
  .header-shell {
    grid-template-columns: minmax(390px, 0.92fr) minmax(560px, 1.25fr) auto;
  }

  .brand-copy strong {
    font-size: clamp(1.12rem, 1.35vw, 1.34rem);
    letter-spacing: -0.055em;
  }

  .nav-link,
  .services-trigger {
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .header-actions {
    display: flex;
    align-items: center;
  }

  .voice-toggle {
    width: auto;
    min-width: 0;
    gap: 8px;
    padding: 0 14px;
  }

  .voice-toggle-text {
    display: inline;
  }
}

@media (min-width: 1160px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid.four-up,
  .home-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-grid,
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-showcase {
    grid-template-columns: 1.04fr 0.96fr;
  }

  .gallery-grid {
    column-count: 4;
    column-gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.86fr 0.96fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 359px) {
  :root {
    --edge: 14px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .brand-copy {
    max-width: calc(100vw - 190px);
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .brand-copy small {
    font-size: 0.45rem;
    letter-spacing: 0.04em;
  }

  .mobile-header-contact {
    width: 40px;
    padding: 0;
  }

  .mobile-header-contact span {
    display: none;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .counter-card {
    padding-inline: 6px;
  }

  .mobile-sticky-actions {
    gap: 5px;
    padding: 7px;
  }

  .mobile-sticky-action {
    min-height: 50px;
    flex-direction: column;
    gap: 4px;
    font-size: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@keyframes typingBounce {
  0%,
  80%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes softPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.92);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes skyraBubblePop {
  0%,
  5%,
  100% {
    opacity: 0;
    transform: translate(12px, -50%) scale(0.96);
  }

  7%,
  28% {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }

  31% {
    opacity: 0;
    transform: translate(7px, -50%) scale(0.98);
  }
}

@keyframes skyraPillReveal {
  0%,
  18%,
  100% {
    width: var(--skyra-collapsed-width);
    padding: var(--skyra-collapsed-padding);
  }

  30%,
  72% {
    width: var(--skyra-expanded-width);
    padding: var(--skyra-expanded-padding);
  }
}

@keyframes skyraTextReveal {
  0%,
  22%,
  100% {
    max-width: 0;
    opacity: 0;
    transform: translateX(-12px);
  }

  34%,
  70% {
    max-width: var(--skyra-copy-width);
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes badgeBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.08);
  }
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chatRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes roboEyeBlink {
  0%,
  44%,
  48%,
  74%,
  78%,
  100% {
    opacity: 0.98;
    transform: scaleY(1);
  }

  46%,
  76% {
    opacity: 0.84;
    transform: scaleY(0.18);
  }
}

@keyframes roboCoreOrbit {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    transform: translate(2px, 1px) rotate(0.4deg);
  }

  75% {
    transform: translate(-1px, 1px) rotate(-1deg);
  }
}

@keyframes roboScanSweep {
  0% {
    opacity: 0.12;
    transform: translateX(0) skewX(-8deg);
  }

  45% {
    opacity: 0.78;
    transform: translateX(470%) skewX(-8deg);
  }

  100% {
    opacity: 0.08;
    transform: translateX(940%) skewX(-8deg);
  }
}
