:root {
  --navy: #0d2540;
  --navy-2: #082137;
  --blue: #06b6ff;
  --cyan: #10d7df;
  --green: #70e000;
  --pink: #ff2ba8;
  --orange: #ff9f1c;
  --purple: #7c3aed;
  --text: #172033;
  --muted: #617086;
  --line: rgba(13, 37, 64, 0.12);
  --soft: #f5f8ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 37, 64, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 999;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  transition: top 0.2s ease;
}

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

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

.narrow {
  width: min(100% - 40px, 870px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 37, 64, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(13, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  color: #24364f;
  transition: 0.2s ease;
}

.main-nav a:hover {
  color: var(--navy);
  background: rgba(6, 182, 255, 0.09);
}

.main-nav .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--pink), var(--orange));
  box-shadow: 0 14px 32px rgba(255, 43, 168, 0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
  cursor: pointer;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 999px;
}

.section {
  padding: 100px 0;
}

.section-gradient {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 43, 168, 0.17), transparent 28%),
    radial-gradient(circle at 72% 16%, rgba(112, 224, 0, 0.16), transparent 26%),
    radial-gradient(circle at 53% 66%, rgba(6, 182, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.section-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(13,37,64,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(13,37,64,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 84%);
  pointer-events: none;
}

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 80px 0 110px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cc207f;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--orange));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
  color: var(--navy);
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--navy);
  margin-bottom: 24px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 10px;
}

.hero-text,
.section-copy p,
.section-heading p {
  font-size: 1.09rem;
  color: var(--muted);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-actions,
.cta-box {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple) 48%, var(--pink));
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.26);
}

.btn-secondary,
.btn-outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(13, 37, 64, 0.14);
  box-shadow: 0 14px 32px rgba(13, 37, 64, 0.08);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(13, 37, 64, 0.08);
}

.hero-showcase {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.phone-mockup {
  position: relative;
  width: min(100%, 360px);
  height: 690px;
  border-radius: 54px;
  padding: 16px;
  background: linear-gradient(145deg, #061b32, #0d3151 46%, #041425);
  box-shadow: 0 38px 90px rgba(13, 37, 64, 0.36), inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transform: rotate(3deg);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 58px;
  background: linear-gradient(150deg, var(--blue), var(--pink), var(--orange), var(--green));
  z-index: -1;
  opacity: 0.78;
  filter: blur(0.2px);
}

.phone-bar {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #06192b;
  z-index: 3;
}

.phone-screen {
  height: 100%;
  border-radius: 42px;
  padding: 58px 22px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.98)),
    radial-gradient(circle at 18% 20%, rgba(255,43,168,0.3), transparent 22%),
    radial-gradient(circle at 85% 7%, rgba(112,224,0,0.26), transparent 24%);
  overflow: hidden;
}

.app-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.app-top img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 12px 28px rgba(13,37,64,0.12);
}

.app-top span,
.product-card p,
.order-line small,
.qr-card span,
.stat-card span {
  color: var(--muted);
}

.app-top strong {
  display: block;
  color: var(--navy);
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.product-card {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #effbff);
  box-shadow: 0 18px 42px rgba(13,37,64,0.12);
  border: 1px solid rgba(255,255,255,0.75);
}

.product-card .pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #84205e;
  background: rgba(255, 43, 168, 0.12);
  font-weight: 900;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.product-card strong {
  font-size: 1.7rem;
  color: var(--navy);
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.mini-list span {
  height: 92px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(6,182,255,0.2), rgba(255,43,168,0.14));
  box-shadow: inset 0 0 0 1px rgba(13,37,64,0.08);
}

.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  margin-bottom: 10px;
}

.order-line b {
  width: 54%;
  height: 12px;
  border-radius: 999px;
  background: #d7e6f5;
}

.order-line small {
  width: 26%;
  height: 12px;
  border-radius: 999px;
  background: #eaf1f8;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255,255,255,0.75);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.qr-card {
  left: 4%;
  top: 8%;
  padding: 16px;
  width: 230px;
  animation: float 5s ease-in-out infinite;
}

.qr-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 10px;
}

.qr-card strong,
.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.stat-card {
  right: 1%;
  bottom: 12%;
  width: 240px;
  padding: 20px;
  animation: float 5.5s ease-in-out infinite reverse;
}

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

.logos-strip {
  padding: 24px 0;
  background: var(--navy);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.strip-grid span {
  color: rgba(255,255,255,0.9);
  text-align: center;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.two-col,
.portfolio-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.align-center {
  align-items: center;
}

.section-copy p {
  margin-bottom: 18px;
}

.feature-panel {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(13, 37, 64, 0.08);
}

.feature-item > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-weight: 950;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--pink));
}

.feature-item p,
.benefit-card p,
.step-card p,
.price-card p,
.price-card li,
.contact-copy p,
.contact-cards span,
.footer-grid p,
.footer-grid span,
.footer-grid a,
.faq-list p {
  color: var(--muted);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,43,168,0.24), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(112,224,0,0.18), transparent 28%),
    linear-gradient(180deg, var(--navy), var(--navy-2));
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-heading .eyebrow {
  color: #ff8fcf;
}

.section-heading {
  width: min(100%, 850px);
  margin-bottom: 48px;
}

.cards-grid,
.steps-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-card,
.step-card,
.price-card,
.contact-form {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

.benefit-card {
  padding: 28px;
  min-height: 260px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.benefit-card p {
  color: rgba(255,255,255,0.74);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.11);
  margin-bottom: 22px;
  font-size: 1.55rem;
}

.portfolio-grid {
  align-items: center;
}

.portfolio-media {
  position: relative;
}

.portfolio-frame {
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(135deg, var(--blue), var(--pink), var(--orange));
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.portfolio-frame img {
  width: 100%;
  border-radius: 28px;
  border: 10px solid #ffffff;
  aspect-ratio: 800 / 846;
  object-fit: cover;
}

.portfolio-badge {
  position: absolute;
  right: -12px;
  top: 34px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  background: var(--navy);
  box-shadow: 0 18px 38px rgba(13,37,64,0.24);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  color: #41546d;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-size: 0.8rem;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(6,182,255,0.1), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255,43,168,0.1), transparent 32%),
    var(--soft);
}

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

.step-card,
.price-card {
  padding: 28px;
  border: 1px solid var(--line);
}

.step-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  font-weight: 950;
  font-size: 1.18rem;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 468px;
}

.price-card ul {
  padding-left: 18px;
  margin: 22px 0 30px;
}

.price-card li {
  margin-bottom: 10px;
}

.price-card .btn {
  margin-top: auto;
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,252,255,0.98)),
    radial-gradient(circle at 25% 0%, rgba(255,43,168,0.18), transparent 30%);
  border: 2px solid rgba(6,182,255,0.24);
  box-shadow: 0 28px 74px rgba(6,182,255,0.18);
  transform: translateY(-16px);
}

.tag {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-weight: 900;
  font-size: 0.75rem;
}

.cta-section {
  padding: 70px 0;
}

.cta-box {
  justify-content: space-between;
  padding: 48px;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 12%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), #123a66 48%, #087fba);
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box p {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}

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

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13,37,64,0.06);
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.05rem;
}

.faq-list p {
  margin: 14px 0 0;
}

.section-contact {
  background:
    radial-gradient(circle at 12% 18%, rgba(112,224,0,0.11), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(255,43,168,0.1), transparent 28%),
    #f7fbff;
}

.contact-grid {
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.contact-cards div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.75);
}

.contact-cards strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(13,37,64,0.09);
}

.contact-form label {
  color: var(--navy);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(13,37,64,0.14);
  background: #fff;
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--text);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(6,182,255,0.72);
  box-shadow: 0 0 0 4px rgba(6,182,255,0.14);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 64px 0 28px;
  color: rgba(255,255,255,0.76);
  background: #06192b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 40px;
  padding-bottom: 34px;
}

.footer-grid img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-grid strong {
  display: block;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 9px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .portfolio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-showcase {
    min-height: 700px;
  }

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

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

  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }
}

@media (max-width: 820px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 78px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.22s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 13px 16px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 58px 0 82px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .hero-showcase {
    min-height: 620px;
  }

  .phone-mockup {
    width: min(100%, 320px);
    height: 615px;
  }

  .qr-card {
    left: 0;
    top: 0;
    width: 178px;
  }

  .stat-card {
    right: 0;
    width: 210px;
  }

  .cards-grid,
  .pricing-grid,
  .steps-grid,
  .footer-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .btn {
    width: 100%;
  }

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

  .hero-showcase {
    min-height: 585px;
  }

  .phone-mockup {
    height: 560px;
    width: 286px;
    border-radius: 46px;
    padding: 12px;
  }

  .phone-screen {
    border-radius: 36px;
    padding: 54px 16px 18px;
  }

  .qr-card {
    width: 148px;
  }

  .stat-card {
    bottom: 0;
    width: 188px;
    padding: 16px;
  }

  .portfolio-badge {
    position: static;
    display: inline-flex;
    margin-top: 18px;
  }

  .cta-box {
    padding: 30px;
  }
}
