/* ---- base/_fonts.scss ---- */
@font-face {
  font-family: "Estedad";
  src: url("../fonts/Estedad/Estedad.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AbrText";
  src: url("../fonts/AbrText/AbrText-2.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF;
}

@font-face {
  font-family: "AbrText";
  src: url("../fonts/AbrText/AbrText-2.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF;
}

@font-face {
  font-family: "AbrText";
  src: url("../fonts/AbrText/AbrText-3.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF;
}

@font-face {
  font-family: "AbrText";
  src: url("../fonts/AbrText/AbrText-4.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF;
}

@font-face {
  font-family: "AbrText";
  src: url("../fonts/AbrText/AbrText-5.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF;
}

@font-face {
  font-family: "AbrText";
  src: url("../fonts/Estedad/Estedad.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF;
}

/* ---- base/_tokens.scss ---- */
:root {
  --primary: #19bac7;
  --primary-dark: #0f8f98;
  --ink: #3a3f46;
  --muted: #607082;
  --bg: #f2fbfc;
  --card: #ffffff;
  --line: #d7ebee;
  --fw-base: 450;
  --text-sm: 0.9rem;
  --text-md: 0.95rem;
  --text-lg: 1.05rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html[data-theme="dark"] {
  --ink: #eef8f9;
  --muted: #bfd1d6;
  --bg: #08181b;
  --card: #112a2f;
  --line: #2a454b;
  --primary: #29c8d4;
  --primary-dark: #7ce3ea;
}

html[data-theme="dark"] .lead,
html[data-theme="dark"] .card p,
html[data-theme="dark"] .stat-label,
html[data-theme="dark"] .footer-desc,
html[data-theme="dark"] .footer-links a,
html[data-theme="dark"] .faq-content .lead,
html[data-theme="dark"] .testimonial-role,
html[data-theme="dark"] .testimonial-text {
  color: var(--muted);
}

html[data-theme="dark"] .section-head i,
html[data-theme="dark"] .box-icon,
html[data-theme="dark"] .card i,
html[data-theme="dark"] .plan-title i,
html[data-theme="dark"] .trust-item i,
html[data-theme="dark"] .quote {
  color: #88e9ef;
}

html[data-theme="dark"] .mobile-sticky-cta a,
html[data-theme="dark"] .footer-mobile-actions a,
html[data-theme="dark"] .control-btn,
html[data-theme="dark"] .phone {
  color: var(--ink);
  border-color: var(--line);
  background: color-mix(in srgb, var(--card) 95%, transparent);
}

/* ---- base/_reset.scss ---- */
html {
  font-family: "AbrText", "Estedad", sans-serif;
  scroll-behavior: smooth;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Hide scrollbar globally (while keeping scroll behavior) */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0;
  height: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

button,
input,
select,
textarea,
option {
  font: inherit;
}

body {
  margin: 0;
  font-weight: var(--fw-base);
  color: var(--ink);
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(25, 186, 199, 0.12) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 0%,
      rgba(105, 173, 255, 0.1) 0%,
      transparent 35%
    ),
    var(--bg);
  line-height: 1.85;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
  overflow-x: hidden;
}

p,
li,
td,
th,
label,
input,
select,
textarea,
.lead,
.footer-desc,
.footer-links a {
  font-weight: var(--fw-base);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(8, 24, 27, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

body.nav-open-state::after {
  opacity: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -10%;
  z-index: -1;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(25, 186, 199, 0.16),
      transparent 35%
    ),
    radial-gradient(circle at 80% 60%, rgba(25, 186, 199, 0.1), transparent 32%);
  animation: auraMove 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

[id] {
  scroll-margin-top: 120px;
}

/* ---- layout/_header.scss ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 220;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.topbar {
  border-bottom: 1px solid var(--line);
  font-size: var(--text-sm);
  color: var(--muted);
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.menu-toggle {
  display: none;
}

.nav-overlay {
  display: none;
}

.nav-close {
  display: none;
}

.nav-head {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.15rem;
}

.brand i {
  font-size: 1.755rem;
  color: var(--primary);
}

.brand-text {
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  font-size: 1.35rem;
}

html[lang="fa"] .header .brand-text,
html[lang="fa"] .nav-head .brand-text {
  position: relative;
  word-spacing: -0.24em;
  padding-left: 0.12em;
}

html[lang="en"] .brand-text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--text-md);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.nav a:hover {
  color: var(--primary-dark);
}

.nav a.active {
  background: color-mix(in srgb, var(--primary) 18%, transparent);
  color: var(--primary-dark);
  transform: none;
  box-shadow: 0 8px 16px -14px rgba(6, 86, 95, 0.9);
}

.nav-head .brand {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--ink) !important;
  border-radius: 0 !important;
  transform: none !important;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.phone,
.control-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.625rem 0.875rem;
  font-size: var(--text-sm);
  min-height: 40px;
  margin: 0;
}

.control-btn.icon-only {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  cursor: pointer;
}

.phone {
  direction: ltr;
}

.phone i,
.control-btn i {
  color: var(--primary-dark);
}

.lang-dropdown {
  position: relative;
}

.lang-current {
  cursor: pointer;
}

.lang-flag {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid color-mix(in srgb, var(--line) 75%, #4a4f57);
  overflow: hidden;
}

.lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: max-content;
  min-width: max-content;
  max-width: calc(100vw - 20px);
  margin: 0;
  padding: 0.3rem;
  list-style: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 24px -20px rgba(15, 77, 90, 0.7);
  display: none;
}

html[dir="ltr"] .lang-menu {
  left: 0;
  right: auto;
}

.lang-dropdown.open .lang-menu {
  display: block;
}

.lang-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-align: start;
  cursor: pointer;
  line-height: 1.2;
  min-height: 40px;
}

.lang-option span:last-child {
  display: inline-flex;
  align-items: center;
}

.lang-option:hover {
  background: color-mix(in srgb, var(--primary) 12%, transparent);
}

.btn {
  border: none;
  border-radius: var(--radius-md);
  padding: 0.625rem 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-md);
  transition: 0.2s;
  min-height: 40px;
  margin: 0;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
}

/* ---- sections/_hero.scss ---- */
.hero {
  padding: 4.4rem 0 3.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: center;
}

@media (min-width: 841px) {
  .hero-grid {
    align-items: stretch;
  }

  .panel.vector-box {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .lottie-wrap {
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }
}

.eyebrow {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  line-height: 1.45;
}

.hero h1 {
  font-size: clamp(1.75rem, 2.45vw, 2.45rem);
  line-height: 1.46;
}

.hero h1.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-inline-start: 0.2rem;
  vertical-align: -0.08em;
  background: var(--primary-dark);
  animation: typingCaret 0.9s steps(1, end) infinite;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.trust-bar {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.trust-item {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--line));
  background: color-mix(in srgb, var(--card) 94%, transparent);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  min-width: 0;
  padding: 0.25rem 0.38rem;
}

.trust-item i {
  font-size: 0.82rem;
  flex: 0 0 auto;
}

.trust-item span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: 0 24px 40px -30px rgba(15, 77, 90, 0.48);
}

.panel.vector-box {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.vector-box {
  position: relative;
  overflow: hidden;
  animation: floatPanel 5s ease-in-out infinite;
}

.vector-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.45rem 0.6rem;
  font-size: 0.84rem;
  color: var(--primary-dark);
}

html[dir="ltr"] .vector-badge {
  left: 14px;
  right: auto;
}

.lottie-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  overflow: visible;
  background: transparent;
  border: 0;
}

html[data-theme="dark"] .lottie-wrap {
  background: transparent;
}

.lottie-canvas {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.15);
  transform-origin: center center;
  filter: none;
}

html[data-theme="dark"] .lottie-canvas {
  filter: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  text-align: center;
}

.stat-value {
  display: block;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1.18rem;
}
.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---- sections/_features.scss ---- */
.features {
  padding: 0.5rem 0 3.6rem;
}
.features h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 1.15rem;
  margin-bottom: 1rem;
}

.benefit-item {
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  text-align: center;
}

.benefit-item strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.benefit-item span {
  color: var(--muted);
  font-size: var(--text-sm);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 30px -28px rgba(6, 86, 95, 0.85);
}

.card i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary-dark);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--primary) 20%, transparent) 0%,
    color-mix(in srgb, var(--primary) 10%, transparent) 100%
  );
  border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--line));
  box-shadow: 0 10px 18px -16px rgba(6, 86, 95, 0.9);
}
.card h3 {
  margin: 0.7rem 0 0.35rem;
  font-size: var(--text-lg);
  font-weight: 700;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-md);
}

.cta {
  margin-top: 1rem;
  background: linear-gradient(
    120deg,
    rgba(25, 186, 199, 0.16) 0%,
    color-mix(in srgb, var(--card) 90%, #fff) 100%
  );
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- sections/_footer.scss ---- */
.footer {
  margin-top: 0.8rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bg) 88%, transparent) 0%,
    color-mix(in srgb, var(--primary) 7%, var(--bg)) 100%
  );
}

.footer-main {
  padding: 2rem 0 1.2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer-title {
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-weight: 700;
  font-size: var(--text-md);
}

.footer-desc {
  color: var(--muted);
  margin: 0;
  font-size: var(--text-sm);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--text-sm);
}

.footer-links a:hover {
  color: var(--primary-dark);
}

.footer-socials {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  text-decoration: none;
  background: color-mix(in srgb, var(--card) 92%, transparent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 1.15rem;
  font-size: var(--text-sm);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-mobile {
  display: none;
}

/* ---- sections/_sections.scss ---- */
.cta-title {
  font-size: var(--text-lg);
  font-weight: 700;
}

.section {
  padding: 0.5rem 0 3.6rem;
}

.section#plans {
  position: relative;
  z-index: 70;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.section-head i {
  color: var(--primary-dark);
  font-size: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 26%, var(--line));
}

/* ---- sections/_plans.scss ---- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.plan {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.plan::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  left: -46px;
  top: -56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  pointer-events: none;
}

.plan.featured {
  border-color: color-mix(in srgb, var(--primary) 50%, var(--line));
  box-shadow: 0 18px 30px -26px rgba(6, 86, 95, 0.85);
}

.plan .price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.plan-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.plan-title i {
  color: var(--primary);
}

.stack {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: var(--text-sm);
}

.stack li + li {
  margin-top: 0.3rem;
}

.stack li {
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 16%, var(--line));
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.55rem;
}

.coverage-grid,
.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.compare-wrap {
  margin-top: 1rem;
  background: color-mix(in srgb, var(--card) 94%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 0.72rem 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: var(--text-sm);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: start;
  font-weight: 700;
}

.compare-table thead th {
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--ink);
  font-weight: 800;
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-yes {
  color: #17b26a;
  font-weight: 800;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.compare-yes.fa-duotone {
  --fa-primary-color: #17b26a;
  --fa-secondary-color: #17b26a;
  --fa-secondary-opacity: 1;
}

.compare-no {
  color: #e15454;
  font-weight: 800;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.compare-no.fa-duotone {
  --fa-primary-color: #e15454;
  --fa-secondary-color: #e15454;
  --fa-secondary-opacity: 1;
}

html[data-theme="dark"] .compare-yes {
  color: #38d98a;
}

html[data-theme="dark"] .compare-yes.fa-duotone {
  --fa-primary-color: #38d98a;
  --fa-secondary-color: #38d98a;
  --fa-secondary-opacity: 1;
}

html[data-theme="dark"] .compare-no {
  color: #ff7b7b;
}

html[data-theme="dark"] .compare-no.fa-duotone {
  --fa-primary-color: #ff7b7b;
  --fa-secondary-color: #ff7b7b;
  --fa-secondary-opacity: 1;
}

.compare-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: inherit;
}

/* ---- sections/_calculator.scss ---- */
.plan-calculator {
  margin-top: 1rem;
  background: color-mix(in srgb, var(--card) 94%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  position: relative;
  z-index: 60;
  overflow: visible;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.usecase-card {
  border: 1px solid color-mix(in srgb, var(--primary) 20%, var(--line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--card) 95%, transparent);
  padding: 0.6rem;
}

.usecase-title {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 700;
}

.usecase-desc {
  margin: 0.22rem 0 0.55rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

.usecase-btn {
  width: 100%;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary-dark);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0.8rem;
  align-items: start;
  position: relative;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.calc-field {
  display: grid;
  gap: 0.35rem;
  position: relative;
}

.calc-field label {
  font-size: var(--text-sm);
  color: var(--muted);
}

.calc-field input,
.calc-field select {
  min-height: 42px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 96%, transparent);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  color: var(--ink);
}

.custom-select {
  position: relative;
  z-index: 2;
}

.custom-select.open {
  z-index: 80;
}

.lead-form .custom-select.open {
  z-index: 320;
}

.calc-field .custom-select select,
.lead-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-inline-end: 2rem;
}

.custom-select.is-ready::after {
  display: none;
}

.custom-select.is-ready select {
  display: none;
}

.cs-trigger {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 96%, transparent);
  border-radius: 10px;
  padding: 0.45rem 2rem 0.45rem 0.6rem;
  color: var(--ink);
  text-align: start;
  cursor: pointer;
  position: relative;
}

.cs-trigger::after {
  content: "\f078";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--primary-dark);
  position: absolute;
  inset-inline-start: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

html[dir="ltr"] .cs-trigger {
  padding: 0.45rem 0.6rem 0.45rem 2rem;
}

html[dir="ltr"] .cs-trigger::after {
  inset-inline-start: auto;
  inset-inline-end: 0.75rem;
}

.custom-select.open .cs-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.cs-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  left: 0;
  margin: 0;
  padding: 0.25rem;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--card) 96%, transparent);
  box-shadow: 0 16px 24px -18px rgba(5, 52, 60, 0.85);
  max-height: 220px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
  clip-path: inset(0 round 10px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: none;
  z-index: 120;
}

.cs-menu::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none;
}

.custom-select.open .cs-menu {
  display: block;
}

.compare-scroll::-webkit-scrollbar,
.cs-menu::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.compare-scroll::-webkit-scrollbar-track,
.cs-menu::-webkit-scrollbar-track {
  background: transparent;
  margin-block: 3px;
}

.compare-scroll::-webkit-scrollbar-thumb,
.cs-menu::-webkit-scrollbar-thumb {
  border: 1px solid transparent;
  background-clip: padding-box;
}

.cs-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  min-height: 36px;
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
  text-align: start;
  cursor: pointer;
}

.cs-option:hover {
  background: color-mix(in srgb, var(--primary) 12%, transparent);
}

.cs-option.active {
  background: color-mix(in srgb, var(--primary) 16%, transparent);
  color: var(--primary-dark);
}

.calc-field small {
  color: var(--muted);
  font-size: 0.82rem;
}

.calc-field-inline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.checkbox-chip {
  position: relative;
  display: inline-flex;
}

.checkbox-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-chip span {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.35rem 0.78rem;
  background: color-mix(in srgb, var(--card) 96%, transparent);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  font-size: 0.86rem;
  line-height: 1.2;
  cursor: pointer;
  transition: 0.2s ease;
}

.checkbox-chip span::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--primary) 45%, var(--line));
  background: color-mix(in srgb, var(--card) 92%, transparent);
}

.checkbox-chip input:checked + span {
  border-color: color-mix(in srgb, var(--primary) 54%, var(--line));
  background: color-mix(in srgb, var(--primary) 16%, transparent);
  color: var(--primary-dark);
  box-shadow: 0 10px 18px -16px rgba(6, 86, 95, 0.9);
}

.checkbox-chip input:checked + span::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  font-size: 0.62rem;
  color: #fff;
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.calc-result {
  border: 1px solid color-mix(in srgb, var(--primary) 26%, var(--line));
  background: color-mix(in srgb, var(--primary) 11%, transparent);
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
}

.calc-result strong {
  color: var(--primary-dark);
}

.calc-prices {
  margin-top: 0.4rem;
  display: grid;
  gap: 0.18rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.calc-price-main {
  margin-top: 0.3rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* ---- sections/_contact.scss ---- */
.contact-lead {
  margin-top: 1rem;
  position: relative;
  z-index: 90;
  overflow: visible;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.8rem;
  position: relative;
  z-index: 2;
}

.lead-field {
  display: grid;
  gap: 0.3rem;
  position: relative;
  z-index: auto;
}

.lead-field:focus-within {
  z-index: 340;
}

.lead-field label {
  font-size: var(--text-sm);
  color: var(--muted);
}

.lead-field input,
.lead-field select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 96%, transparent);
  color: var(--ink);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
}

.lead-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-inline-end: 2rem;
  background-image:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--primary) 10%, transparent),
      color-mix(in srgb, var(--primary) 4%, transparent)
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230f8f98' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-size:
    100% 100%,
    14px 14px;
  background-position:
    center,
    0.75rem center;
}

html[dir="ltr"] .lead-field select {
  background-position:
    center,
    calc(100% - 0.75rem) center;
}

.lead-field select:hover {
  border-color: color-mix(in srgb, var(--primary) 44%, var(--line));
}

.lead-field select:focus-visible,
.lead-field input:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--primary) 62%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 16%, transparent);
}

.lead-field select option {
  background: var(--card);
  color: var(--ink);
}

.lead-form .form-actions {
  grid-column: 1 / -1;
}

.lead-status {
  margin-top: 0.6rem;
  font-size: var(--text-sm);
  color: var(--muted);
  min-height: 1.2em;
}

.lead-status.success {
  color: #1a9b65;
}

.lead-status.error {
  color: #cc5a5a;
}

.lead-field.has-error input,
.lead-field.has-error select,
.lead-field.has-error .cs-trigger {
  border-color: #cc5a5a !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, #cc5a5a 20%, transparent);
}

.lead-error {
  min-height: 1.1em;
  font-size: 0.8rem;
  color: #cc5a5a;
}

.toast-stack {
  position: fixed;
  top: auto;
  bottom: 12px;
  right: 12px;
  z-index: 500;
  display: grid;
  gap: 0.5rem;
  pointer-events: none;
}

html[dir="ltr"] .toast-stack {
  left: 12px;
  right: auto;
}

.toast-item {
  min-width: 240px;
  max-width: 340px;
  border-radius: 12px;
  padding: 0.62rem 0.72rem;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 90%, transparent);
  box-shadow: 0 18px 30px -24px rgba(5, 49, 56, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  pointer-events: auto;
  animation: toastIn 0.28s ease;
}

.toast-item i {
  color: var(--primary-dark);
}

.toast-item.success {
  border-color: color-mix(in srgb, #1a9b65 46%, var(--line));
}

.toast-item.success i {
  color: #1a9b65;
}

.toast-item.error {
  border-color: color-mix(in srgb, #cc5a5a 46%, var(--line));
}

.toast-item.error i {
  color: #cc5a5a;
}

.mobile-sticky-cta {
  display: none;
}

.faq-search {
  margin-bottom: 0.75rem;
  position: relative;
}

.faq-search input {
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 96%, transparent);
  color: var(--ink);
  padding: 0.45rem 0.75rem;
}

.faq-search input:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--primary) 62%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 16%, transparent);
}

.faq-empty {
  display: none;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: var(--text-sm);
}

/* ---- sections/_faq-testimonials.scss ---- */
.contact-hours {
  margin-top: 0.3rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 10%, var(--card));
  border: 1px solid color-mix(in srgb, var(--primary) 20%, var(--line));
  line-height: 1.7;
}

.contact-hours span {
  display: block;
}

.contact-hours span + span {
  margin-top: 0.2rem;
}

.faq {
  grid-template-columns: 1fr;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: start;
  cursor: pointer;
}

.faq-trigger h3 {
  margin: 0;
  font-size: var(--text-lg);
}

.faq-icon {
  color: var(--primary-dark);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-content .lead {
  margin-top: 0.55rem;
  max-width: none;
}

.testimonials-carousel {
  --show: 3;
  --gap: 0.9rem;
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.testimonials-carousel.is-dragging {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: var(--gap);
  direction: ltr;
  transition: transform 0.55s ease;
  will-change: transform;
}

.testimonial-card {
  margin: 0;
  flex: 0 0 calc((100% - (var(--show) - 1) * var(--gap)) / var(--show));
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--card) 92%, #fff) 0%,
    color-mix(in srgb, var(--primary) 5%, var(--card)) 100%
  );
  border-color: color-mix(in srgb, var(--primary) 22%, var(--line));
  box-shadow: 0 12px 24px -22px rgba(6, 86, 95, 0.9);
}

.testimonials-carousel .testimonial-card,
.testimonials-carousel .testimonial-card * {
  user-select: none;
  -webkit-user-select: none;
}

html[dir="rtl"] .testimonial-card {
  direction: rtl;
  text-align: right;
}

html[dir="ltr"] .testimonial-card {
  direction: ltr;
  text-align: left;
}

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--primary-dark);
  background: color-mix(in srgb, var(--primary) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--line));
  flex: 0 0 34px;
}

.testimonial-meta {
  min-width: 0;
}

.testimonial-name {
  display: block;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-role {
  display: block;
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--muted);
}

.testimonial-stars {
  color: #f2b21b;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial-text {
  margin: 0;
  flex: 1 1 auto;
  color: var(--ink);
  font-size: var(--text-md);
  line-height: 1.9;
}

.box {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.box .lead,
.coverage-grid .lead,
.contact-grid .lead,
.faq-content .lead {
  max-width: none;
  width: 100%;
}

.box-icon {
  color: var(--primary);
  font-size: 1.28rem;
  margin-bottom: 0.35rem;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 26%, var(--line));
}

.quote {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 1.15rem;
  color: color-mix(in srgb, var(--primary) 50%, transparent);
}

html[dir="ltr"] .quote {
  right: 12px;
  left: auto;
}

/* ---- components/_floating.scss ---- */
.floating-contact {
  position: fixed;
  left: 14px;
  bottom: 20px;
  z-index: 360;
  display: grid;
  gap: 0.45rem;
}

html[dir="ltr"] .floating-contact {
  right: 14px;
  left: auto;
}

.floating-contact a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 26px -20px rgba(5, 49, 56, 0.9);
}

.floating-contact a.whatsapp {
  color: #20b15a;
}

.floating-contact a.telegram {
  color: #229ed9;
}

.plan-more {
  margin-top: 0.65rem;
  width: 100%;
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 94%, transparent);
  color: var(--ink);
  cursor: pointer;
}

/* ---- components/_modals-admin.scss ---- */
.app-modal {
  position: fixed;
  inset: 0;
  z-index: 390;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(8, 24, 27, 0.36);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.app-modal.open {
  display: flex;
}

.modal-card {
  width: min(560px, 100%);
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 94%, transparent);
  padding: 0.95rem;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.modal-close {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--primary-dark);
  cursor: pointer;
  line-height: 1;
}

.modal-close i,
.nav-close i {
  display: block;
  line-height: 1;
}

.modal-features {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.modal-features li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.35rem 0.55rem;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
}

.admin-login-card {
  position: relative;
  width: min(380px, 100%);
  padding: 1.05rem;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 15% 10%,
      color-mix(in srgb, var(--primary) 18%, transparent),
      transparent 45%
    ),
    color-mix(in srgb, var(--card) 95%, transparent);
  box-shadow: 0 30px 60px -42px rgba(5, 49, 56, 0.95);
  text-align: center;
}

.admin-login-card .modal-head {
  position: static;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.admin-login-card .modal-close {
  position: absolute;
  top: 8px;
  inset-inline-end: 8px;
}

.admin-login-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--primary) 36%, var(--line));
  background: color-mix(in srgb, var(--primary) 16%, transparent);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.admin-login-desc {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-login-form {
  display: grid;
  gap: 0.65rem;
}

.admin-login-form .admin-field label {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  text-align: start;
}

.admin-pass-field {
  position: relative;
}

.admin-pass-control {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin-inline: auto;
}

.admin-login-form .admin-actions {
  justify-content: center;
}

.admin-login-form .admin-actions .btn {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

.admin-pass-field input {
  padding-inline-end: 2.5rem;
}

.admin-pass-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 8px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 94%, transparent);
  color: var(--primary-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-trigger {
  display: none;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--primary-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

html[dir="rtl"] .admin-trigger {
  order: -1;
}

html[dir="ltr"] .admin-trigger {
  order: 10;
}

body.admin-enabled .admin-trigger {
  display: inline-flex;
}

.admin-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.admin-tabs {
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.24rem;
}

.admin-tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  cursor: pointer;
  font-size: 0.82rem;
}

.admin-tab.active {
  background: color-mix(in srgb, var(--primary) 18%, transparent);
  color: var(--primary-dark);
}

.admin-pane {
  display: none;
  grid-column: 1 / -1;
}

.admin-pane.active {
  display: grid;
}

.admin-all-tools {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.admin-all-tools input {
  width: 100%;
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 96%, transparent);
  color: var(--ink);
  padding: 0.4rem 0.55rem;
}

.admin-all-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  max-height: 44vh;
  overflow: auto;
  padding-inline-end: 0.2rem;
}

.admin-key-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
  color: var(--primary-dark);
}

#adminModal .modal-card {
  width: min(760px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
}

.admin-field {
  display: grid;
  gap: 0.25rem;
}

.admin-field label {
  font-size: 0.82rem;
  color: var(--muted);
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 96%, transparent);
  color: var(--ink);
  padding: 0.4rem 0.55rem;
}

.admin-field textarea {
  min-height: 72px;
  resize: vertical;
}

.admin-control {
  position: relative;
}

.admin-control input,
.admin-control textarea {
  padding-inline-end: 2.2rem;
}

.admin-reset-field {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 6px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 94%, transparent);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-control textarea + .admin-reset-field {
  top: 16px;
  transform: none;
}

.admin-field.wide {
  grid-column: 1 / -1;
}

.admin-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.45rem;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---- utilities/_animations.scss ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-item {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  animation: introFade 0.7s cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
  animation-delay: var(--intro-delay, 0ms);
}

@keyframes introFade {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatPanel {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes auraMove {
  from {
    transform: translateX(-2%) translateY(1%);
  }
  to {
    transform: translateX(2%) translateY(-1%);
  }
}
@keyframes typingCaret {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

/* ---- utilities/_responsive.scss ---- */
@media (max-width: 960px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 260;
  }

  .hero-grid,
  .cards,
  .stats-row,
  .plans,
  .benefit-strip,
  .coverage-grid,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero-grid > .reveal:first-child {
    order: 2;
  }

  .hero-grid > .reveal:last-child {
    order: 1;
  }

  .header-inner {
    padding: 0.6rem 0;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 0.26rem;
    row-gap: 0.3rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-tools {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.34rem;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--card);
    color: var(--primary-dark);
    cursor: pointer;
  }

  .lang-dropdown {
    position: relative;
    z-index: 260;
  }

  .lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: max-content;
    min-width: max-content;
    max-width: calc(100vw - 20px);
    padding: 0.35rem;
    border-radius: 12px;
    z-index: 270;
  }

  html[dir="ltr"] .lang-menu {
    left: 0;
    right: auto;
  }

  .lang-option {
    min-height: 40px;
    padding: 0.5rem 0.65rem;
    border-radius: 9px;
  }

  .header-tools .phone,
  .header-tools .btn {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 84vw);
    height: 100dvh;
    z-index: 35;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: -14px 0 30px -22px rgba(5, 49, 56, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0.3rem;
    padding: 1rem 0.7rem 1rem;
    max-height: none;
    opacity: 1;
    overflow-y: auto;
    transform: translateX(104%);
    transition: transform 0.28s ease;
  }

  html[dir="ltr"] .nav {
    right: auto;
    left: 0;
    border-left: 0;
    border-right: 1px solid var(--line);
    box-shadow: 14px 0 30px -22px rgba(5, 49, 56, 0.9);
    transform: translateX(-104%);
  }

  .nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
  }

  .nav-head .brand {
    font-size: 1rem;
    gap: 0.3rem;
  }

  .nav-head .brand i {
    font-size: 1.2rem;
  }

  .nav-close {
    display: inline-flex;
    position: static;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--card);
    color: var(--primary-dark);
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .header.nav-open .nav {
    transform: translateX(0);
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(5, 21, 26, 0.24);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity 0.24s ease;
  }

  .header.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  html[dir="ltr"] .header-tools {
    justify-self: end;
  }

  html[dir="ltr"] .menu-toggle {
    justify-self: end;
  }
}

@media (max-width: 840px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.45rem 0;
    min-height: auto;
    line-height: 1.55;
  }

  .hero {
    padding: 3.2rem 0 2.8rem;
  }

  .hero-grid {
    gap: 1rem;
  }

  .hero-grid > .reveal:first-child {
    text-align: center;
  }

  .hero-grid > .reveal:first-child .lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel.vector-box {
    margin-top: 0.35rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .calc-layout {
    grid-template-columns: 1fr;
  }

  .calc-grid {
    grid-template-columns: 1fr;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-carousel {
    --show: 2;
  }

  html[dir="ltr"] .topbar-inner {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 82px;
  }

  .testimonials-carousel {
    --show: 1;
  }

  .toast-stack {
    top: auto;
    bottom: 74px;
    right: 10px;
    left: 10px;
  }

  .toast-item {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 370;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto auto;
    gap: 0.55rem;
    padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-sticky-cta a {
    min-height: 42px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid var(--line);
    color: var(--ink);
    background: color-mix(in srgb, var(--card) 92%, transparent);
    font-size: 0.86rem;
    min-width: 0;
  }

  .mobile-sticky-cta a:not(.social) {
    padding-inline: 0.45rem;
    gap: 0.28rem;
  }

  .mobile-sticky-cta a:not(.social) span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-sticky-cta a.primary {
    border-color: color-mix(in srgb, var(--primary) 54%, var(--line));
    background: color-mix(in srgb, var(--primary) 17%, transparent);
    color: var(--primary-dark);
  }

  .mobile-sticky-cta a.social {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 1.15rem;
    border-radius: 10px;
  }

  .mobile-sticky-cta a.social span {
    display: none;
  }

  .mobile-sticky-cta a.social.whatsapp {
    color: #20b15a;
  }

  .mobile-sticky-cta a.social.telegram {
    color: #229ed9;
  }

  .floating-contact {
    display: none;
  }

  .footer-main,
  .footer-bottom {
    display: none;
  }

  .footer-mobile {
    display: grid;
    gap: 0.9rem;
    padding: 1rem 0 1.1rem;
  }

  .footer-mobile-card {
    background: color-mix(in srgb, var(--card) 92%, transparent);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 0.9rem;
  }

  .footer-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
  }

  .footer-mobile-head .brand {
    font-size: 1rem;
  }

  .footer-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .footer-mobile-actions a {
    min-height: 38px;
    border-radius: 10px;
    border: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.86rem;
    background: color-mix(in srgb, var(--card) 92%, transparent);
  }

  .footer-mobile-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
  }

  .footer-mobile-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.82rem;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.34rem 0.3rem;
    background: color-mix(in srgb, var(--primary) 7%, transparent);
  }

  .footer-mobile-copy {
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    padding: 0.35rem 0 0.15rem;
  }

  .admin-form {
    grid-template-columns: 1fr;
  }

  .admin-all-fields {
    grid-template-columns: 1fr;
    max-height: 40vh;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(1140px, 94%);
  }

  .topbar {
    font-size: 0.82rem;
  }

  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.35rem 0;
  }

  .topbar-inner span {
    display: inline-block;
    line-height: 1.45;
    white-space: nowrap;
  }

  .topbar-inner span:last-child {
    display: none;
  }

  .btn,
  .phone,
  .control-btn {
    width: 100%;
    justify-content: center;
  }

  .control-btn.icon-only {
    width: 40px;
    min-width: 40px;
  }

  .header-tools,
  .hero-actions {
    width: 100%;
  }

  .header-tools {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }

  html[dir="ltr"] .header-tools {
    justify-self: end;
  }

  .header-tools .control-btn,
  .header-tools .control-btn.icon-only {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
    flex: 0 0 40px;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
  }

  html[dir="ltr"] .menu-toggle {
    justify-self: end;
  }

  .header-inner {
    column-gap: 0.24rem;
    row-gap: 0.3rem;
  }

  .brand-text {
    font-size: 1.18rem;
  }

  h1 {
    font-size: 1.52rem;
    line-height: 1.6;
  }

  .hero h1 {
    font-size: 1.46rem;
    line-height: 1.58;
  }

  .hero {
    padding: 2.2rem 0 2.2rem;
  }

  .trust-bar {
    gap: 0.45rem;
  }

  .trust-item {
    font-size: 0.76rem;
    min-height: 36px;
    border-radius: 9px;
  }

  .eyebrow {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }

  .lead {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .hero-grid {
    gap: 0.8rem;
  }

  .hero-actions {
    margin-top: 1rem;
    gap: 0.5rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .stat {
    padding: 0.55rem 0.35rem;
  }

  .stat-value {
    font-size: 0.96rem;
    line-height: 1.2;
  }

  .stat-label {
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .panel {
    padding: 0.8rem;
  }

  .vector-badge {
    top: 8px;
    right: 8px;
    padding: 0.28rem 0.45rem;
    font-size: 0.73rem;
  }

  .lottie-wrap {
    aspect-ratio: 4 / 3;
  }

  .benefit-item,
  .card,
  .plan,
  .box {
    padding: 0.85rem;
  }

  .testimonial-card {
    min-height: 158px;
    padding: 0.9rem 0.85rem 0.85rem;
    border-radius: var(--radius-md);
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero h1.is-typing::after {
    display: none !important;
  }
}
