:root {
  --bg: #030b08;
  --bg-secondary: #071611;
  --surface: rgba(11, 20, 35, 0.72);
  --surface-strong: rgba(8, 17, 30, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --text: #f6fbff;
  --muted: #a4beb3;
  --primary: #39ff14;
  --primary-strong: #00ff66;
  --primary-dark: #0a3b26;
  --primary-soft: rgba(57, 255, 20, 0.18);
  --line: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100vw;
  touch-action: pan-y;
  scroll-behavior: smooth;
  scrollbar-color: #b3b3b3 #090909;
  scrollbar-width: thin;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100vw;
  touch-action: pan-y;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(57, 255, 20, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(7, 87, 46, 0.26), transparent 34%),
    linear-gradient(180deg, #020705 0%, #07130e 42%, #03100b 100%);
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
}

body::-webkit-scrollbar {
  width: 22px;
}

body::-webkit-scrollbar-track {
  background: #090909;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

body::-webkit-scrollbar-thumb {
  background: #b6b6b6;
  border-radius: 999px;
  border: 5px solid #090909;
  min-height: 96px;
}

body::-webkit-scrollbar-button:single-button {
  display: block;
  height: 12px;
  background-color: #090909;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6px;
}

body::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: linear-gradient(135deg, transparent 50%, #9a9a9a 50%), linear-gradient(225deg, transparent 50%, #9a9a9a 50%);
  background-position: calc(50% - 2px) 6px, calc(50% + 2px) 6px;
  background-size: 4px 4px;
}

body::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: linear-gradient(315deg, transparent 50%, #9a9a9a 50%), linear-gradient(45deg, transparent 50%, #9a9a9a 50%);
  background-position: calc(50% - 2px) 2px, calc(50% + 2px) 2px;
  background-size: 4px 4px;
}

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

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

button,
a,
.feature-card,
.testimonial-card,
.stat-box,
.profile-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  max-width: 100%;
  margin: 0 auto;
}

.section {
  padding: 64px 0;
  position: relative;
}

.glass {
  background: linear-gradient(180deg, rgba(10, 26, 18, 0.78), rgba(5, 18, 13, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(4, 14, 10, 0.84);
  border-bottom: 1px solid rgba(57, 255, 20, 0.14);
  isolation: isolate;
  overflow: visible;
}

.nav {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(145px, 20vw, 195px);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: #bad3c5;
  font-size: 0.92rem;
  position: relative;
  z-index: 2;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.nav-blog {
  font-weight: 600;
  color: #b8ff95;
}

.nav-cta {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: #04120a;
  background: linear-gradient(135deg, #39ff14, #00ff66 55%, #98ff7a);
  border: 1px solid rgba(57, 255, 20, 0.22);
  box-shadow: 0 12px 28px rgba(57, 255, 20, 0.2);
}

.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:focus-visible {
  color: #04120a;
}

.nav-lang {
  position: relative;
  z-index: 3;
}

.nav-lang summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  color: #04120a;
  font-weight: 700;
  background: linear-gradient(135deg, #39ff14, #00ff66 55%, #98ff7a);
  border: 1px solid rgba(57, 255, 20, 0.22);
  box-shadow: 0 12px 28px rgba(57, 255, 20, 0.2);
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-lang summary::-webkit-details-marker {
  display: none;
}

.nav-lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 76px;
  display: grid;
  gap: 0.45rem;
  padding: 0.55rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(7, 25, 16, 0.96), rgba(4, 16, 10, 0.99));
  border: 1px solid rgba(57, 255, 20, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  z-index: 700;
}

.nav-lang:not([open]) .nav-lang-menu {
  display: none;
}

.nav-lang-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
  color: #eaffef;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(57, 255, 20, 0.08);
  font-weight: 700;
}

.nav-lang-menu a:hover,
.nav-lang-menu a:focus-visible {
  color: #04120a;
  background: linear-gradient(135deg, #39ff14, #00ff66 55%, #98ff7a);
}

.language-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.language-modal[hidden] {
  display: none;
}

.language-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 6, 0.78);
  backdrop-filter: blur(16px);
}

.language-modal-open {
  overflow: hidden;
}

.language-card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 25, 16, 0.94), rgba(4, 16, 10, 0.98));
  border: 1px solid rgba(57, 255, 20, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.language-card-kicker {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.18);
  color: #b8ff95;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.language-card h2 {
  margin: 0;
  color: #f6fbff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.language-card p {
  margin: 0;
  color: #b9cbc4;
  line-height: 1.7;
}

.language-card-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.language-choice {
  min-height: 56px;
  border: 1px solid rgba(57, 255, 20, 0.18);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: #f6fbff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.language-choice:hover,
.language-choice:focus-visible {
  outline: none;
  transform: translateY(-2px);
  color: #04120a;
  background: linear-gradient(135deg, #39ff14, #00ff66 55%, #98ff7a);
  box-shadow: 0 16px 34px rgba(57, 255, 20, 0.18);
}

.hero {
  padding-top: 22px;
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: center;
  padding-bottom: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 18%, rgba(57, 255, 20, 0.2), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(0, 112, 56, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(3, 11, 8, 0.98) 0%, rgba(6, 20, 14, 0.95) 48%, rgba(10, 58, 39, 0.82) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 340px;
  height: 220px;
  background-image: radial-gradient(rgba(57, 255, 20, 0.2) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.1rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.18);
  color: #bfffab;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.cta-banner h2 {
  margin: 1.2rem 0 1rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  max-width: 8.6ch;
  color: #f5fbff;
  margin-top: 0;
  margin-bottom: 0.85rem;
  line-height: 0.92;
}

.hero-text,
.section-heading p,
.split-copy p,
.cta-banner p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 35ch;
  color: #a9bfcb;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.1rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  font-weight: 700;
}

.button:hover,
.button:focus-visible,
.feature-card:hover,
.testimonial-card:hover,
.stat-box:hover,
.profile-card:hover {
  transform: translateY(-4px);
}

.button-primary {
  color: #04120a;
  background: linear-gradient(135deg, #39ff14, #00ff66 60%, #c7ffb8);
  box-shadow: 0 18px 40px rgba(57, 255, 20, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 46px rgba(57, 255, 20, 0.34);
}

.button-secondary {
  border: 1px solid rgba(57, 255, 20, 0.16);
  color: #e4ffea;
  background: linear-gradient(180deg, rgba(10, 34, 22, 0.7), rgba(6, 20, 14, 0.84));
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.trust-badge,
.metric-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-inline strong {
  color: #c7ffb8;
}

.hero-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.dashboard-card,
.profile-grid,
.feature-card,
.testimonial-card,
.stat-box,
.story-panel,
.functionality-panel,
.cta-banner {
  border-radius: var(--radius-lg);
}

.dashboard-card {
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.hero-device-scene {
  position: relative;
  min-height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  overflow: visible;
}

.hero-main-image {
  position: relative;
  right: auto;
  top: auto;
  bottom: auto;
  width: auto;
  max-width: 100%;
  max-height: 560px;
  height: min(68vh, 560px);
  display: block;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.22));
  transform: translateZ(0);
  animation: floatImage 5.6s ease-in-out infinite;
  will-change: transform;
}

.dashboard-card::after,
.cta-banner::before {
  content: "";
  position: absolute;
  inset: auto auto 0 -10%;
  width: 140%;
  height: 45%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.22), transparent 60%);
  pointer-events: none;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.16);
  color: #bbff9e;
}

.status-text {
  color: var(--muted);
  font-size: 0.95rem;
}

.dashboard-chart {
  height: 200px;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.chart-line {
  border-radius: 18px 18px 6px 6px;
  background: linear-gradient(180deg, rgba(150, 255, 116, 0.95), rgba(57, 255, 20, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 0 28px rgba(57, 255, 20, 0.18);
}

.chart-line-1 { height: 44%; }
.chart-line-2 { height: 63%; }
.chart-line-3 { height: 52%; }
.chart-line-4 { height: 82%; }

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.dashboard-stats article,
.story-insights article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-stats strong,
.stat-box strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.dashboard-stats span,
.story-insights p,
.stat-box span,
.testimonial-card span {
  color: var(--muted);
}

.profile-grid {
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.profile-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-card img,
.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.profile-card.active,
.feature-card:hover,
.testimonial-card:hover,
.stat-box:hover,
.check-item:hover {
  border-color: rgba(57, 255, 20, 0.34);
  box-shadow: 0 0 36px rgba(57, 255, 20, 0.14);
}

.logo-strip {
  padding: 0;
  margin-top: 2px;
}
  .logo-marquee {
  overflow: hidden;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-top: 1px solid rgba(57, 255, 20, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(24, 95, 40, 0.2) 0, rgba(24, 95, 40, 0.2) 2px, transparent 2px),
    linear-gradient(90deg, rgba(6, 24, 16, 0.96), rgba(7, 34, 23, 0.98) 50%, rgba(6, 24, 16, 0.96));
}

.logo-track {
  display: flex;
  gap: 4.5rem;
  align-items: center;
  width: max-content;
  padding: 1.1rem 2.5rem;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.logo-track img {
  max-height: 52px;
  opacity: 0.82;
  filter: grayscale(1) brightness(1.4);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 0.5rem;
}

.section-heading h2,
.split-copy h2,
.cta-banner h2 {
  font-size: clamp(2.1rem, 6vw, 3.7rem);
}

.benefit-grid,
.stats-grid,
.testimonial-grid,
.check-grid {
  display: grid;
  gap: 1.25rem;
}

.about-panel {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.feature-card {
  padding: 1.6rem;
}

.about-visual {
  position: relative;
  min-height: 520px;
  border-radius: 0;
  overflow: visible;
  background:
    radial-gradient(circle at center, rgba(57, 255, 20, 0.14), rgba(10, 52, 30, 0.32) 58%, rgba(5, 18, 12, 0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border: none;
}

.about-visual::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 14px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 255, 92, 0.5), rgba(57, 255, 20, 0.24) 42%, rgba(13, 112, 54, 0.1) 62%, transparent 78%);
  filter: blur(30px);
  pointer-events: none;
  animation: glowDrift 6s ease-in-out infinite;
}

.about-visual::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 28px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 255, 180, 0.34), rgba(57, 255, 20, 0.12) 56%, transparent 76%);
  filter: blur(22px);
  pointer-events: none;
  animation: glowDrift 7.5s ease-in-out infinite reverse;
}

.about-visual img {
  width: min(100%, 820px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.16));
  position: relative;
  z-index: 1;
}

.about-copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  color: #bfffab;
}

.about-copy {
  position: relative;
  z-index: 2;
  margin-top: -30px;
  padding: 1.3rem 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 28, 18, 0.76), rgba(5, 18, 12, 0.92));
  border: 1px solid rgba(57, 255, 20, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-diff {
  margin-top: 2rem;
}

.about-diff h4 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #f4fbff;
  text-align: center;
}

.about-diff-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.15rem;
}

.about-diff-item {
  grid-column: span 4;
  padding: 1.35rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(57, 255, 20, 0.1);
  min-height: 100%;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.about-diff-item:nth-child(4),
.about-diff-item:nth-child(5) {
  grid-column: span 6;
}

.about-diff-item:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.24);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.about-diff-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(135, 255, 114, 0.18), rgba(57, 255, 20, 0.08));
  color: #bfffab;
  font-size: 1.45rem;
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.14), 0 0 22px rgba(57, 255, 20, 0.08);
}

.about-diff-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-diff-item h5 {
  margin: 0 0 0.7rem;
  font-size: 1.14rem;
  line-height: 1.35;
  color: #f6fbff;
  max-width: 18ch;
}

.about-diff-item p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.icon-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: rgba(57, 255, 20, 0.1);
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.2);
  font-size: 1.45rem;
}

.feature-card h3,
.testimonial-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
}

.feature-card p,
.testimonial-card p,
.check-item {
  color: var(--muted);
  line-height: 1.7;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: center;
}

.blog-model {
  position: relative;
  padding: 1.5rem 1.5rem 1.9rem;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(57, 255, 20, 0.12), rgba(6, 18, 13, 0) 42%),
    linear-gradient(180deg, rgba(3, 10, 8, 0.99), rgba(5, 18, 12, 0.98));
  border: 1px solid rgba(57, 255, 20, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.blog-model::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(3, 10, 8, 0.98), rgba(7, 38, 24, 0.92) 50%, rgba(3, 10, 8, 0.98));
  pointer-events: none;
}

.blog-model-heading,
.blog-model-stage {
  position: relative;
  z-index: 1;
}

.blog-model-heading {
  max-width: 980px;
  margin: 0 auto 2rem;
  text-align: center;
}

.blog-model-heading h2 {
  margin: 1rem auto 0.8rem;
  max-width: 16ch;
  font-size: clamp(2.2rem, 5vw, 3.9rem);
}

.blog-model-heading p {
  max-width: 62ch;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.blog-model-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.blog-side {
  display: grid;
  gap: 1rem;
}

.blog-pill {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
}

.blog-side-left .blog-pill {
  animation: slideLeftRight 7s ease-in-out infinite;
}

.blog-side-right .blog-pill {
  animation: slideRightLeft 7s ease-in-out infinite;
}

.blog-side .blog-pill:nth-child(2) {
  animation-delay: 0.35s;
}

.blog-side .blog-pill:nth-child(3) {
  animation-delay: 0.7s;
}

.blog-pill-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.14), rgba(57, 255, 20, 0.05));
  color: #caffb7;
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.14), 0 0 26px rgba(57, 255, 20, 0.06);
  font-size: 1.15rem;
}

.blog-pill strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.14rem;
  line-height: 1.35;
}

.blog-pill p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.blog-phone-wrap {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.blog-phone-frame {
  position: relative;
  width: min(100%, 380px);
  animation: phoneRise 1.4s ease both, floatPhoneCenter 6s ease-in-out infinite 1.4s;
  margin: 0 auto;
}

.blog-phone-frame::before {
  content: none;
}

.blog-phone-frame img {
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 50px rgba(57, 255, 20, 0.08));
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.15rem;
}

.stat-box {
  position: relative;
  overflow: hidden;
  padding: 1.7rem 1.6rem;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(57, 255, 20, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(7, 25, 16, 0.86), rgba(4, 16, 10, 0.96));
  border: 1px solid rgba(57, 255, 20, 0.12);
}

.stat-box::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(57, 255, 20, 0), rgba(57, 255, 20, 0.6), rgba(57, 255, 20, 0));
}

.testimonial-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 1rem 1.05rem;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(7, 25, 16, 0.88), rgba(4, 16, 10, 0.96));
  border: 1px solid rgba(57, 255, 20, 0.1);
}

.testimonial-grid .testimonial-card {
  grid-column: span 3;
}

.testimonial-card img {
  width: 150px;
  height: 270px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
  background: transparent;
  padding: 0;
}

.stars {
  color: #ffe27a;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.stat-box strong {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  margin-bottom: 0.55rem;
  color: #f8fff8;
}

.stat-box span {
  max-width: 18ch;
  font-size: 1.12rem;
  line-height: 1.45;
  color: #c1d6cb;
}

.testimonial-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.25rem;
}

.testimonial-card span {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
}

.testimonial-card p {
  font-size: 0.98rem;
  line-height: 1.72;
}

.meeting-panel {
  display: grid;
  gap: 1rem;
}

.meeting-hero,
.meeting-agenda {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(57, 255, 20, 0.1);
  background: linear-gradient(180deg, rgba(4, 14, 10, 0.96), rgba(3, 10, 8, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

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

.meeting-copy h2 {
  margin: 0.8rem 0 1rem;
  max-width: 11ch;
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  line-height: 1;
}

.meeting-copy p {
  max-width: 34ch;
  margin-bottom: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}

.meeting-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(3, 10, 8, 0.92), rgba(3, 10, 8, 0.96));
  display: block;
}

.meeting-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
  opacity: 0.98;
}

.meeting-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 10, 7, 0.96) 0%, rgba(2, 10, 7, 0.88) 35%, rgba(2, 10, 7, 0.28) 68%, rgba(2, 10, 7, 0.12) 100%),
    radial-gradient(circle at 70% 50%, rgba(57, 255, 20, 0.12), transparent 28%);
  pointer-events: none;
}

.meeting-copy-overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(100%, 540px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.8rem 2rem;
  background: linear-gradient(90deg, rgba(2, 10, 7, 0.96) 0%, rgba(2, 10, 7, 0.88) 52%, rgba(2, 10, 7, 0.4) 78%, rgba(2, 10, 7, 0) 100%);
}

.meeting-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: min(100%, 470px);
  padding: 0.45rem 1rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(57, 255, 20, 0.22);
  background: linear-gradient(180deg, rgba(11, 50, 27, 0.78), rgba(8, 34, 19, 0.84));
  color: #bfffab;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.06);
}

.meeting-button {
  display: inline-flex;
  align-self: flex-start;
  min-width: 0;
  margin-top: 0.2rem;
  padding: 0.95rem 1.45rem;
  justify-content: center;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(57, 255, 20, 0.24);
  position: relative;
  z-index: 3;
}

.meeting-agenda {
  padding: 1.4rem 1.25rem;
}

.meeting-agenda-heading {
  margin-bottom: 1.4rem;
}

.meeting-agenda-heading h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.meeting-agenda-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.meeting-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.meeting-item {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(57, 255, 20, 0.08);
}

.meeting-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.08), rgba(57, 255, 20, 0.02));
  color: #7dff63;
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.1);
}

.meeting-item strong {
  font-size: 1.12rem;
  line-height: 1.45;
}

.meeting-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.meeting-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 0;
}

.fit-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(57, 255, 20, 0.1);
  background: linear-gradient(180deg, rgba(6, 18, 12, 0.95), rgba(4, 14, 10, 0.98));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.fit-card-head {
  padding: 1.25rem 1.4rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #f8fff8;
  text-align: center;
}

.fit-card-positive .fit-card-head {
  background: linear-gradient(135deg, #1f5dff, #2f85ff);
}

.fit-card-negative .fit-card-head {
  background: linear-gradient(135deg, #204c2d, #1a7a39);
}

.fit-card-body {
  padding: 1.4rem 1.35rem 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(57, 255, 20, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(8, 18, 30, 0.88), rgba(8, 18, 30, 0.94));
}

.fit-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.fit-item + .fit-item {
  margin-top: 1rem;
}

.fit-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 800;
}

.fit-card-positive .fit-item span {
  color: #5dff8e;
}

.fit-card-negative .fit-item span {
  color: #7dff63;
}

.fit-item p {
  margin: 0;
  color: #f2f8ff;
  line-height: 1.6;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 92px;
}

.faq-intro h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.95;
  color: #bfffab;
}

.faq-intro p {
  max-width: 24ch;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 26px;
  border: 1px solid rgba(57, 255, 20, 0.1);
  background: linear-gradient(180deg, rgba(7, 25, 16, 0.88), rgba(4, 16, 10, 0.96));
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  contain: layout paint;
  transform: translateZ(0);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 1.4rem 4.2rem 1.4rem 1.5rem;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #f8fff8;
  user-select: none;
  text-align: left;
  font-family: inherit;
}

.faq-question::after {
  content: "â†“";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: #d9ffe2;
  font-size: 1.2rem;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-question {
  background: linear-gradient(135deg, #1f7a3a, #39ff14 85%);
  color: #031108;
}

.faq-item.is-open .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  background: linear-gradient(180deg, rgba(10, 28, 19, 0.96), rgba(6, 20, 14, 0.98));
  border-top: 1px solid rgba(57, 255, 20, 0.08);
  opacity: 0;
  will-change: grid-template-rows, opacity;
  contain: layout;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 1.25rem 1.5rem 1.4rem;
}

.faq-answer p {
  margin: 0;
  color: #d7e7dc;
  line-height: 1.8;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.cta-banner {
  position: relative;
  padding: 3rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(57, 255, 20, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(9, 31, 20, 0.94), rgba(5, 18, 12, 0.98));
  border: 1px solid rgba(57, 255, 20, 0.22);
  box-shadow: 0 0 68px rgba(57, 255, 20, 0.14);
}

.cursor-glow {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.16) 0%, rgba(57, 255, 20, 0) 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 180ms ease;
  will-change: transform, opacity;
}

.noise-layer,
.particles {
  display: none;
}

.noise-layer {
  z-index: -1;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.particles span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.35);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.45);
  animation: floatParticle 10s linear infinite;
}

.particles span:nth-child(1) { left: 8%; top: 18%; animation-delay: 0s; }
.particles span:nth-child(2) { left: 28%; top: 74%; animation-delay: 1.6s; }
.particles span:nth-child(3) { left: 52%; top: 22%; animation-delay: 3.2s; }
.particles span:nth-child(4) { left: 72%; top: 66%; animation-delay: 2.2s; }
.particles span:nth-child(5) { left: 84%; top: 28%; animation-delay: 4.5s; }
.particles span:nth-child(6) { left: 38%; top: 46%; animation-delay: 5.4s; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 360ms ease-out, transform 360ms ease-out;
  will-change: transform, opacity;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal[data-animate="fade-up"] {
  transform: translateY(22px);
}

.reveal[data-animate="slide-left"] {
  transform: translateX(24px);
}

.reveal[data-animate="slide-right"] {
  transform: translateX(-24px);
}

.reveal[data-animate="zoom-in"] {
  transform: scale(0.96);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.pulse {
  animation: pulseGlow 2.4s infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 26px rgba(57, 255, 20, 0.24);
  }
  50% {
    box-shadow: 0 0 52px rgba(57, 255, 20, 0.42);
  }
}

@keyframes floatImage {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes glowDrift {
  0%, 100% {
    transform: translateX(0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translateX(10px) scale(1.05);
    opacity: 1;
  }
}

@keyframes phoneRise {
  from {
    opacity: 0;
    transform: translateY(90px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatPhoneCenter {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes slideLeftRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

@keyframes slideRightLeft {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}

@keyframes floatParticle {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0.2;
  }
  50% {
    transform: translate3d(12px, -20px, 0) scale(1.15);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(-6px, -42px, 0) scale(0.7);
    opacity: 0.1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 2.25rem));
  }
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .nav-links {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.7rem 0.6rem;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

  .hero-grid,
  .about-panel,
  .stats-grid,
  .testimonial-grid,
  .meeting-grid,
  .meeting-fit-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 8ch;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

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

  .hero-main-image {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(100%, 560px);
    max-width: 100%;
    max-height: 420px;
    margin: 0 auto;
    transform: none;
    animation: none;
  }

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

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

  .about-diff-item,
  .about-diff-item:nth-child(4),
  .about-diff-item:nth-child(5) {
    grid-column: auto;
  }

  .testimonial-grid .testimonial-card {
    grid-column: auto;
  }

  .blog-model-stage {
    grid-template-columns: 1fr;
  }

  .blog-phone-wrap {
    order: 3;
    min-height: 340px;
  }

  .blog-side-left { order: 1; }
  .blog-side-right { order: 2; }

  #beneficios .container {
    display: flex;
    flex-direction: column;
  }
  .about-panel {
    order: 2;
  }
  .about-copy {
    order: 1;
  }
  .section-heading {
    order: 0;
  }

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

  .meeting-copy-overlay {
    width: min(100%, 500px);
    padding: 2rem;
  }

  .meeting-tag {
    width: min(100%, 360px);
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .language-card-actions {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.65rem 0;
  }

  .section {
    padding: 52px 0;
  }

  .container {
    width: min(calc(100% - 1rem), var(--container));
    max-width: 100%;
  }

  .hero {
    padding-top: 18px;
    min-height: auto;
  }

  .brand {
    width: auto;
  }

  .brand img {
    width: 98px;
  }

  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    width: auto;
    margin-left: auto;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links > a,
  .nav-links > .nav-cta,
  .nav-links .nav-lang {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
  }

  .nav-links .nav-lang {
    position: relative;
    margin-left: 0;
    z-index: 520;
  }

  .nav-links a,
  .nav-lang summary {
    width: auto;
    min-width: 108px;
    min-height: 40px;
    padding: 0.5rem 0.7rem;
    font-size: 0.74rem;
    line-height: 1.15;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
  }

  .nav-links > a:not(.nav-cta) {
    display: none !important;
  }

  .nav-lang summary,
  .nav-cta {
    border-radius: 14px;
  }

  .hero-actions,
  .trust-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    padding-top: 0.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 13vw, 5rem);
    max-width: 8ch;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-visual {
    margin-top: 0.2rem;
    min-height: auto;
    overflow: hidden;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .hero-main-cta,
  .hero-blog-cta {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-device-scene {
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
  }

  .hero-main-image {
    width: min(100%, 420px);
    max-width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.2));
    animation: none;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    grid-template-columns: 100px 1fr;
    gap: 0.8rem;
    align-items: start;
  }

  .testimonial-card img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
  }

  .feature-card,
  .cta-banner {
    padding: 1.35rem;
  }

  .about-panel {
    padding: 1rem;
  }

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

  .about-copy {
    margin-top: -24px;
    padding: 1rem 0.95rem;
  }

  .about-diff-grid {
    grid-template-columns: 1fr;
  }

  .blog-model {
    padding: 1rem 0.95rem 1.2rem;
  }

  .blog-model-heading h2 {
    max-width: 100%;
  }

  .blog-phone-wrap {
    min-height: 340px;
  }

  .blog-phone-frame {
    width: min(100%, 260px);
  }

  .meeting-copy-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    padding: 1.2rem 1rem;
    background: linear-gradient(180deg, rgba(2, 10, 7, 0) 0%, rgba(2, 10, 7, 0.82) 24%, rgba(2, 10, 7, 0.96) 100%);
  }

  .meeting-tag {
    width: 100%;
    margin-bottom: 0.9rem;
    font-size: 0.82rem;
  }

  .meeting-copy h2 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .meeting-visual {
    min-height: 430px;
  }

  .meeting-visual img {
    min-height: 430px;
  }

  .meeting-copy p {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .meeting-button {
    min-width: 100%;
  }

  .meeting-agenda {
    padding: 1rem 0.95rem;
  }

  .hero-device-scene,
  .hero-visual {
    min-height: auto;
  }
  .logo-marquee {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .logo-track {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem 0.8rem;
    align-items: center;
    padding: 1rem 0.4rem;
    animation: none;
    justify-items: center;
  }

  .logo-track img {
    width: 100%;
    max-width: 72px;
    max-height: 30px;
    object-fit: contain;
    justify-self: center;
  }

  .dashboard-card,
  .profile-grid {
    padding: 1rem;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-banner h2 {
    line-height: 1.04;
  }
}

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

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

.faq-item {
  overflow: visible;
}

.faq-question {
  width: auto;
  border: 0;
  background: transparent;
  position: relative;
  padding: 1.4rem 1.5rem 0.85rem;
  color: #f8fff8;
}

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

.faq-answer {
  display: block;
  opacity: 1;
  background: linear-gradient(180deg, rgba(10, 28, 19, 0.96), rgba(6, 20, 14, 0.98));
}

.faq-answer-inner {
  overflow: visible;
  padding: 0 1.5rem 1.4rem;
}





main, .logo-marquee {
  max-width: 100%;
  overflow-x: hidden;
}



@media (max-width: 1024px) {
  html, body {
    overflow-x: hidden !important;
  }

  body {
    position: relative;
    touch-action: pan-y;
  }

  main,
  .logo-marquee {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}

.site-header {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}
@media (max-width: 720px) {
  .site-header {
    z-index: 600;
    overflow: visible;
  }

  .nav,
  .nav-links {
    z-index: 610;
  }

  .nav-lang-menu {
    position: fixed;
    top: 70px;
    right: 0;
    left: auto;
    max-width: calc(100vw - 1rem);
    z-index: 900;
  }

  .dashboard-card::after,
  .cta-banner::before {
    inset: auto auto 0 0;
    width: 100%;
  }
}



