   :root {
      --primary: #ff7b30;
      --primary-dark: #e0611f;
      --primary-soft: #fff3ea;
      --bg: #f4f5fb;
      --text-main: #111827;
      --text-muted: #6b7280;
      --border-soft: #e5e7eb;
      --card-bg: #ffffff;
      --radius-xl: 24px;
      --radius-lg: 18px;
      --shadow-soft: 0 10px 35px rgba(15, 23, 42, 0.06);
      --shadow-hero: 0 18px 45px rgba(15, 23, 42, 0.10);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Tajawal", sans-serif;
    }

    body {
      background: var(--bg);
      color: var(--text-main);
      padding: 24px;
      display: flex;
      justify-content: center;
    }

    .page {
      max-width: 1120px;
      width: 100%;
      margin-bottom: 40px;
    }

    /* HEADER */
    .top-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .brand {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .brand-logo {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, #ff7b30, #ffa144);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
      font-size: 20px;
    }

    .brand-title {
      font-weight: 800;
      font-size: 22px;
    }

    .brand-sub {
      font-size: 12px;
      color: var(--text-muted);
    }

    .top-actions a {
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      margin-left: 12px;
    }

    .top-actions a strong {
      color: var(--primary);
    }

    /* HERO */
    .hero {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      background: var(--card-bg);
      border-radius: 26px;
      border: 1px solid #e5e7eb;
      box-shadow: var(--shadow-hero);
      padding: 30px;
      margin-bottom: 30px;
      gap: 30px;
    }

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
      }
    }

    .hero-badge {
      background: var(--primary-soft);
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 14px;
      color: #b45309;
      display: inline-block;
      margin-bottom: 12px;
    }

    .hero-title {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .hero-title span {
      color: var(--primary);
    }

    .hero-subtitle {
      color: var(--text-muted);
      font-size: 16px;
      max-width: 450px;
      margin-bottom: 18px;
    }

    .tag {
      background: #eff1f4;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 13px;
      margin-left: 6px;
    }

    .btn {
      padding: 10px 20px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      margin-right: 10px;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 4px 14px rgba(255, 122, 47, 0.35);
    }

    .btn-outline {
      border: 1px solid var(--border-soft);
      background: white;
      color: var(--text-main);
    }

    /* Phone Mock */
    .phone {
      width: 260px;
      height: 520px;
      border-radius: 36px;
      border: 1px solid #d1d5db;
      background: white;
      box-shadow: var(--shadow-soft);
      padding: 10px;
      margin: auto;
    }

    .phone-notch {
      width: 40%;
      height: 6px;
      background: #e5e7eb;
      border-radius: 999px;
      margin: 10px auto;
    }

    .phone-screen {
      background: #ffffff;
      border-radius: 24px;
      border: 1px solid #e5e7eb;
      padding: 12px;
      height: calc(100% - 30px);
    }

    /* Sections */
    .section {
      background: white;
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-soft);
      padding: 25px 22px;
      margin-bottom: 22px;
      box-shadow: var(--shadow-soft);
    }

    .section-title {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .section-text {
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    /* List Items */
    .list {
      list-style: none;
      padding: 0;
    }

    .list li {
      padding: 12px 0;
      display: flex;
      gap: 10px;
      border-bottom: 1px solid #f4f4f4;
    }

    .list strong {
      display: block;
      font-size: 15px;
      margin-bottom: 4px;
    }

    /* Steps */
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    @media(max-width: 800px) {
      .steps {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .step {
      background: #f9fafb;
      padding: 16px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      text-align: center;
    }

    .step-num {
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 6px;
    }

    /* Testimonials */
    .testimonial {
      background: #f9fafb;
      padding: 14px;
      border-radius: var(--radius-lg);
      border: 1px solid #e5e7eb;
      margin-bottom: 10px;
    }

    .stars { color: #f59e0b; }

    /* FOOTER */
    .footer {
      text-align: center;
      color: var(--text-muted);
      font-size: 12px;
      margin-top: 20px;
    }