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

    :root {
      --primary: #2563eb;
      --primary-dark: #1e40af;
      --bg-dark: #1e293b;
      --bg-darker: #0f172a;
      --text: #1e293b;
      --text-light: #64748b;
      --border: #e2e8f0;
      --surface: #ffffff;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
      -webkit-font-smoothing: antialiased;
      color: var(--text);
      background: var(--bg-darker);
    }

    /* ── Navbar ─────────────────────────────── */

    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 64px;
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: white;
      font-weight: 800;
      font-size: 20px;
      text-decoration: none;
    }

    .navbar-logo svg {
      width: 28px;
      height: 28px;
    }

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

    .navbar-nav a {
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 12px;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }

    .navbar-nav a:hover {
      color: white;
      background: rgba(255, 255, 255, 0.06);
    }

    .navbar-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
      font-family: inherit;
    }

    .btn-ghost {
      color: rgba(255, 255, 255, 0.8);
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
      color: white;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    }

    .btn-primary:hover {
      box-shadow: 0 6px 22px rgba(37, 99, 235, 0.5);
      transform: translateY(-1px);
    }

    .btn-lg {
      padding: 16px 36px;
      font-size: 16px;
      border-radius: 12px;
    }

    /* ── Hero ───────────────────────────────── */

    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 100px 24px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('/vitrine/foodtruck-hero.jpg') center / cover no-repeat;
      filter: blur(4px);
      transform: scale(1.05);
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(15, 23, 42, 0.82) 0%,
        rgba(30, 41, 59, 0.75) 50%,
        rgba(15, 23, 42, 0.88) 100%
      );
    }

    .hero > *:not(.hero-bg) {
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37, 99, 235, 0.12);
      border: 1px solid rgba(37, 99, 235, 0.25);
      color: #93b4f8;
      padding: 8px 20px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 32px;
      letter-spacing: 0.3px;
    }

    .hero h1 {
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 800;
      color: white;
      line-height: 1.1;
      margin-bottom: 20px;
      max-width: 700px;
    }

    .hero h1 span {
      background: linear-gradient(135deg, #60a5fa, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.55);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* ── Features ───────────────────────────── */

    .features {
      padding: 100px 24px;
      background: var(--surface);
      scroll-margin-top: 72px;
    }

    .section-inner {
      max-width: 1080px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 32px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 12px;
    }

    .section-header p {
      font-size: 16px;
      color: var(--text-light);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 28px;
    }

    .feature-card {
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 28px;
      transition: all 0.25s;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 14px;
      margin-bottom: 20px;
      color: white;
    }

    .feature-icon svg {
      width: 26px;
      height: 26px;
    }

    .feature-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .feature-card p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ── Pricing ────────────────────────────── */

    .pricing {
      padding: 100px 24px;
      background: linear-gradient(160deg, var(--bg-dark), var(--bg-darker));
      scroll-margin-top: 72px;
    }

    .pricing .section-header h2 {
      color: white;
    }

    .pricing .section-header p {
      color: rgba(255, 255, 255, 0.5);
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      max-width: 680px;
      margin: 0 auto;
    }

    .pricing-card {
      background: white;
      border-radius: 20px;
      padding: 40px 32px;
      text-align: center;
      position: relative;
      transition: all 0.25s;
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }

    .pricing-card.featured {
      border: 2px solid var(--primary);
      box-shadow: 0 8px 40px rgba(37, 99, 235, 0.2);
    }

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

    .pricing-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text);
    }

    .pricing-card .price {
      font-size: 48px;
      font-weight: 800;
      color: var(--text);
      margin: 16px 0 4px;
    }

    .pricing-card .price span {
      font-size: 18px;
      font-weight: 500;
      color: var(--text-light);
    }

    .pricing-card .price-sub {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 28px;
    }

    .pricing-card ul {
      list-style: none;
      text-align: left;
      margin-bottom: 32px;
    }

    .pricing-card ul li {
      padding: 8px 0;
      font-size: 14px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pricing-card ul li svg {
      width: 18px;
      height: 18px;
      color: #10b981;
      flex-shrink: 0;
    }

    .pricing-card .btn {
      width: 100%;
      justify-content: center;
    }

    .pricing-card .old-price {
      text-decoration: line-through;
      color: var(--text-light);
      font-size: 16px;
      font-weight: 500;
    }

    /* ── Footer ─────────────────────────────── */

    .footer {
      padding: 40px 24px 32px;
      background: var(--bg-darker);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.35);
      font-size: 13px;
    }

    .footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 20px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: rgba(255, 255, 255, 0.75);
    }

    .footer-copy {
      margin: 0;
    }

    /* ── Responsive ─────────────────────────── */

    @media (max-width: 900px) {
      .navbar-nav {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .navbar {
        padding: 0 16px;
      }

      .btn {
        padding: 10px 16px;
        font-size: 13px;
      }

      .hero {
        padding: 90px 20px 60px;
      }

      .hero p {
        font-size: 16px;
      }

      .features, .pricing {
        padding: 60px 20px;
      }

      .pricing-cards {
        grid-template-columns: 1fr;
      }
    }
