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

    :root {
      --orange: #f97316;
      --orange-dark: #ea580c;
      --orange-light: #fff7ed;
      --text: #0f172a;
      --muted: #64748b;
      --border: #e2e8f0;
      --bg: #ffffff;
      --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

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

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.9rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, #f97316, #fb923c);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.15rem;
      color: #fff;
    }

    .logo-text strong {
      display: block;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
    }

    .logo-text span {
      font-size: 0.72rem;
      color: var(--muted);
    }

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

    .nav-links a {
      font-size: 0.925rem;
      font-weight: 500;
      color: #475569;
      transition: color 0.2s;
    }

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

    .btn-get-started {
      padding: 0.6rem 1.35rem;
      font-size: 0.9rem;
      font-weight: 600;
      color: #fff;
      background: var(--orange);
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-get-started:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
      width: 40px;
      height: 40px;
      background: none;
      border: 1px solid var(--border);
      border-radius: 8px;
      cursor: pointer;
      font-size: 1.25rem;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 0.5rem;
      padding: 1rem 1.5rem 1.5rem;
      background: #fff;
      border-bottom: 1px solid var(--border);
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      padding: 0.65rem 0;
      font-weight: 500;
      color: #475569;
    }

    /* HERO */
    .hero {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3.5rem 1.5rem 4rem;
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 2.5rem;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.4rem 0.95rem;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--orange);
      background: var(--orange-light);
      border-radius: 999px;
      margin-bottom: 1.35rem;
      letter-spacing: 0.02em;
    }

    .hero h1 {
      font-size: clamp(2.1rem, 4.2vw, 3rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin-bottom: 1rem;
      color: #0f172a;
    }

    .hero h1 .orange { color: var(--orange); }

    .hero-desc {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 460px;
      margin-bottom: 1.5rem;
      line-height: 1.65;
    }

    .hero-checks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.65rem 1.5rem;
      margin-bottom: 1.75rem;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.92rem;
      font-weight: 500;
      color: #334155;
    }

    .check-item .tick {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #ffedd5;
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.8rem 1.5rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: #fff;
      background: var(--orange);
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.8rem 1.4rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: #334155;
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-outline:hover {
      border-color: #cbd5e1;
      background: #f8fafc;
    }

    .hero-visual {
      position: relative;
    }

    .hero-img {
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    }

    .hero-img img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      min-height: 360px;
      max-height: 440px;
      object-position: center;
    }

    .hero-float-card {
      position: absolute;
      bottom: 1.25rem;
      left: 1.25rem;
      right: 1.25rem;
      max-width: 280px;
      background: #fff;
      border-radius: 14px;
      padding: 1rem 1.1rem;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .float-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f97316, #fb923c);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #fff;
      flex-shrink: 0;
    }

    .float-text strong {
      display: block;
      font-size: 0.88rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .float-text p {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.4;
    }

    /* FEATURES */
    .features {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 1.5rem 4rem;
      text-align: center;
    }

    .section-label {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--orange);
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-size: clamp(1.6rem, 3.2vw, 2.2rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
      color: #0f172a;
    }

    .section-underline {
      width: 48px;
      height: 3px;
      background: var(--orange);
      border-radius: 2px;
      margin: 0 auto 2.5rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1rem;
    }

    .feature-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem 1rem;
      text-align: center;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }

    .feature-card:hover {
      border-color: #fdba74;
      box-shadow: 0 8px 24px rgba(249, 115, 22, 0.1);
      transform: translateY(-3px);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 1rem;
      border-radius: 12px;
      background: var(--orange-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      color: var(--orange);
    }

    .feature-card h3 {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      color: #0f172a;
    }

    .feature-card p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* CTA BANNER */
    .cta-banner {
      max-width: 1200px;
      margin: 0 auto 4rem;
      padding: 0 1.5rem;
    }

    .cta-inner {
      background: linear-gradient(135deg, #f97316, #fb923c);
      border-radius: 20px;
      padding: 2rem 2.5rem;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 2rem;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .cta-mockup {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .laptop-frame {
      width: 100%;
      max-width: 320px;
      background: #1e293b;
      border-radius: 12px 12px 4px 4px;
      padding: 8px 8px 0;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .laptop-screen {
      border-radius: 6px 6px 0 0;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      background: #0f172a;
    }

    .laptop-screen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .floating-burger {
      position: absolute;
      bottom: -10px;
      left: 10%;
      width: 90px;
      height: 90px;
      border-radius: 14px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      border: 3px solid #fff;
    }

    .floating-burger img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cta-content {
      color: #fff;
    }

    .cta-content h2 {
      font-size: clamp(1.4rem, 2.8vw, 1.85rem);
      font-weight: 800;
      margin-bottom: 0.6rem;
      line-height: 1.25;
    }

    .cta-content p {
      font-size: 0.95rem;
      opacity: 0.95;
      margin-bottom: 1.35rem;
      max-width: 400px;
      line-height: 1.55;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-wrap: wrap;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.75rem 1.4rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--orange);
      background: #fff;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-white:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .cta-note {
      font-size: 0.9rem;
      font-style: italic;
      opacity: 0.9;
    }

    /* WHY + CONNECT */
    .bottom-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 1.5rem 4rem;
      display: grid;
      grid-template-columns: 1.3fr 0.9fr;
      gap: 2rem;
      align-items: start;
    }

    .why-label {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--orange);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .why-title {
      font-size: clamp(1.5rem, 3vw, 1.9rem);
      font-weight: 800;
      margin-bottom: 0.6rem;
      letter-spacing: -0.02em;
    }

    .why-desc {
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 2rem;
      max-width: 480px;
      line-height: 1.6;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    .stat-item {
      text-align: center;
      padding: 1rem 0.5rem;
    }

    .stat-icon {
      width: 44px;
      height: 44px;
      margin: 0 auto 0.65rem;
      border-radius: 50%;
      background: var(--orange-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      color: var(--orange);
    }

    .stat-value {
      font-size: 1.35rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 0.15rem;
    }

    .stat-label {
      font-size: 0.82rem;
      color: var(--muted);
    }

    .connect-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem 1.5rem;
      box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    }

    .connect-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .connect-card > p {
      font-size: 0.92rem;
      color: var(--muted);
      margin-bottom: 1.25rem;
      line-height: 1.55;
    }

    .connect-list {
      list-style: none;
      margin-bottom: 1.5rem;
    }

    .connect-list li {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.92rem;
      font-weight: 500;
      color: #334155;
      margin-bottom: 0.6rem;
    }

    .connect-list .tick {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #ffedd5;
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 700;
      flex-shrink: 0;
    }

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

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      background: #fafafa;
      padding: 2rem 1.5rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }

    .footer-brand .logo-icon {
      width: 32px;
      height: 32px;
      font-size: 0.95rem;
    }

    .footer-brand strong {
      font-size: 1rem;
    }

    .footer-brand span {
      font-size: 0.75rem;
      color: var(--muted);
      display: block;
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }

    .footer-links a {
      font-size: 0.9rem;
      color: #64748b;
      font-weight: 500;
    }

    .footer-links a:hover { color: var(--orange); }

    .footer-socials {
      display: flex;
      gap: 0.6rem;
    }

    .footer-socials a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: #64748b;
      transition: border-color 0.2s, color 0.2s;
    }

    .footer-socials a:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    /* RESPONSIVE */
    @media (max-width: 1100px) {
      .feature-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2.5rem;
      }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-checks {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
      }
      .hero-btns { justify-content: center; }
      .hero-float-card {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
      }
      .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
      }
      .cta-content p { margin-left: auto; margin-right: auto; }
      .cta-actions { justify-content: center; }
      .bottom-section {
        grid-template-columns: 1fr;
      }
      .why-desc { margin-left: auto; margin-right: auto; text-align: center; }
      .why-label, .why-title { text-align: center; }
    }

    @media (max-width: 700px) {
      .nav-links { display: none; }
      .menu-toggle { display: flex; align-items: center; justify-content: center; }
      .feature-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .footer-inner {
        flex-direction: column;
        text-align: center;
      }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }

    @media (max-width: 480px) {
      .feature-grid { grid-template-columns: 1fr; }
      .hero-checks { grid-template-columns: 1fr; }
      .floating-burger { width: 70px; height: 70px; }
    }