    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary:       #F97316;
      --primary-light: #FB923C;
      --primary-dark:  #EA580C;
      --primary-pale:  #FFF7ED;
      --primary-pale2: #FFEDD5;
      --accent:        #F59E0B;
      --accent2:       #10B981;
      --bg:            #FFFFFF;
      --bg2:           #F9FAFB;
      --bg3:           #F3F4F6;
      --border:        #E5E7EB;
      --border-strong: #D1D5DB;
      --text:          #111827;
      --text-muted:    #6B7280;
      --text-subtle:   #9CA3AF;
      --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
      --shadow-md:     0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
      --shadow-lg:     0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
      --shadow-orange: 0 8px 30px rgba(249,115,22,0.30);
      --radius:        14px;
      --radius-lg:     20px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg2); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

    /* ── SCROLL PROGRESS ── */
    .scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      z-index: 9999;
      transition: width 0.1s linear;
      box-shadow: 0 0 8px rgba(249,115,22,0.5);
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 5%;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.4s ease;
    }

    nav.scrolled {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo-text {
      font-size: 21px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 500;
      padding: 7px 14px;
      border-radius: 8px;
      transition: all 0.2s;
    }

    .nav-links a:hover { color: var(--text); background: var(--bg3); }

    .nav-cta {
      background: var(--primary) !important;
      color: white !important;
      padding: 8px 20px !important;
      box-shadow: var(--shadow-orange);
    }

    .nav-cta:hover {
      background: var(--primary-dark) !important;
      transform: translateY(-1px);
      box-shadow: 0 10px 30px rgba(249,115,22,0.4) !important;
    }

    .nav-mobile-btn {
      display: none;
      background: none;
      border: none;
      color: var(--text);
      cursor: pointer;
      padding: 8px;
    }

    /* ── FLOATING CTA ── */
    .floating-cta {
      position: fixed;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      padding: 14px 32px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      z-index: 100;
      box-shadow: 0 8px 40px rgba(249,115,22,0.45);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .floating-cta.show { transform: translateX(-50%) translateY(0); }
    .floating-cta:hover { box-shadow: 0 12px 50px rgba(249,115,22,0.6); transform: translateX(-50%) translateY(-4px); }

    /* ── TOAST ── */
    .toast {
      position: fixed;
      bottom: 32px;
      right: 32px;
      background: var(--accent2);
      color: white;
      padding: 14px 24px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      z-index: 9999;
      transform: translateY(80px);
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 8px 30px rgba(16,185,129,0.35);
    }

    .toast.show { transform: translateY(0); opacity: 1; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 5% 80px;
      position: relative;
      overflow: hidden;
      background: var(--bg);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    /* subtle dot pattern */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(249,115,22,0.12) 1px, transparent 1px);
      background-size: 36px 36px;
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.18;
      animation: orbFloat 9s ease-in-out infinite;
    }

    .hero-orb-1 {
      width: 560px; height: 560px;
      background: var(--primary);
      top: -180px; right: -80px;
      animation-delay: 0s;
    }

    .hero-orb-2 {
      width: 400px; height: 400px;
      background: var(--accent);
      top: -60px; left: -120px;
      animation-delay: -4s;
    }

    .hero-orb-3 {
      width: 320px; height: 320px;
      background: var(--primary-light);
      bottom: -80px; left: 40%;
      animation-delay: -7s;
    }

    @keyframes orbFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-28px) scale(1.04); }
    }

    .hero-content { position: relative; z-index: 2; max-width: 900px; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary-pale2);
      border: 1px solid rgba(249,115,22,0.25);
      color: var(--primary-dark);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 32px;
      animation: fadeInUp 0.7s ease forwards;
      opacity: 0;
    }

    .hero-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent2);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
      50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
    }

    .hero-title {
      font-size: clamp(40px, 7vw, 78px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -2.5px;
      color: var(--text);
      margin-bottom: 24px;
      animation: fadeInUp 0.7s 0.12s ease forwards;
      opacity: 0;
    }

    .hero-title .grad {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-rotate {
      display: inline-block;
      text-align: center;
      vertical-align: top;
      perspective: 700px;
    }
    .hero-rotate-word {
      display: inline-block;
      white-space: nowrap;
      background: linear-gradient(110deg, var(--primary-dark) 0%, var(--primary) 30%, var(--accent) 55%, var(--primary) 80%, var(--primary-dark) 100%);
      background-size: 250% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: gradientFlow 4.5s linear infinite;
      will-change: transform, opacity, filter;
    }
    @keyframes gradientFlow {
      to { background-position: 250% center; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-rotate-word { animation: none; }
    }

    .hero-sub {
      font-size: clamp(16px, 2.2vw, 19px);
      color: var(--text-muted);
      max-width: 620px;
      margin: 0 auto 48px;
      font-weight: 400;
      animation: fadeInUp 0.7s 0.24s ease forwards;
      opacity: 0;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 0.7s 0.36s ease forwards;
      opacity: 0;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      text-decoration: none;
      padding: 15px 30px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 700;
      transition: all 0.3s;
      box-shadow: var(--shadow-orange);
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(249,115,22,0.45);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: white;
      color: var(--text);
      text-decoration: none;
      padding: 15px 30px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 700;
      transition: all 0.3s;
      border: 1.5px solid var(--border-strong);
      cursor: pointer;
      box-shadow: var(--shadow-sm);
    }

    .btn-ghost:hover {
      border-color: var(--primary-light);
      color: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      justify-content: center;
      margin-top: 80px;
      animation: fadeInUp 0.7s 0.5s ease forwards;
      opacity: 0;
      flex-wrap: wrap;
    }

    .hero-stat { text-align: center; }

    .hero-stat-num {
      font-size: 38px;
      font-weight: 900;
      letter-spacing: -1.5px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 6px;
      font-weight: 500;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── MARQUEE ── */
    .marquee-section {
      padding: 22px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      background: var(--bg2);
    }

    .marquee-track {
      display: flex;
      gap: 56px;
      white-space: nowrap;
      animation: marquee 32s linear infinite;
      width: max-content;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    .marquee-item svg { color: var(--primary); }

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

    /* ── SECTIONS ── */
    section { padding: 110px 5%; }

    .section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--primary);
      background: var(--primary-pale2);
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 18px;
    }

    .section-title {
      font-size: clamp(30px, 4.5vw, 50px);
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.1;
      color: var(--text);
      margin-bottom: 18px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 540px;
      font-weight: 400;
      line-height: 1.7;
    }

    .section-header { max-width: 1200px; margin: 0 auto 64px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-sub { margin: 0 auto; }

    /* ── FEATURES ── */
    #features { background: var(--bg2); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .feature-card {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
      transition: all 0.35s ease;
      opacity: 0;
      transform: translateY(18px);
      box-shadow: var(--shadow-sm);
    }

    .feature-card.visible { opacity: 1; transform: translateY(0); }

    .feature-card:hover {
      border-color: var(--primary-light);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(249,115,22,0.12), var(--shadow-md);
    }

    .feature-icon {
      width: 54px; height: 54px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 22px;
    }

    .feature-title {
      font-size: 19px;
      font-weight: 700;
      letter-spacing: -0.3px;
      margin-bottom: 10px;
      color: var(--text);
    }

    .feature-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
    }

    .feature-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 18px;
    }

    .tag {
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 100px;
      background: var(--primary-pale2);
      color: var(--primary-dark);
      border: 1px solid rgba(249,115,22,0.2);
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }

    /* ── HOW IT WORKS ── */
    #jak-dziala { background: var(--bg); }

    .steps-container {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }

    .steps-line {
      position: absolute;
      left: 35px;
      top: 36px;
      bottom: 80px;
      width: 2px;
      background: linear-gradient(to bottom, var(--primary), var(--accent), transparent);
      opacity: 0.25;
    }

    .step {
      display: flex;
      gap: 40px;
      margin-bottom: 56px;
      align-items: flex-start;
      opacity: 0;
      transform: translateX(-18px);
      transition: all 0.55s ease;
    }

    .step.visible { opacity: 1; transform: translateX(0); }

    .step-num {
      flex-shrink: 0;
      width: 70px; height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 900;
      color: white;
      box-shadow: var(--shadow-orange);
      position: relative;
      z-index: 1;
    }

    .step-content { flex: 1; padding-top: 14px; }

    .step-title {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.4px;
      margin-bottom: 10px;
      color: var(--text);
    }

    .step-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

    /* ── MODULES ── */
    #moduly { background: var(--bg2); }

    .modules-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .modules-list { display: flex; flex-direction: column; gap: 6px; }

    .module-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 18px;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.25s;
      border: 1.5px solid transparent;
    }

    .module-item:hover { background: white; border-color: var(--border); box-shadow: var(--shadow-sm); }

    .module-item.active {
      background: white;
      border-color: var(--primary-light);
      box-shadow: 0 4px 20px rgba(249,115,22,0.12);
    }

    .module-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .module-name { font-size: 15px; font-weight: 700; color: var(--text); }
    .module-desc { font-size: 13px; color: var(--text-muted); margin-top: 1px; }

    .modules-preview {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .modules-preview::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 240px; height: 240px;
      background: radial-gradient(circle, rgba(249,115,22,0.08), transparent 70%);
      pointer-events: none;
    }

    .preview-title {
      font-size: 26px;
      font-weight: 800;
      letter-spacing: -0.8px;
      margin-bottom: 14px;
      color: var(--text);
    }

    .preview-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }

    .preview-features { display: flex; flex-direction: column; gap: 11px; }

    .preview-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
    }

    .preview-check {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: rgba(249,115,22,0.1);
      border: 1.5px solid rgba(249,115,22,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 11px;
      color: var(--primary-dark);
      font-weight: 700;
    }

    /* ── PRICING ── */
    #cennik { background: var(--bg); }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .pricing-card {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px;
      position: relative;
      transition: all 0.35s;
      opacity: 0;
      transform: translateY(18px);
      box-shadow: var(--shadow-sm);
    }

    .pricing-card.visible { opacity: 1; transform: translateY(0); }

    .pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

    .pricing-card.popular {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(249,115,22,0.08), var(--shadow-lg);
    }

    .pricing-card.popular:hover {
      box-shadow: 0 0 0 4px rgba(249,115,22,0.12), 0 20px 60px rgba(249,115,22,0.18);
    }

    .pricing-badge {
      position: absolute;
      top: -14px; left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      font-size: 11px;
      font-weight: 800;
      padding: 4px 16px;
      border-radius: 100px;
      white-space: nowrap;
      letter-spacing: 0.8px;
      text-transform: uppercase;
    }

    .pricing-name { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }

    .pricing-price {
      font-size: 52px;
      font-weight: 900;
      letter-spacing: -2px;
      margin: 16px 0 4px;
      line-height: 1;
      color: var(--text);
    }

    .pricing-price span { font-size: 17px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
    .pricing-period { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
    .pricing-divider { height: 1px; background: var(--border); margin-bottom: 28px; }

    .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 11px;
      font-size: 14px;
      color: var(--text);
    }

    .pricing-features li.off { color: var(--text-subtle); }

    .pricing-features li span {
      width: 20px; height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .pricing-features li:not(.off) span { background: rgba(249,115,22,0.1); color: var(--primary-dark); }
    .pricing-features li.off span { background: var(--bg3); color: var(--text-subtle); }

    /* ── TESTIMONIALS ── */
    #opinie { background: var(--bg2); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
      transition: all 0.35s;
      opacity: 0;
      transform: translateY(18px);
      box-shadow: var(--shadow-sm);
    }

    .testimonial-card.visible { opacity: 1; transform: translateY(0); }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(249,115,22,0.2);
    }

    .testimonial-stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--primary); font-size: 17px; }
    .testimonial-text { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 26px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }

    .testimonial-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      font-size: 16px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .testimonial-name { font-size: 14px; font-weight: 700; color: var(--text); }
    .testimonial-role { font-size: 12px; color: var(--text-muted); }

    /* ── FAQ ── */
    #faq { background: var(--bg); }

    .faq-wrapper { max-width: 740px; margin: 0 auto; }

    .faq-item { border-bottom: 1.5px solid var(--border); overflow: hidden; }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 0;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      transition: color 0.2s;
      gap: 16px;
    }

    .faq-question:hover { color: var(--primary); }

    .faq-icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--bg3);
      border: 1.5px solid var(--border-strong);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s;
      font-size: 16px;
      color: var(--primary);
      font-weight: 700;
    }

    .faq-item.open .faq-icon {
      background: var(--primary);
      border-color: var(--primary);
      transform: rotate(45deg);
      color: white;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }

    /* ── CTA SECTION ── */
    #cta {
      background: var(--bg2);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(249,115,22,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(245,158,11,0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

    .cta-title {
      font-size: clamp(34px, 5vw, 52px);
      font-weight: 900;
      letter-spacing: -1.5px;
      color: var(--text);
      margin-bottom: 18px;
      line-height: 1.1;
    }

    .cta-sub { font-size: 17px; color: var(--text-muted); margin-bottom: 44px; }

    .cta-form {
      display: flex;
      gap: 10px;
      max-width: 500px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .cta-input {
      flex: 1;
      min-width: 200px;
      background: white;
      border: 1.5px solid var(--border-strong);
      border-radius: 12px;
      padding: 14px 18px;
      color: var(--text);
      font-size: 15px;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      box-shadow: var(--shadow-sm);
    }

    .cta-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
    }

    .cta-input::placeholder { color: var(--text-subtle); }

    .cta-note { font-size: 13px; color: var(--text-subtle); margin-top: 14px; }

    /* ── FOOTER ── */
    footer {
      background: var(--text);
      color: rgba(255,255,255,0.9);
      padding: 64px 5% 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto 48px;
    }

    .footer-logo-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 15px;
      color: white;
      margin-bottom: 14px;
    }

    .footer-brand-name { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: white; margin-bottom: 10px; }
    .footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
    .footer-brand-desc strong { color: rgba(255,255,255,0.8); }

    .footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,0.4); margin-bottom: 18px; }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-links a { text-decoration: none; color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
    .footer-links a:hover { color: var(--primary-light); }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.08);
      flex-wrap: wrap;
      gap: 14px;
    }

    .footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
    .footer-copy span { color: var(--primary-light); font-weight: 600; }

    .footer-legal { display: flex; gap: 22px; }
    .footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
    .footer-legal a:hover { color: white; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-mobile-btn { display: block; }
      .modules-wrapper { grid-template-columns: 1fr; gap: 36px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .hero-stats { gap: 32px; }
    }

    @media (max-width: 600px) {
      section { padding: 72px 5%; }
      .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .cta-form { flex-direction: column; }
      .hero-stats { gap: 22px; }
      .steps-line { display: none; }
      .step { flex-direction: column; gap: 14px; }
    }
    .nav-links a.nav-active { color: var(--primary); background: var(--primary-pale); }
    .nav-cta.nav-active { background: var(--primary-dark) !important; }
    body.subpage nav { background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
    body.subpage { padding-top: 0; }
    .nav-login {
      border: 1.5px solid var(--border-strong) !important;
      color: var(--text) !important;
      padding: 7px 15px !important;
      display: inline-flex !important;
      align-items: center;
      gap: 6px;
    }
    .nav-login:hover {
      border-color: var(--primary-light) !important;
      color: var(--primary-dark) !important;
      background: var(--primary-pale) !important;
    }
    .start-panel {
      position: absolute;
      top: calc(100% + 8px);
      right: 5%;
      width: min(372px, 92vw);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: 0 24px 60px rgba(17,24,39,0.20), 0 6px 16px rgba(0,0,0,0.06);
      padding: 22px;
      z-index: 300;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px) scale(0.97);
      transform-origin: top right;
      transition: opacity .26s ease, transform .26s cubic-bezier(.2,.85,.3,1), visibility .26s;
    }
    .start-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
    .start-panel-arrow {
      position: absolute;
      top: -7px; right: 38px;
      width: 13px; height: 13px;
      background: #fff;
      border-left: 1px solid var(--border);
      border-top: 1px solid var(--border);
      transform: rotate(45deg);
    }
    .start-panel-head { margin-bottom: 15px; }
    .start-panel-title { font-size: 17px; font-weight: 800; letter-spacing: -0.3px; color: var(--text); }
    .start-panel-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; line-height: 1.55; }
    .start-form { display: flex; flex-direction: column; gap: 9px; }
    .sf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
    .sf-input {
      width: 100%;
      background: var(--bg2);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 10px 12px;
      font-size: 13px;
      font-family: inherit;
      color: var(--text);
      outline: none;
      transition: border-color .18s, box-shadow .18s, background .18s;
    }
    .sf-input::placeholder { color: var(--text-subtle); }
    .sf-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(249,115,22,0.12); }
    .sf-select { cursor: pointer; }
    .sf-check {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: 11.5px; color: var(--text-muted); line-height: 1.5;
      margin: 2px 0; cursor: pointer;
    }
    .sf-check input { margin-top: 1px; width: 15px; height: 15px; accent-color: var(--primary); flex-shrink: 0; cursor: pointer; }
    .sf-check strong { color: var(--primary-dark); font-weight: 700; }
    .sf-submit {
      display: inline-flex; align-items: center; justify-content: center; gap: 7px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff; border: none; border-radius: 10px;
      padding: 12px 16px; font-size: 14px; font-weight: 700; font-family: inherit;
      cursor: pointer; margin-top: 4px;
      box-shadow: var(--shadow-orange);
      transition: transform .2s, box-shadow .2s;
    }
    .sf-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(249,115,22,0.42); }
    @media (max-width: 900px) {
      .start-panel {
        position: fixed;
        top: 78px; left: 50%; right: auto;
        transform: translateX(-50%) translateY(-12px) scale(0.97);
        transform-origin: top center;
      }
      .start-panel.open { transform: translateX(-50%) translateY(0) scale(1); }
      .start-panel-arrow { display: none; }
    }
    .codentra-logo {
      height: 1.25em;
      width: auto;
      vertical-align: -0.24em;
      display: inline-block;
    }
