:root {
  --blue: #2563c8;
  --blue-dark: #1a4a9e;
  --blue-mid: #3b7fe0;
  --blue-light: #dbeafe;
  --orange: #e87722;
  --orange-dark: #c45e0e;
  --orange-light: #fff3e6;
  --gray-50: #f8f9fc;
  --gray-100: #f0f2f7;
  --gray-200: #e1e5ef;
  --gray-300: #c8cedd;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;

  --font-heading: "Barlow", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
}

/* LANG BAR */
.lang-bar {
  background: var(--gray-900);
  padding: 7px 0;
}
.lang-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--blue);
  color: white;
}
.lang-btn:not(.active) {
  color: var(--gray-400);
}
.lang-btn:not(.active):hover {
  color: white;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 40px;
  mix-blend-mode: multiply;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-cta {
  background: var(--orange);
  color: white;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  background: var(--gray-900);
  padding: 80px 24px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -150px;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 200, 0.2) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100px;
  width: 600px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(232, 119, 34, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 200, 0.15);
  border: 1px solid rgba(37, 99, 200, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #93b4f0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(36px, 4.5vw, 54px);
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #93b4f0, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: #94a3b8;
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 9px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 119, 34, 0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 9px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
}
.hero-stats {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.hero-stat .n {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  color: white;
}
.hero-stat .l {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}
/* Hero screen */
.hero-screen-wrap {
  position: relative;
}
.browser-chrome {
  background: #1e293b;
  border-radius: 14px 14px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.burl {
  font-size: 11px;
  color: #475569;
  margin-left: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 12px;
  border-radius: 4px;
  flex: 1;
  max-width: 240px;
}
.hero-screenshot {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-radius: 0 0 14px 14px;
  display: block;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  max-height: 400px;
  object-fit: cover;
  object-position: top;
}

/* CLIENTS */
.clients {
  padding: 40px 24px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.clients-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
/* Style 3: Logo pill (enhanced original) */
.client-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  font-family: var(--font-heading);
  transition: all 0.2s;
}
.client-pill img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 3px;
  flex-shrink: 0;
}
.client-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}


/* SECTIONS */
section {
  padding: 88px 24px;
}
.s-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.s-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.s-title {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--gray-900);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.s-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 540px;
  line-height: 1.75;
}
.s-hd {
  margin-bottom: 52px;
}

/* FEATURE SCREENS — 2-col alternating */
.fscreen {
  padding: 0 24px 80px;
}
.fscreen-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.fscreen-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.fscreen-row.reverse {
  direction: rtl;
}
.fscreen-row.reverse > * {
  direction: ltr;
}
.fscreen-copy .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.fscreen-copy h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--gray-900);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.fscreen-copy p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
}
.fscreen-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fscreen-bullets li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  align-items: flex-start;
}
.fcheck {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--blue);
  font-weight: 800;
  margin-top: 2px;
}
.screen-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--gray-200);
}
.screen-card img {
  width: 100%;
  display: block;
}
.screen-mini-bar {
  background: var(--gray-100);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--gray-200);
}
.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.screen-url {
  font-size: 10px;
  color: var(--gray-400);
  margin-left: 4px;
}

/* FEATURE GRID */
.feat-bg {
  background: var(--gray-50);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
}
.feat-card {
  background: white;
  padding: 32px 28px;
  transition: background 0.2s;
}
.feat-card:hover {
  background: var(--gray-50);
}
.feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
}
.fi-blue {
  background: var(--blue-light);
}
.fi-orange {
  background: var(--orange-light);
}
.fi-green {
  background: #dcfce7;
}
.feat-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.feat-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* TESTIMONIALS */
.testi-bg {
  background: var(--gray-900);
}
.testi-bg .s-label {
  color: #60a5fa;
}
.testi-bg .s-title {
  color: white;
}
.testi-bg .s-sub {
  color: #64748b;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 28px 24px;
  transition: background 0.2s;
}
.testi-card:hover {
  background: rgba(255, 255, 255, 0.07);
}
.stars {
  color: var(--orange);
  font-size: 13px;
  margin-bottom: 14px;
}
.testi-quote {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: white;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}
.testi-role {
  font-size: 11px;
  color: #64748b;
}

/* CTA */
.cta-sec {
  background: var(--blue);
  padding: 72px 24px;
  text-align: center;
}
.cta-sec h2 {
  font-size: clamp(26px, 4vw, 42px);
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.cta-sec p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}
.cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}
.cta-input {
  flex: 1;
  min-width: 210px;
  padding: 13px 18px;
  border-radius: 9px;
  border: none;
  font-size: 14px;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  outline: none;
}
.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.cta-input:focus {
  background: rgba(255, 255, 255, 0.22);
}
.btn-white {
  background: white;
  color: var(--blue);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 9px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-white:hover {
  background: var(--orange);
  color: white;
}
.cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
}
#cta-thanks {
  display: none;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 14px;
}

/* FOOTER */
footer {
  background: var(--gray-900);
  padding: 52px 24px 28px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand p {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
  margin-top: 14px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: white;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #334155;
}

/* LANG HIDING */
.d-none {
  display: none !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

/* SCROLL ANIM */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner,
  .fscreen-row,
  .fscreen-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .hero-screen-wrap {
    display: none;
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
}
