:root {
  --ink: #05070d;
  --ink-2: #0a1020;
  --ink-3: #101a2f;
  --paper: #ffffff;
  --soft: #f3f7f8;
  --soft-2: #e7eef0;
  --muted: #627176;
  --line: rgba(10, 28, 32, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --teal: #00b7ff;
  --teal-2: #00f0ff;
  --blue: #075bff;
  --lime: #b8c7df;
  --silver: #f6f8fb;
  --platinum: #dce4ef;
  --glow-cyan: 0 0 22px rgba(0, 240, 255, 0.14);
  --glow-blue: 0 0 34px rgba(7, 91, 255, 0.13);
  --shadow: 0 22px 70px rgba(0, 41, 120, 0.16);
  --premium-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 20%), rgba(0, 183, 255, 0.08), transparent 22rem),
    var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 18%), rgba(0, 240, 255, 0.13), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(246, 248, 251, 0.05), transparent 24rem);
  opacity: 0.75;
}

.site-shell > * {
  position: relative;
  z-index: 1;
}

.elementor-editor-active .site-shell,
.elementor-editor-preview .site-shell {
  overflow: visible;
}

.container {
  width: calc(100vw - 40px);
  max-width: var(--max);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 15, 18, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--teal-2), var(--silver), var(--blue), transparent);
  box-shadow: var(--glow-cyan);
}

.site-header.is-scrolled {
  background: rgba(5, 15, 18, 0.96);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28), 0 0 36px rgba(0, 183, 255, 0.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 310px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.brand img {
  width: 292px;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.12)) drop-shadow(0 0 26px rgba(0, 183, 255, 0.12));
  transition: transform 0.35s var(--premium-ease), filter 0.35s var(--premium-ease);
}

.brand:hover img,
.brand:focus img {
  transform: translateY(-1px) scale(1.018);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.22)) drop-shadow(0 0 34px rgba(0, 240, 255, 0.24));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 27px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-2), var(--silver), var(--blue));
  box-shadow: var(--glow-cyan);
  transition: width 0.28s var(--premium-ease);
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav a.active::after {
  width: 100%;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.28s var(--premium-ease), box-shadow 0.28s var(--premium-ease), border-color 0.28s ease, background 0.28s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -80%;
  z-index: -1;
  width: 70%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  transition: transform 0.55s var(--premium-ease), opacity 0.28s ease;
}

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

.btn:hover::before,
.btn:focus::before {
  transform: translateX(320%) skewX(-18deg);
  opacity: 1;
}

.btn-primary {
  color: #021315;
  background: linear-gradient(135deg, var(--teal-2), var(--teal) 52%, var(--blue));
  box-shadow: 0 12px 30px rgba(0, 137, 255, 0.2), var(--glow-blue);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), var(--glow-cyan);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(6, 16, 18, 0.2);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(2, 5, 10, 0.2), rgba(3, 7, 13, 0.96)),
    radial-gradient(circle at 18% 12%, rgba(0, 240, 255, 0.18), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(246, 248, 251, 0.12), transparent 26%),
    linear-gradient(135deg, #03070d, #081220 48%, #02050a);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 86%);
  pointer-events: none;
}

.hero::after,
.section-dark::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.06) 48%, transparent 55% 100%);
  transform: translateX(-100%);
  animation: premium-sweep 8s var(--premium-ease) infinite;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 64px;
  padding: 92px 0 80px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 950px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 0 42px rgba(0, 183, 255, 0.1);
}

.hero-copy p,
.page-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s var(--premium-ease), border-color 0.25s ease, box-shadow 0.25s ease;
}

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--glow-cyan);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.brand-visual {
  position: absolute;
  inset: 6% 2% auto auto;
  width: min(72%, 430px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  transition: transform 0.45s var(--premium-ease), box-shadow 0.45s var(--premium-ease), border-color 0.45s ease;
}

.brand-visual:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42), var(--glow-cyan);
}

.growth-panel {
  position: absolute;
  left: 0;
  bottom: 4%;
  width: min(86%, 460px);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 15, 18, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  transition: transform 0.45s var(--premium-ease), box-shadow 0.45s var(--premium-ease), border-color 0.45s ease;
}

.growth-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.32);
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.42), var(--glow-blue);
}

.growth-panel h2 {
  margin: 0 0 12px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.12;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.metric {
  min-height: 92px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric strong {
  display: block;
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.35;
}

.trust-bar {
  color: #fff;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-item {
  padding: 22px 20px;
  border-left: 1px solid var(--line-dark);
}

.trust-item:last-child {
  border-right: 1px solid var(--line-dark);
}

.trust-item strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 240, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(0, 183, 255, 0.08), transparent 38%),
    #02060c;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 42px;
}

.section-head.center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.section-head h2,
.content-block h2,
.cta-panel h2,
.quote-panel h2 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.section-head p,
.content-block p,
.cta-panel p,
.quote-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-head p,
.section-dark .content-block p,
.section-dark .cta-panel p,
.section-dark .quote-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.service-card,
.testimonial-card,
.faq-item,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(6, 16, 18, 0.06);
  transform: translateZ(0);
  transition: transform 0.44s var(--premium-ease), border-color 0.34s ease, box-shadow 0.44s var(--premium-ease), background 0.34s ease;
}

.card::before,
.service-card::before,
.testimonial-card::before,
.faq-item::before,
.contact-card::before,
.quote-panel::before,
.form-card::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(0, 183, 255, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 26%);
  transition: opacity 0.3s ease;
}

.card:hover,
.service-card:hover,
.testimonial-card:hover,
.faq-item:hover,
.contact-card:hover {
  transform: translateY(-9px) scale(1.012);
  border-color: rgba(0, 183, 255, 0.28);
  box-shadow: 0 18px 46px rgba(0, 41, 120, 0.11), var(--glow-cyan);
}

.card:hover::before,
.service-card:hover::before,
.testimonial-card:hover::before,
.faq-item:hover::before,
.contact-card:hover::before,
.quote-panel:hover::before,
.form-card:hover::before,
.cta-panel:hover::before {
  opacity: 1;
}

.contact-grid {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.contact-card {
  min-width: 0;
}

.contact-card .card-link {
  display: block;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
}

.contact-card .card-link::after {
  display: block;
  margin-top: 10px;
  margin-left: 0;
}

.section-dark .card,
.section-dark .service-card,
.section-dark .testimonial-card,
.section-dark .faq-item {
  background: rgba(255, 255, 255, 0.065);
  border-color: var(--line-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.service-card,
.card {
  padding: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: #031315;
  background: linear-gradient(135deg, var(--teal-2), var(--silver) 52%, var(--blue));
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(0, 137, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transition: transform 0.28s var(--premium-ease), box-shadow 0.28s var(--premium-ease), border-color 0.28s ease;
}

.card-icon-svg {
  color: #fff;
  background:
    radial-gradient(circle at 26% 20%, rgba(0, 240, 255, 0.28), transparent 38%),
    linear-gradient(135deg, #08254f, #04142c 58%, #020814) !important;
  border: 1px solid rgba(0, 183, 255, 0.38);
  box-shadow: 0 14px 34px rgba(0, 31, 84, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 0 30px rgba(0, 183, 255, 0.16);
}

.card-icon-svg img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.48));
}

.service-card .card-icon.card-icon-svg,
.card .card-icon.card-icon-svg {
  background:
    radial-gradient(circle at 28% 20%, rgba(0, 240, 255, 0.26), transparent 36%),
    linear-gradient(135deg, #082a5c, #04162f 58%, #020814) !important;
}

.service-card:hover .card-icon-svg {
  transform: translateY(-2px) scale(1.035);
  border-color: rgba(0, 240, 255, 0.52);
  box-shadow: 0 14px 32px rgba(0, 31, 84, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.16), var(--glow-cyan);
}

.service-card h3,
.testimonial-card h3,
.card h3 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.15;
}

.service-card p,
.testimonial-card p,
.card p {
  margin: 13px 0 0;
  color: var(--muted);
}

.section-dark .service-card p,
.section-dark .testimonial-card p,
.section-dark .card p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.service-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.section-dark .service-card li,
.section-dark .check-list li {
  color: rgba(255, 255, 255, 0.72);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-weight: 850;
  transition: color 0.25s ease, transform 0.25s var(--premium-ease);
}

.card-link::after {
  content: "";
  width: 22px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.25s var(--premium-ease);
}

.card-link:hover,
.card-link:focus {
  color: var(--blue);
  transform: translateX(3px);
}

.card-link:hover::after,
.card-link:focus::after {
  transform: scaleX(1.55);
}

.section-dark .card-link {
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow), var(--glow-blue);
  transition: transform 0.38s var(--premium-ease), box-shadow 0.38s var(--premium-ease), border-color 0.38s ease;
}

.feature-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.28);
  box-shadow: 0 20px 54px rgba(0, 41, 120, 0.13), var(--glow-cyan);
}

.feature-panel.light {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.feature-panel .panel-line {
  position: relative;
  overflow: hidden;
  height: 10px;
  margin: 22px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), var(--glow-cyan);
}

.feature-panel .panel-line::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-2), var(--silver), var(--blue));
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.34);
  transform: scaleX(0);
  transform-origin: left center;
  animation: panel-line-fill 3.4s var(--premium-ease) infinite;
}

.feature-panel.light .panel-line {
  background: rgba(5, 7, 13, 0.08);
  box-shadow: inset 0 0 0 1px rgba(5, 7, 13, 0.08), var(--glow-cyan);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.mini-stat {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.28s var(--premium-ease), border-color 0.28s ease, background 0.28s ease;
}

.mini-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.feature-panel.light .mini-stat {
  background: var(--soft);
  border-color: var(--line);
}

.mini-stat strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 27px;
  line-height: 1;
}

.mini-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.feature-panel.light .mini-stat span {
  color: var(--muted);
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 16px;
}

.process-step {
  position: relative;
  counter-increment: process;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.32s var(--premium-ease), border-color 0.32s ease, box-shadow 0.32s var(--premium-ease);
}

.process-step:hover {
  transform: translateX(8px);
  border-color: rgba(0, 183, 255, 0.3);
  box-shadow: 0 18px 54px rgba(0, 41, 120, 0.12);
}

.section-dark .process-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-dark);
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  color: #031315;
  background: linear-gradient(135deg, var(--teal-2), var(--silver), var(--blue));
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 137, 255, 0.24);
}

.process-step h3 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 22px;
}

.process-step p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section-dark .process-step p {
  color: rgba(255, 255, 255, 0.68);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.22s var(--premium-ease), border-color 0.22s ease, color 0.22s ease;
}

.tag:hover {
  transform: translateY(-2px);
  color: var(--blue);
  border-color: rgba(0, 183, 255, 0.34);
}

.testimonial-card {
  padding: 26px;
}

.stars {
  color: #08a99f;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.testimonial-author {
  margin-top: 20px;
  color: var(--ink);
  font-weight: 850;
}

.section-dark .testimonial-author {
  color: #fff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 16% 14%, rgba(0, 240, 255, 0.14), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.09), transparent 26%),
    linear-gradient(180deg, #03070d, #081220);
}

.page-hero-inner {
  padding: 82px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
}

.service-nav {
  position: relative;
  z-index: 3;
  margin-top: -26px;
}

.service-nav-inner {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.service-nav-inner a {
  white-space: nowrap;
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.service-nav-inner a.active,
.service-nav-inner a:hover,
.service-nav-inner a:focus {
  color: var(--ink);
  background: var(--soft);
  box-shadow: inset 0 0 0 1px rgba(0, 183, 255, 0.14);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 850;
}

.faq-question::after {
  display: none;
}

.faq-question::before {
  display: none;
}

.faq-question > span:first-child {
  padding-right: 10px;
}

.faq-question > span:last-child {
  position: relative;
  display: inline-flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  color: transparent;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(135deg, var(--teal-2), var(--blue));
  box-shadow: 0 10px 28px rgba(0, 137, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition: transform 0.32s var(--premium-ease), box-shadow 0.32s var(--premium-ease), background 0.32s ease;
}

.faq-question > span:last-child::before,
.faq-question > span:last-child::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.32s var(--premium-ease), opacity 0.24s ease;
}

.faq-question > span:last-child::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-question > span:last-child {
  transform: rotate(180deg) scale(1.03);
  background: linear-gradient(135deg, var(--blue), var(--teal-2));
  box-shadow: 0 9px 22px rgba(0, 137, 255, 0.2), var(--glow-cyan);
}

.faq-item.is-open .faq-question > span:last-child::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.section-dark .faq-question {
  color: #fff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-4px);
  transition: grid-template-rows 0.34s var(--premium-ease), opacity 0.28s ease, transform 0.34s var(--premium-ease);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.section-dark .faq-answer p {
  color: rgba(255, 255, 255, 0.68);
}

.quote-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.quote-panel,
.form-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.34s var(--premium-ease), box-shadow 0.34s var(--premium-ease), border-color 0.34s ease;
}

.quote-panel:hover,
.form-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 183, 255, 0.24);
  box-shadow: 0 20px 54px rgba(0, 41, 120, 0.1), var(--glow-cyan);
}

.quote-panel {
  padding: 34px;
}

.form-card {
  padding: 26px;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fafdfe;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 138px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0, 214, 201, 0.78);
  box-shadow: 0 0 0 4px rgba(0, 214, 201, 0.12);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #087c74;
  font-weight: 800;
  font-size: 14px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: #fff;
  background:
    radial-gradient(circle at 72% 22%, rgba(0, 240, 255, 0.13), transparent 26%),
    #02060c;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.14), transparent 40%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--glow-blue);
}

.roas-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 240, 255, 0.22), transparent 28%),
    radial-gradient(circle at 16% 86%, rgba(7, 91, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, #07142b, #020712 72%);
  border: 1px solid rgba(0, 183, 255, 0.2);
  box-shadow: 0 28px 90px rgba(0, 31, 84, 0.25), var(--glow-blue);
}

.roas-browser {
  padding: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 18%, rgba(7, 91, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(5, 20, 44, 0.1);
  box-shadow: 0 28px 70px rgba(0, 31, 84, 0.16), 0 0 70px rgba(0, 183, 255, 0.08);
}

.roas-browser::before,
.roas-browser::after {
  display: none;
}

.roas-browser-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 240, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #071a34, #020713);
  border-radius: var(--radius) var(--radius) 0 0;
}

.roas-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.roas-browser-bar span:nth-child(1) {
  background: #ff6b57;
}

.roas-browser-bar span:nth-child(2) {
  background: #ffba3b;
}

.roas-browser-bar span:nth-child(3) {
  background: #2bd47d;
}

.roas-browser-bar strong {
  margin-left: auto;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roas-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 12px;
}

.roas-dashboard-head > div:first-child {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 12px;
}

.meta-mark {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 28% 18%, rgba(0, 240, 255, 0.34), transparent 34%),
    linear-gradient(135deg, #0a57ff, #12c7e9 58%, #05152d);
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 31, 84, 0.22), 0 0 32px rgba(0, 183, 255, 0.16);
}

.meta-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.38));
}

.roas-dashboard-head strong {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.roas-dashboard-head small {
  color: var(--muted);
  font-weight: 750;
}

.roas-score.floating {
  position: absolute;
  right: -18px;
  top: 53%;
  z-index: 3;
  min-width: 126px;
  padding: 18px;
  color: var(--ink);
  text-align: left;
  background: #fff;
  border: 1px solid rgba(5, 20, 44, 0.08);
  box-shadow: 0 24px 56px rgba(0, 31, 84, 0.18);
}

.roas-score.floating span {
  color: var(--ink);
  text-shadow: none;
}

.roas-score.floating em,
.roas-kpi em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 7px;
  color: #087c54;
  background: rgba(27, 210, 124, 0.12);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.roas-dashboard-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px;
  gap: 18px;
  padding: 14px 24px 20px;
}

.roas-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.roas-kpi {
  position: relative;
  min-height: 150px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(5, 20, 44, 0.08);
  box-shadow: 0 16px 38px rgba(0, 31, 84, 0.08);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.7s var(--premium-ease), opacity 0.7s ease, box-shadow 0.35s ease;
}

.roas-panel.is-animated .roas-kpi {
  opacity: 1;
  transform: translateY(0);
}

.roas-panel.is-animated .roas-kpi:nth-child(2) {
  transition-delay: 0.08s;
}

.roas-panel.is-animated .roas-kpi:nth-child(3) {
  transition-delay: 0.16s;
}

.roas-panel.is-animated .roas-kpi:nth-child(4) {
  transition-delay: 0.24s;
}

.roas-kpi > span {
  display: block;
  color: #233146;
  font-weight: 850;
}

.roas-kpi strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.roas-kpi em {
  position: absolute;
  right: 16px;
  top: 52px;
}

.roas-spark {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  width: calc(100% - 36px);
  height: 50px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 183, 255, 0.1), rgba(0, 183, 255, 0.03));
}

.roas-spark path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.24));
  stroke-dasharray: var(--path-length, 260);
  stroke-dashoffset: var(--path-length, 260);
  transition: stroke-dashoffset 1.4s var(--premium-ease) 0.15s;
}

.roas-panel.is-animated .roas-spark path {
  stroke-dashoffset: 0;
}

.roas-kpi.accent-orange .roas-spark {
  background: linear-gradient(180deg, rgba(255, 186, 59, 0.16), rgba(255, 186, 59, 0.04));
}

.roas-kpi.accent-orange .roas-spark path {
  stroke: #ff9f1c;
  filter: drop-shadow(0 0 8px rgba(255, 159, 28, 0.22));
}

.roas-kpi.accent-blue .roas-spark {
  background: linear-gradient(180deg, rgba(7, 91, 255, 0.14), rgba(7, 91, 255, 0.04));
}

.roas-kpi.accent-blue .roas-spark path {
  stroke: var(--blue);
}

.roas-target-wrap {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 318px;
}

.roas-target {
  position: relative;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7fbff, #dbeafe);
  box-shadow: 0 24px 50px rgba(0, 31, 84, 0.18);
}

.roas-target span {
  position: absolute;
  inset: var(--ring-inset);
  border-radius: 50%;
  border: 12px solid var(--ring-color);
}

.roas-target span:nth-child(1) {
  --ring-inset: 0;
  --ring-color: #2f86ff;
}

.roas-target span:nth-child(2) {
  --ring-inset: 24px;
  --ring-color: #fff;
}

.roas-target span:nth-child(3) {
  --ring-inset: 48px;
  --ring-color: #2f86ff;
}

.roas-target span:nth-child(4) {
  --ring-inset: 68px;
  --ring-color: #fff;
  border-width: 8px;
}

.roas-target i {
  position: absolute;
  left: 76px;
  top: 6px;
  width: 10px;
  height: 132px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8b28, #db3b18);
  box-shadow: 0 8px 18px rgba(219, 59, 24, 0.24);
  transform: rotate(43deg);
  transform-origin: 50% 78%;
}

.roas-target i::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -15px;
  width: 26px;
  height: 28px;
  background: #ff8b28;
  clip-path: polygon(50% 0, 100% 100%, 50% 74%, 0 100%);
}

.roas-panel.is-animated .roas-target {
  animation: target-pop 0.95s var(--premium-ease) both;
}

.roas-mini-card {
  position: absolute;
  left: -14px;
  bottom: 0;
  min-width: 118px;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 31, 84, 0.14);
  border: 1px solid rgba(5, 20, 44, 0.08);
}

.roas-mini-card strong {
  display: block;
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.roas-mini-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.roas-detail-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 24px 24px;
  margin: 0;
}

.roas-detail-grid.compact div {
  background: rgba(2, 8, 20, 0.04);
  border-color: rgba(5, 20, 44, 0.08);
}

.roas-detail-grid.compact span {
  color: var(--muted);
}

.roas-detail-grid.compact strong {
  color: var(--ink);
}

.roas-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 240, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 86%);
}

.roas-panel::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -80%;
  z-index: 0;
  width: 46%;
  transform: skewX(-18deg);
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.16), rgba(246, 248, 251, 0.12), transparent);
  animation: roas-dashboard-sheen 5.8s var(--premium-ease) infinite;
}

.roas-panel > * {
  position: relative;
  z-index: 1;
}

.roas-panel-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.roas-panel h3 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.05;
}

.roas-panel-top p {
  max-width: 360px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.roas-score {
  min-width: 108px;
  padding: 14px;
  border-radius: var(--radius);
  text-align: right;
  background:
    radial-gradient(circle at 22% 18%, rgba(0, 240, 255, 0.24), transparent 42%),
    rgba(3, 14, 31, 0.82);
  border: 1px solid rgba(0, 240, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 42px rgba(0, 31, 84, 0.24);
}

.roas-score span {
  display: block;
  color: var(--teal-2);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.32);
}

.roas-score small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.roas-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.roas-detail-grid div {
  padding: 13px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.roas-detail-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roas-detail-grid strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
}

.roas-chart {
  position: relative;
  height: 260px;
  padding: 26px 16px 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 240, 255, 0.06), rgba(7, 91, 255, 0.04)),
    rgba(2, 8, 20, 0.78);
  border: 1px solid rgba(0, 183, 255, 0.16);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.roas-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.78;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 22%, rgba(0, 240, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(0, 240, 255, 0.05), transparent);
}

.roas-grid-line {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
}

.roas-grid-line:nth-child(1) {
  top: 25%;
}

.roas-grid-line:nth-child(2) {
  top: 50%;
}

.roas-grid-line:nth-child(3) {
  top: 75%;
}

.roas-bars {
  position: absolute;
  inset: 26px 16px 34px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
}

.roas-bar {
  position: relative;
  height: var(--bar-height, 8%);
  min-height: 12px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #f6f8fb 0%, var(--teal-2) 22%, var(--teal) 56%, var(--blue) 100%);
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.54);
  transition: height 1.45s var(--premium-ease), filter 0.35s ease;
}

.roas-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 38%);
  transition: opacity 0.5s ease;
}

.roas-panel.is-animated .roas-bar::before {
  opacity: 0.5;
}

.roas-bar span {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
}

.roas-line {
  position: absolute;
  inset: 22px 16px 36px;
  width: calc(100% - 32px);
  height: calc(100% - 58px);
  overflow: visible;
}

.roas-line path {
  fill: none;
  stroke: url(#roasLineGradient);
  stroke-width: 6;
  stroke-linecap: round;
  filter: drop-shadow(0 0 13px rgba(0, 240, 255, 0.56));
  stroke-dasharray: var(--path-length, 900);
  stroke-dashoffset: var(--path-length, 900);
  transition: stroke-dashoffset 1.95s var(--premium-ease) 0.28s;
}

.roas-panel.is-animated .roas-line path {
  stroke-dashoffset: 0;
}

.roas-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.roas-metrics div {
  padding: 14px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.07), transparent 55%),
    rgba(3, 14, 31, 0.74);
  border: 1px solid rgba(0, 183, 255, 0.14);
  transition: transform 0.35s var(--premium-ease), border-color 0.35s ease, box-shadow 0.35s ease;
}

.roas-panel.is-animated .roas-metrics div {
  border-color: rgba(0, 240, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.roas-metrics strong {
  display: block;
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 27px;
  line-height: 1;
}

.roas-metrics span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #050d0f;
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  padding: 58px 0 38px;
}

.footer-logo {
  width: 330px;
  max-width: 100%;
  margin-bottom: 18px;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 18px;
}

.footer-col p {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 9px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 16px;
  border-radius: 999px;
  color: #051315;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  box-shadow: 0 12px 34px rgba(0, 137, 255, 0.24);
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.28s var(--premium-ease), box-shadow 0.28s var(--premium-ease);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 42px rgba(0, 137, 255, 0.28), var(--glow-cyan);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.982);
  filter: blur(6px);
  transition:
    opacity 0.82s var(--premium-ease) var(--reveal-delay, 0ms),
    transform 0.82s var(--premium-ease) var(--reveal-delay, 0ms),
    filter 0.82s var(--premium-ease) var(--reveal-delay, 0ms);
}

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

.elementor-editor-active .reveal,
.elementor-editor-preview .reveal {
  opacity: 1;
  transform: none;
}

.nexora-builder-main {
  background: var(--paper);
}

.nexora-builder-content {
  min-height: 42vh;
}

.nexora-builder-content > *:first-child {
  margin-top: 0;
}

.nexora-builder-content > *:last-child {
  margin-bottom: 0;
}

.brand-visual,
.growth-panel,
.feature-panel,
.quote-panel {
  animation: soft-float 7s var(--premium-ease) infinite;
}

.growth-panel,
.quote-panel {
  animation-delay: -2.4s;
}

.brand-visual:hover,
.growth-panel:hover,
.feature-panel:hover,
.quote-panel:hover {
  animation: none;
}

.nexora-builder-content .alignwide,
.nexora-builder-content .alignfull > .container,
.elementor-page .nexora-builder-content .elementor-section.elementor-section-boxed > .elementor-container,
.elementor-page .nexora-builder-content .e-con-boxed > .e-con-inner {
  max-width: var(--max);
}

.elementor-page .nexora-builder-content .elementor-widget-heading .elementor-heading-title {
  font-family: "Outfit", Arial, sans-serif;
  letter-spacing: 0;
}

.elementor-page .nexora-builder-content .elementor-button {
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
}

.elementor-page .nexora-builder-content .elementor-widget-text-editor {
  color: var(--muted);
}

.privacy-content {
  max-width: 860px;
}

.privacy-content h2 {
  margin-top: 42px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 30px;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
}

@keyframes premium-sweep {
  0%, 58% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(110%);
  }
}

@keyframes soft-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes panel-line-fill {
  0% {
    opacity: 0.72;
    transform: scaleX(0);
  }

  62% {
    opacity: 1;
    transform: scaleX(1);
  }

  88% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: 0.2;
    transform: scaleX(0);
  }
}

@keyframes roas-dashboard-sheen {
  0%, 58% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(420%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes target-pop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.86) rotate(-4deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .brand-visual,
  .growth-panel,
  .feature-panel,
  .quote-panel {
    animation: none;
  }

  .feature-panel .panel-line::before {
    width: 100%;
    animation: none;
    transform: none;
  }

  .roas-bar {
    height: var(--bar-target, 70%);
    transition: none;
  }

  .roas-line path {
    stroke-dashoffset: 0;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-inner,
  .split,
  .quote-wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

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

  .roas-dashboard-body {
    grid-template-columns: 1fr;
  }

  .roas-target-wrap {
    min-height: 210px;
  }

  .roas-score.floating {
    position: relative;
    right: auto;
    top: auto;
  }
}

@media (max-width: 1280px) {
  .brand {
    min-width: 250px;
  }

  .brand img {
    width: 246px;
  }

  .main-nav {
    gap: 12px;
    font-size: 12px;
  }
}

@media (max-width: 860px) {
  .container {
    width: calc(100vw - 28px);
    max-width: var(--max);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 218px;
    max-height: 58px;
  }

  .brand {
    min-width: 230px;
    padding: 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    padding: 14px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(5, 15, 18, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px;
    border-radius: var(--radius);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus,
  .main-nav a.active {
    background: rgba(255, 255, 255, 0.07);
  }

  .hero-inner {
    padding: 70px 0 60px;
    gap: 34px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .brand-visual {
    width: 72%;
  }

  .growth-panel {
    width: 90%;
    padding: 18px;
  }

  .metric-grid,
  .trust-inner,
  .section-head,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .section {
    padding: 70px 0;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

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

  .roas-panel-top,
  .roas-metrics {
    grid-template-columns: 1fr;
  }

  .roas-dashboard-head,
  .roas-card-grid,
  .roas-detail-grid.compact {
    grid-template-columns: 1fr;
  }

  .roas-dashboard-head {
    display: grid;
  }

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

  .roas-panel-top {
    display: grid;
  }

  .roas-score {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .hero-copy h1,
  .page-hero h1 {
    width: calc(100vw - 28px);
    max-width: 100%;
    font-size: 34px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-copy p,
  .page-hero p {
    width: calc(100vw - 28px);
    max-width: 100%;
    font-size: 16px;
  }

  .hero-copy,
  .hero-actions,
  .hero-points,
  .hero-visual,
  .growth-panel {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-actions,
  .section-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
  }

  .brand-visual {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    right: auto;
  }

  .growth-panel {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    overflow: hidden;
  }

  .growth-panel h2 {
    font-size: 25px;
    overflow-wrap: anywhere;
  }

  .pill {
    max-width: 100%;
    white-space: normal;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .metric-grid,
  .mini-stats,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

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

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .roas-panel {
    padding: 20px;
  }

  .roas-browser {
    padding: 0;
  }

  .roas-dashboard-head,
  .roas-dashboard-body,
  .roas-detail-grid.compact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .roas-chart {
    height: 220px;
  }

  .roas-bars {
    gap: 7px;
  }

  .roas-detail-grid {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 76px;
  }
}
