

/* Base */
:root {
  --bg: #F7F8FA;
  --surface: #FFFFFF;
  --text: #111827;
  --muted: #6B7280;
  --border: #E5E7EB;
  --accent: #2563EB;
  --accent-2: #14B8A6;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.07), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(20, 184, 166, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
}
.section--tight { padding-top: 32px; }

.section__head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.section__label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.section__label::before,
.eyebrow .dot {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}

h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(2.9rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 12ch;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
p { color: var(--muted); }

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  max-width: 56ch;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}
.btn--primary:hover { box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.66);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.hover-lift {
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 99, 235, 0.18);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 248, 250, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}
.header__inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}
.brand__text {
  display: grid;
  gap: 2px;
}
.brand__text strong { font-size: 0.98rem; }
.brand__text small { color: var(--muted); font-size: 0.82rem; }

.nav {
  display: none;
  gap: 26px;
  color: var(--muted);
}
.nav a {
  position: relative;
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1.5px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: transform .22s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.8);
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 0;
}
.menu-toggle span {
  width: 18px;
  height: 1.8px;
  border-radius: 999px;
  background: var(--text);
  display: block;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.header__cta { display: none; }

.mobile-menu {
  display: grid;
  gap: 10px;
  padding: 0 16px 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .35s var(--ease), opacity .25s var(--ease), transform .25s var(--ease);
}
.mobile-menu.is-open {
  max-height: 340px;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a:not(.btn) {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--border);
}
.mobile-menu__cta { margin-top: 4px; }

.hero {
  padding-top: 52px;
}
.hero__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero__content {
  display: grid;
  gap: 18px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}
.stat {
  padding: 18px 18px 16px;
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.stat strong {
  display: block;
  font-size: 0.97rem;
  margin-bottom: 4px;
}
.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__panel .panel {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel__top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.chip {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.8);
  color: var(--muted);
  font-size: 0.84rem;
}
.chip--accent {
  color: #0f766e;
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.18);
}
.panel__mockup {
  display: grid;
  gap: 16px;
}
.mockup__browser {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, #141A23, #0F172A);
}
.mockup__browser span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.24);
}
.mockup__url {
  margin-left: 10px;
  height: 10px;
  width: min(200px, 45vw);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.mockup__card,
.mockup__list {
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
}
.mockup__card {
  padding: 18px;
}
.mockup__metric b {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.mockup__metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.mockup__bars {
  height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 10px;
  margin-top: 18px;
}
.mockup__bars span {
  height: var(--h);
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, rgba(37,99,235,0.95), rgba(20,184,166,0.9));
  box-shadow: inset 0 -12px 18px rgba(255,255,255,0.12);
}
.mockup__list {
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}
.mockup__list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.mockup__list i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.cards,
.case-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}
.cards--3,
.cards--4 { grid-template-columns: 1fr; }

.card,
.case-card,
.contact-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.card {
  padding: 22px;
  display: grid;
  gap: 14px;
}
.card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--accent);
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.1);
  font-weight: 700;
}
.tags {
  list-style: none;
  padding: 0;
  margin: 2px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags li,
.meta span {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
}

.case-grid {
  grid-template-columns: 1fr;
}
.case-card {
  overflow: hidden;
}
.case-card__visual {
  padding: 18px;
}
.screen {
  border-radius: 24px;
  background: linear-gradient(180deg, #0F172A, #111827);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px;
  min-height: 250px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.screen__header {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}
.screen__header span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
.screen__body {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.1fr 0.9fr;
}
.screen__left,
.screen__right,
.dashboard__panel,
.dashboard__stats span,
.landing__badge,
.landing__title,
.landing__text,
.landing__cta {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}
.line {
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 10px;
}
.l1 { width: 84%; }
.l2 { width: 68%; }
.l3 { width: 44%; }
.screen__right {
  display: grid;
  gap: 10px;
  padding: 12px;
}
.product {
  aspect-ratio: 1/1;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(37,99,235,0.65), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(20,184,166,0.55), transparent 38%),
    rgba(255,255,255,0.05);
}

.screen__body--dashboard {
  grid-template-columns: 1fr;
}
.dashboard__panel {
  min-height: 140px;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.22), rgba(20,184,166,0.22)),
    rgba(255,255,255,0.05);
}
.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dashboard__stats span {
  height: 68px;
  background: rgba(255,255,255,0.06);
}

.screen__body--automation {
  position: relative;
  min-height: 180px;
}
.node {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37,99,235,0.85), rgba(20,184,166,0.85));
  box-shadow: 0 16px 24px rgba(0,0,0,0.18);
}
.node--a { left: 0; top: 18px; }
.node--b { right: 0; top: 18px; }
.node--c { left: 50%; top: 106px; transform: translateX(-50%); }
.connector {
  position: absolute;
  inset: 42px 52px 52px;
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 24px;
}

.screen__body--landing {
  grid-template-columns: 1fr;
  align-content: start;
}
.landing__badge {
  width: 84px;
  height: 24px;
  margin-top: 4px;
}
.landing__title {
  width: min(72%, 180px);
  height: 22px;
}
.landing__text {
  width: min(88%, 230px);
  height: 14px;
}
.landing__cta {
  width: 118px;
  height: 42px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.case-card__body {
  padding: 0 22px 22px;
  display: grid;
  gap: 12px;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case-card strong {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 600;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}
.timeline__track {
  display: none;
}
.timeline__item {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.timeline__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(37,99,235,0.08);
  color: var(--accent);
  font-weight: 700;
}

.contact-grid {
  grid-template-columns: 1fr;
}
.contact-card {
  padding: 24px;
  display: grid;
  gap: 8px;
}
.contact-card__label {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
}
.contact-card strong {
  font-size: 1.15rem;
}
.contact-card span:last-child {
  color: var(--muted);
}

.footer {
  padding: 26px 0 36px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
}
.footer__inner {
  display: grid;
  gap: 18px;
}
.footer__meta {
  display: grid;
  gap: 12px;
  justify-items: start;
}
.footer__meta span {
  color: var(--muted);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text);
}
.footer__links a {
  color: var(--muted);
  transition: color .2s var(--ease);
}
.footer__links a:hover { color: var(--text); }

.case-card__actions {
  padding: 0 22px 22px;
}

.case-card__more {
  width: 100%;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
}

.project-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(10px);
}

.project-modal__dialog {
  position: relative;
  width: min(100%, 920px);
  max-height: min(90vh, 920px);
  overflow: auto;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
  display: grid;
  gap: 18px;
  padding: 18px;
  transform: translateY(12px) scale(0.98);
  transition: transform .25s var(--ease);
}

.project-modal.is-open .project-modal__dialog {
  transform: translateY(0) scale(1);
}

.project-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  z-index: 2;
}

.project-modal__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
}

.project-modal__content {
  display: grid;
  gap: 12px;
  padding: 0 4px 6px;
}

.project-modal__content p {
  white-space: pre-line;
}

body.modal-open {
  overflow: hidden;
}

@media (min-width: 720px) {
  .project-modal__dialog {
    padding: 24px;
  }
}

@media (min-width: 980px) {
  .project-modal__dialog {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .project-modal__media {
    position: sticky;
    top: 0;
  }

  .project-modal__media img {
    height: 100%;
    max-height: calc(90vh - 48px);
  }

  .project-modal__content {
    padding-top: 8px;
  }
}


/* Decorative elements */
.bg-orb {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.9;
}
.orb-1 {
  width: 260px;
  height: 260px;
  top: 100px;
  left: -70px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 66%);
}
.orb-2 {
  width: 280px;
  height: 280px;
  top: 22vh;
  right: -90px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.18), transparent 64%);
}
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 88%);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 720px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer__inner {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .menu-toggle,
  .mobile-menu { display: none; }
  .nav,
  .header__cta { display: inline-flex; }
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
  }
  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-top: 36px;
  }
  .timeline__track {
    display: block;
    position: absolute;
    top: 18px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(37,99,235,0.2), rgba(20,184,166,0.25));
  }
  .timeline__item::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 20px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.08);
  }
}

@media (max-width: 979px) {
  .header__cta { display: none; }
}

@media (max-width: 719px) {
  .section { padding: 72px 0; }
  h1 { max-width: 10ch; }
}
.pricing-section {
  padding-top: 18px;
}

.pricing-box {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.pricing-box__content {
  display: grid;
  gap: 12px;
}

.pricing-box h2 {
  max-width: 16ch;
}

.pricing-box p {
  max-width: 68ch;
}
.privacy-note{
  padding-left: 20px;
  padding-right: 20px;
}


.pricing-box__aside {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

@media (min-width: 980px) {
  .pricing-box {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 28px;
  }

  .pricing-box__aside {
    justify-content: flex-end;
  }
}