:root {
  --bg-primary: #05070a;
  --bg-secondary: #0e1118;
  --bg-tertiary: rgba(14, 17, 24, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(255, 255, 255, 0.09);
  --text-primary: #ffffff;
  --text-secondary: #a9b3c1;
  --blue-neon: #00bfff;
  --blue-primary: #007bff;
  --blue-soft: rgba(0, 191, 255, 0.16);
  --whatsapp-green: #25d366;
  --whatsapp-green-dark: #1ebe57;
  --glow-soft: 0 0 30px rgba(0, 191, 255, 0.18);
  --glow-strong: 0 0 50px rgba(0, 191, 255, 0.28);
  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container-width: 1560px;
  --transition: 0.35s ease;
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(0, 123, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(0, 191, 255, 0.1), transparent 20%),
    linear-gradient(180deg, #05070a 0%, #080b10 42%, #05070a 100%);
  color: var(--text-primary);
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: visible;
}

.container-wide {
  width: min(100% - 24px, var(--container-width));
  max-width: 100%;
  margin: 0 auto;
  overflow-x: clip;
}

.section {
  position: relative;
  padding: 110px 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

.section-tight {
  padding: 80px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 191, 255, 0.18);
  background: rgba(0, 191, 255, 0.08);
  color: var(--blue-neon);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: break-word;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 48px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-heading h2,
.page-hero-copy h1,
.hero-copy h1,
.cta-panel h2 {
  margin: 16px 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.section-heading h2,
.page-hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading p,
.hero-copy p,
.page-hero-copy p,
.lead-text,
.body-copy,
.stat-card p,
.feature-card p,
.service-card p,
.module-card p,
.testimonial-card p,
.faq-intro p,
.footer-copy,
.contact-card p,
.contact-form-panel p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.lead-text {
  font-size: 1.05rem;
}

.gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, #9fe8ff 45%, #00bfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glow-line {
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 191, 255, 0), rgba(0, 191, 255, 1), rgba(0, 191, 255, 0));
  box-shadow: var(--glow-soft);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1050;
  transition: var(--transition);
  width: 100%;
  max-width: 100vw;
}

.site-header * {
  box-sizing: border-box;
}

.site-header.scrolled .header-backdrop {
  background: rgba(4, 7, 12, 0.82);
  backdrop-filter: blur(22px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.header-backdrop {
  margin: 16px auto 0;
  width: min(100% - 16px, var(--container-width));
  max-width: 100vw;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: var(--transition);
}

.navbar-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 22px;
  gap: 20px;
  max-width: 100%;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: 60%;
  flex-shrink: 1;
}

.brand-mark img {
  width: 176px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 9998;
}

.brand-caption strong {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.02em;
}

.brand-caption span {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link-premium {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-link-premium::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--blue-neon), transparent);
  transition: var(--transition);
}

.nav-link-premium:hover,
.nav-link-premium.active {
  color: var(--text-primary);
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
}

.btn-premium,
.btn-outline-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  overflow: hidden;
}

.btn-premium {
  border: 1px solid rgba(0, 191, 255, 0.45);
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.9), rgba(0, 123, 255, 0.9));
  color: #031018;
  box-shadow: 0 16px 30px rgba(0, 191, 255, 0.22);
}

.btn-outline-premium {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.btn-premium:hover,
.btn-outline-premium:hover {
  transform: translateY(-3px);
}

.btn-outline-premium:hover {
  border-color: rgba(0, 191, 255, 0.28);
  box-shadow: var(--glow-soft);
}

.ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.7s linear;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: visible;
}

.hero-copy,
.hero-visual,
.page-hero-copy,
.page-hero-visual {
  transform: none !important;
  opacity: 1 !important;
}

.hero-copy[data-aos].aos-init:not(.aos-animate),
.hero-visual[data-aos].aos-init:not(.aos-animate),
.page-hero-copy[data-aos].aos-init:not(.aos-animate),
.page-hero-visual[data-aos].aos-init:not(.aos-animate) {
  transform: none !important;
  opacity: 1 !important;
}

.hero .aos-init.aos-animate,
.page-hero .aos-init.aos-animate {
  transform: none !important;
}

.hero::before,
.page-hero::before,
.module-showcase::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 191, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 191, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.12;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
}

.hero-particles,
.particles-surface {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .container-wide,
.page-hero .container-wide {
  position: relative;
  z-index: 1;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 44px;
  max-width: 100%;
  overflow-x: clip;
}

.hero-copy {
  max-width: 100%;
  overflow-x: clip;
}

.hero-copy h1 {
  font-size: clamp(3.3rem, 8vw, 6.6rem);
  margin-bottom: 24px;
}

.hero-copy .tagline {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 500;
  color: #d5f7ff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.stat-card,
.glass-card,
.feature-card,
.service-card,
.module-card,
.contact-card,
.faq-card,
.timeline-step,
.testimonial-card,
.info-panel {
  position: relative;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.stat-card::before,
.glass-card::before,
.feature-card::before,
.service-card::before,
.module-card::before,
.contact-card::before,
.timeline-step::before,
.testimonial-card::before,
.faq-card::before,
.info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(0, 191, 255, 0.6), transparent, rgba(255, 255, 255, 0.08));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-card {
  padding: 28px 24px;
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.hero-visual,
.visual-panel {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: auto;
}

.hero-visual-main,
.visual-card {
  position: relative;
  inset: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 191, 255, 0.18);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--glow-soft), var(--shadow-soft);
  overflow: hidden;
}

.hero-visual-main {
  min-height: 360px;
}

.visual-card {
  width: 100%;
  padding: 22px;
  backdrop-filter: blur(24px);
}

.visual-card h3,
.service-card h3,
.module-card h3,
.feature-card h3,
.timeline-step h3,
.contact-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.hero-visual-main img,
.visual-image img,
.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .hero-visual,
  .visual-panel {
    display: block;
    min-height: 620px;
  }

  .hero-visual-main,
  .visual-card {
    position: absolute;
  }

  .hero-visual-main {
    inset: 30px 0 30px 60px;
    min-height: auto;
  }

  .visual-card {
    width: 280px;
  }

  .visual-card.top {
    top: 10px;
    left: 0;
  }

  .visual-card.bottom {
    right: 20px;
    bottom: 10px;
  }
}

.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(4, 10, 18, 0.82);
  border: 1px solid rgba(0, 191, 255, 0.24);
  box-shadow: var(--glow-soft);
  color: #d8f7ff;
}

.floating-badge.one {
  top: 14%;
  left: 12%;
}

.floating-badge.two {
  bottom: 18%;
  right: 6%;
}

.grid-2,
.grid-3,
.grid-4,
.services-grid,
.modules-grid,
.contact-grid,
.footer-grid,
.process-grid,
.recovery-grid,
.comparison-grid {
  display: grid;
  gap: 24px;
  max-width: 100%;
  overflow-x: clip;
}

.grid-2,
.contact-grid,
.recovery-grid,
.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.services-grid,
.modules-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-layout,
.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.visual-image,
.page-hero-visual,
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.18);
  box-shadow: var(--glow-soft), var(--shadow-soft);
}

.feature-card,
.service-card,
.module-card,
.timeline-step,
.testimonial-card,
.contact-card {
  padding: 28px;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover,
.service-card:hover,
.module-card:hover,
.timeline-step:hover,
.contact-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 191, 255, 0.28);
  box-shadow: var(--glow-strong), var(--shadow-soft);
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(0, 191, 255, 0.12);
  color: var(--blue-neon);
  font-size: 1.45rem;
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 191, 255, 0.16);
}

.service-visual {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin: 0 -28px 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.25), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-visual i {
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0 25px rgba(0, 191, 255, 0.3);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #d7f7ff;
  font-weight: 600;
}

.module-showcase {
  position: relative;
  padding: 120px 0;
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
  max-width: 100vw;
}

.module-panel {
  position: relative;
  max-width: 100%;
  padding: 56px;
  border-radius: 40px;
  border: 1px solid rgba(0, 191, 255, 0.16);
  background:
    radial-gradient(circle at right top, rgba(0, 191, 255, 0.16), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--glow-soft), var(--shadow-soft);
  overflow-x: clip;
}

.module-title {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce8f7;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.timeline-step {
  text-align: left;
}

.timeline-step span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue-neon);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #ffcd3c;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.3), rgba(0, 123, 255, 0.35));
  color: white;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-widget-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: transparent;
}

.testimonial-widget-wrap > #JFWebsiteWidget-01a03af1a8987000841ebfab417a86562f87 {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
}

.testimonial-widget-wrap > #JFWebsiteWidget-01a03af1a8987000841ebfab417a86562f87 iframe,
.testimonial-widget-wrap iframe,
.testimonial-widget-wrap object,
.testimonial-widget-wrap embed {
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  outline: none !important;
  display: block;
  background: transparent;
}

.testimonial-widget-wrap .empty-state-note,
.testimonial-widget-wrap p {
  overflow-wrap: break-word;
  word-break: break-word;
}

.testimonial-widget-wrap .lead-text a {
  color: var(--blue-neon);
}

.accordion-premium .accordion-item {
  background: transparent;
  border: 0;
  margin-bottom: 16px;
}

.accordion-premium .accordion-button {
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.03);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 24px;
  box-shadow: none;
}

.accordion-premium .accordion-button:not(.collapsed) {
  background: rgba(0, 191, 255, 0.09);
  color: white;
}

.accordion-premium .accordion-button::after {
  filter: invert(1);
}

.accordion-premium .accordion-body {
  color: var(--text-secondary);
  line-height: 1.8;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.cta-band {
  position: relative;
  padding: 110px 0;
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
  max-width: 100vw;
}

.cta-panel {
  position: relative;
  max-width: 100%;
  padding: 72px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.86), rgba(0, 123, 255, 0.94));
  color: #04121a;
  box-shadow: 0 30px 70px rgba(0, 123, 255, 0.32);
  overflow-x: clip;
}

.cta-panel h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  color: #04121a;
}

.cta-panel p {
  max-width: 720px;
  color: rgba(4, 18, 26, 0.78);
  font-size: 1.05rem;
}

.cta-panel .btn-premium {
  background: #04121a;
  color: white;
  border-color: #04121a;
  box-shadow: none;
}

.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 5, 10, 0.96);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.8fr 0.9fr;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-title {
  margin-bottom: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.footer-list {
  display: grid;
  gap: 12px;
}

.footer-list a,
.footer-list span {
  color: var(--text-secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-credit img {
  height: 26px;
  width: auto;
  object-fit: contain;
  transform: translateY(-6px);
}

.inline-editor-toolbar {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1600;
  width: min(520px, calc(100vw - 24px));
  padding: 20px;
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 24px;
  background: rgba(4, 7, 12, 0.92);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.inline-editor-toolbar.is-active {
  border-color: rgba(0, 191, 255, 0.45);
  box-shadow: var(--glow-soft), 0 24px 60px rgba(0, 0, 0, 0.42);
}

.inline-editor-toolbar.is-busy {
  opacity: 0.88;
}

.inline-editor-toolbar__top,
.inline-editor-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inline-editor-toolbar__top {
  justify-content: space-between;
  margin-bottom: 14px;
}

.inline-editor-toolbar__meta,
.inline-editor-toolbar__hint {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.inline-editor-toolbar__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #d8f7ff;
  font-size: 0.86rem;
  font-weight: 600;
}

.inline-editor-toolbar.is-active .inline-editor-toolbar__status {
  border-color: rgba(0, 191, 255, 0.28);
  background: rgba(0, 191, 255, 0.12);
  color: var(--blue-neon);
}

.inline-editor-toolbar__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  margin-bottom: 14px;
}

.btn-inline-editor,
.btn-inline-editor-secondary {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.btn-inline-editor {
  grid-column: span 2;
}

.btn-inline-editor.is-loading {
  opacity: 0.92;
  cursor: wait;
}

.inline-editor-spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: currentColor;
  animation: inline-editor-spin 0.7s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}

.inline-editor-check,
.inline-editor-error {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.inline-editor-check {
  background: rgba(74, 222, 128, 0.2);
  color: #61e390;
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.3);
}

.inline-editor-error {
  background: rgba(248, 113, 113, 0.2);
  color: #fca5a5;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.3);
}

@keyframes inline-editor-spin {
  to { transform: rotate(360deg); }
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.85);
    opacity: 0;
  }
  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}

@keyframes whatsapp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-green-dark));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.38),
    0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1045;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  animation: whatsapp-float 2.6s ease-in-out infinite;
  will-change: transform;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.04);
  filter: brightness(1.05);
  box-shadow:
    0 16px 44px rgba(37, 211, 102, 0.48),
    0 6px 18px rgba(0, 0, 0, 0.28);
  color: #ffffff;
  outline: none;
}

.whatsapp-float:active {
  transform: translateY(-1px) scale(0.98);
}

.whatsapp-float-icon {
  font-size: 32px;
  line-height: 1;
  position: relative;
  z-index: 2;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.whatsapp-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--whatsapp-green);
  opacity: 0.6;
  z-index: 0;
  animation: whatsapp-pulse 2s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float-pulse--delay {
  animation-delay: 1s;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(4, 7, 12, 0.92);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateY(-50%) translateX(8px);
  box-shadow: var(--shadow-soft);
}

.whatsapp-float-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(4, 7, 12, 0.92);
  border: 1px solid;
  border-color: transparent rgba(255, 255, 255, 0.08) rgba(255, 255, 255, 0.08) transparent;
}

.whatsapp-float:hover .whatsapp-float-tooltip,
.whatsapp-float:focus-visible .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media print {
  .whatsapp-float {
    display: none !important;
  }
}

.btn-inline-editor:disabled {
  opacity: 0.78;
  cursor: not-allowed;
  filter: saturate(0.8);
}

.inline-editor-toolbar__selection {
  min-height: 54px;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(0, 191, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: #dce8f7;
  line-height: 1.6;
}

.inline-editor-toolbar__selection strong {
  color: var(--text-primary);
}

body.inline-editor-mode .custom-cursor,
body.inline-editor-mode .custom-cursor-dot {
  opacity: 0;
}

.inline-editor-node--active {
  cursor: pointer;
  outline: 1px dashed rgba(0, 191, 255, 0.38);
  outline-offset: 6px;
  transition: outline-color var(--transition), box-shadow var(--transition);
}

.inline-editor-node--active:hover {
  outline-color: rgba(131, 230, 255, 0.92);
  box-shadow: 0 0 0 8px rgba(0, 191, 255, 0.08);
}

.inline-editor-node--image {
  cursor: pointer;
}

.inline-editor-node--selected {
  outline: 2px solid rgba(131, 230, 255, 0.95);
  outline-offset: 6px;
  box-shadow: 0 0 0 10px rgba(0, 191, 255, 0.12), 0 0 28px rgba(0, 191, 255, 0.22);
}

.inline-editor-node[contenteditable="true"] {
  min-width: 12px;
}

.inline-editor-node[contenteditable="true"]:focus {
  outline-color: rgba(131, 230, 255, 0.95);
}

.inline-editor-node--saving {
  opacity: 0.72;
}

.inline-editor-node--ghost {
  opacity: 0.42;
  filter: saturate(0.55);
  outline-color: rgba(255, 184, 77, 0.55);
}

.inline-editor-node--ghost:hover {
  opacity: 0.72;
  outline-color: rgba(255, 204, 112, 0.92);
  box-shadow: 0 0 0 8px rgba(255, 184, 77, 0.10);
}

.inline-editor-node--ghost.inline-editor-node--selected {
  opacity: 0.94;
}

.inline-editor-ghost-block {
  opacity: 0.58;
  transition: opacity var(--transition), filter var(--transition), box-shadow var(--transition);
  filter: saturate(0.65);
}

.inline-editor-ghost-block:hover {
  opacity: 0.86;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #00bfff, #83e6ff);
  box-shadow: var(--glow-soft);
}

.custom-cursor,
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1400;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.custom-cursor {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 191, 255, 0.28);
  background: rgba(0, 191, 255, 0.08);
  backdrop-filter: blur(8px);
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-neon);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.65);
}

.cursor-hidden .custom-cursor,
.cursor-hidden .custom-cursor-dot {
  opacity: 0;
}

.page-hero {
  position: relative;
  padding: 190px 0 100px;
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
  max-width: 100vw;
}

.breadcrumb-premium {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.page-hero-copy {
  max-width: 720px;
}

.page-hero-visual {
  min-height: 520px;
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.check-list,
.bullet-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
}

.check-list i,
.bullet-list i {
  margin-top: 5px;
  color: var(--blue-neon);
}

.stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.stats-inline strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.contact-card a,
.footer-list a:hover {
  color: var(--text-primary);
}

.contact-form-panel {
  padding: 34px;
}

.form-control-premium,
.form-select-premium {
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #F6FAFF;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.form-control-premium::placeholder {
  color: rgba(230, 240, 255, 0.68);
  font-weight: 450;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  opacity: 1;
}

.form-control-premium::-webkit-input-placeholder {
  color: rgba(230, 240, 255, 0.68);
  font-weight: 450;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  opacity: 1;
}

.form-control-premium::-moz-placeholder {
  color: rgba(230, 240, 255, 0.68);
  font-weight: 450;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  opacity: 1;
}

.form-control-premium:-ms-input-placeholder {
  color: rgba(230, 240, 255, 0.68);
  font-weight: 450;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  opacity: 1;
}

.form-control-premium::-ms-input-placeholder {
  color: rgba(230, 240, 255, 0.68);
  font-weight: 450;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  opacity: 1;
}

.form-select-premium {
  position: relative;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(230, 245, 255, 0.9) 50%),
    linear-gradient(135deg, rgba(230, 245, 255, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 28px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size: 10px 10px, 10px 10px;
  background-repeat: no-repeat;
  padding-right: 52px;
}

.form-select-premium option {
  background: #071018;
  color: #F6FAFF;
  font-weight: 500;
  padding: 10px 14px;
}

.form-control-premium:focus,
.form-select-premium:focus {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.18), 0 0 32px rgba(0, 191, 255, 0.12);
  outline: none;
}

.form-control-premium:focus::placeholder {
  color: rgba(210, 230, 255, 0.8);
}

textarea.form-control-premium {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
  padding-top: 16px;
  padding-bottom: 16px;
}

.map-card {
  min-height: 420px;
  height: 420px;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(0, 191, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.map-card iframe,
.map-card img {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 420px;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 100%;
  overflow-x: clip;
}

.mini-kpi {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.mini-kpi strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
}

.service-category {
  margin-bottom: 48px;
}

.testimonial-swiper .swiper-slide {
  height: auto;
}

.empty-state-note {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.floating-label {
  position: absolute;
  inset: auto 24px 24px auto;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(4, 7, 12, 0.88);
  border: 1px solid rgba(0, 191, 255, 0.18);
}

@media (max-width: 767.98px) {
  .inline-editor-toolbar {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 16px;
  }

  .inline-editor-toolbar__top {
    flex-direction: column;
    align-items: stretch;
  }

  .inline-editor-toolbar__actions {
    grid-template-columns: 1fr;
  }

  .btn-inline-editor {
    grid-column: span 1;
  }
}
