:root {
      --appy-blue: #3B82F6;
      --appy-blue-light: #60A5FA;
      --appy-sky: #93C5FD;
      --appy-white: #F8FAFC;
      --appy-dark: #1E293B;
      --appy-soft: #EAF4FF;
      --appy-warm: #FFF7ED;
      --appy-yellow: #FBBF24;
      --appy-green: #22C55E;
      --shadow: 0 24px 70px rgba(30, 41, 59, 0.16);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 16px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
    }

    section[id],
    [id].anchor-target {
      scroll-margin-top: 140px;
    }

    body {
      margin: 0;
      font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--appy-dark);
      background:
        radial-gradient(circle at top left, rgba(147, 197, 253, 0.65), transparent 36%),
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.22), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f4f9ff 45%, #eef6ff 100%);
      overflow-x: hidden;
    }

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

    .page {
      width: min(1160px, calc(100% - 36px));
      margin: 0 auto;
    }

    header {
      padding: 24px 0;
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(248, 250, 252, 0.72);
      border-bottom: 1px solid rgba(147, 197, 253, 0.22);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Poppins', sans-serif;
      font-weight: 900;
      font-size: 28px;
      letter-spacing: -0.04em;
    }

    .brand-logo {
      display: block;
      width: 154px;
      max-height: 72px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      font-weight: 800;
      color: #475569;
    }

    .nav-links a:hover { color: var(--appy-blue); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      border-radius: 999px;
      padding: 15px 24px;
      font-weight: 900;
      font-size: 16px;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      box-shadow: 0 14px 36px rgba(59, 130, 246, 0.28);
    }

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

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--appy-blue), #2563EB);
    }

    .btn-secondary {
      color: var(--appy-dark);
      background: #fff;
      border: 2px solid rgba(59, 130, 246, 0.18);
      box-shadow: 0 14px 36px rgba(30, 41, 59, 0.08);
    }

    .hero {
      padding: 72px 0 52px;
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 44px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.10);
      color: #1D4ED8;
      font-weight: 900;
      margin-bottom: 18px;
    }

    h1, h2, h3 {
      font-family: 'Poppins', sans-serif;
      line-height: 1.04;
      letter-spacing: -0.055em;
      margin: 0;
    }

    h1 {
      font-size: clamp(48px, 7vw, 86px);
      max-width: 760px;
    }

    .hero p {
      font-size: 22px;
      line-height: 1.55;
      color: #475569;
      max-width: 680px;
      margin: 24px 0 30px;
    }


    .guide-cta-stack {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      vertical-align: top;
    }

    .guide-cta-stack .cta-or {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: .04em;
      color: #64748B;
      line-height: 1;
      text-align: center;
      margin: 14px 0 12px;
    }

    .guide-cta-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-start-now {
      background: #fff;
      color: var(--appy-dark);
      border: 2px solid rgba(59, 130, 246, 0.18);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    }

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

    .hero-card {
      position: relative;
      padding: 22px;
      border-radius: var(--radius-xl);
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(147, 197, 253, 0.35);
      box-shadow: var(--shadow);
    }

    .hero-card img {
      display: block;
      width: 100%;
      border-radius: 28px;
    }

    .hero-appy-cta {
      display: flex;
      justify-content: center;
      margin-top: 18px;
    }

    .speech {
      position: absolute;
      right: -8px;
      top: 26px;
      max-width: 250px;
      padding: 16px 18px;
      border-radius: 24px 24px 8px 24px;
      background: #fff;
      box-shadow: 0 18px 40px rgba(30, 41, 59, 0.16);
      font-weight: 900;
      color: #2563EB;
    }

    .trust-strip {
      max-width: 900px;
      margin: 32px auto 70px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      justify-content: center;
    }

    .trust-card {
      padding: 20px;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(147, 197, 253, 0.28);
      box-shadow: 0 12px 34px rgba(30, 41, 59, 0.07);
      font-weight: 900;
      font-size: 18px;
    }

    section { padding: 56px 0; }

    .section-head {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 34px;
    }

    .section-head h2 {
      font-size: clamp(34px, 5vw, 58px);
    }

    .section-head p {
      font-size: 20px;
      color: #475569;
      line-height: 1.6;
    }

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

    .card {
      padding: 28px;
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid rgba(147, 197, 253, 0.34);
      box-shadow: 0 16px 42px rgba(30, 41, 59, 0.08);
    }

    .icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      margin-bottom: 18px;
      font-size: 26px;
      background: var(--appy-soft);
    }

    .card h3 {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .card p, .card li {
      color: #475569;
      line-height: 1.55;
      font-size: 17px;
    }

    .split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 34px;
      align-items: center;
      padding: 34px;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.10), rgba(255, 255, 255, 0.85));
      border: 1px solid rgba(147, 197, 253, 0.34);
      box-shadow: var(--shadow);
    }

    .split img {
      width: 100%;
      border-radius: 28px;
      box-shadow: 0 20px 48px rgba(30, 41, 59, 0.16);
    }

    .split h2 {
      font-size: clamp(34px, 5vw, 54px);
      margin-bottom: 18px;
    }

    .split p {
      color: #475569;
      font-size: 20px;
      line-height: 1.6;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      counter-reset: step;
    }

    .step {
      position: relative;
      min-height: 178px;
      padding: 26px 22px;
      border-radius: 26px;
      background: #fff;
      border: 1px solid rgba(147, 197, 253, 0.34);
      box-shadow: 0 14px 36px rgba(30, 41, 59, 0.08);
    }

    .step::before {
      counter-increment: step;
      content: counter(step);
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 14px;
      color: white;
      font-weight: 900;
      background: linear-gradient(135deg, var(--appy-blue), var(--appy-blue-light));
      margin-bottom: 16px;
    }

    .step h3 { font-size: 21px; }
    .step p { color: #475569; line-height: 1.5; }

    .price-box {
      padding: 42px;
      border-radius: var(--radius-xl);
      background: #fff;
      border: 2px solid rgba(59, 130, 246, 0.18);
      box-shadow: var(--shadow);
      text-align: center;
      max-width: 780px;
      margin: 0 auto;
    }

    .price {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(48px, 6vw, 72px);
      font-weight: 900;
      letter-spacing: -0.06em;
      color: var(--appy-blue);
      margin: 12px 0;
    }

    .fine {
      color: #64748B;
      font-size: 15px;
      margin-top: 14px;
    }

    .cta {
      position: relative;
      overflow: hidden;
      margin: 56px 0;
      padding: 54px;
      border-radius: 42px;
      background: linear-gradient(135deg, #2563EB, #60A5FA 58%, #93C5FD);
      color: #fff;
      box-shadow: 0 28px 80px rgba(37, 99, 235, 0.35);
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 28px;
      align-items: center;
    }

    .cta h2 {
      font-size: clamp(38px, 5vw, 64px);
      margin-bottom: 16px;
    }

    .cta p {
      font-size: 21px;
      line-height: 1.55;
      max-width: 720px;
      opacity: .96;
    }

    .cta img {
      width: 100%;
      border-radius: 28px;
      transform: rotate(2deg);
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    }

    footer {
      padding: 42px 0;
      color: #64748B;
      text-align: center;
      font-weight: 800;
    }

    @media (max-width: 920px) {
      .hero, .split, .cta { grid-template-columns: 1fr; }
      .cards, .trust-strip { grid-template-columns: 1fr; }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .speech { position: static; margin: 14px auto 0; }
      .nav-links { display: none; }
    }

    @media (max-width: 560px) {
      .page { width: min(100% - 24px, 1160px); }
      .hero { padding-top: 44px; }
      h1 { font-size: 44px; }
      .hero p { font-size: 19px; }
      .steps { grid-template-columns: 1fr; }
      .cta, .split, .price-box { padding: 28px; }
      .hero-actions .btn { width: 100%; }
      .guide-cta-row { flex-direction: column; align-items: center; }
      .guide-cta-stack { width: 100%; }
      .guide-cta-stack .btn { width: 100%; }
    }
