    :root {
      --bg: #07090f;
      --surface: #0f1118;
      --surface2: #141720;
      --glass: rgba(255, 255, 255, 0.04);
      --border: rgba(255, 255, 255, 0.07);
      --primary: #ffad32;
      --primary2: #ff7b32;
      --text: #f0f0ee;
      --muted: #8a8f9e;
      --muted2: #5a5f6e;
    }

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

    html {
      scroll-behavior: smooth;
    }

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

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* ── AMBIENT GLOWS ── */
    .glow-orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
      z-index: 0;
    }

    .glow-1 {
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(255, 140, 50, 0.12), transparent 70%);
      top: -300px;
      right: -200px;
      animation: drift1 18s ease-in-out infinite alternate;
    }

    .glow-2 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 173, 50, 0.08), transparent 70%);
      bottom: 10%;
      left: -200px;
      animation: drift2 22s ease-in-out infinite alternate;
    }

    @keyframes drift1 {
      from {
        transform: translate(0, 0)
      }

      to {
        transform: translate(60px, 80px)
      }
    }

    @keyframes drift2 {
      from {
        transform: translate(0, 0)
      }

      to {
        transform: translate(-40px, -60px)
      }
    }

    .text-primary {
      color: var(--primary2);
    }

    /* ── CONTAINER ── */
    .container {
      width: 90%;
      max-width: 1280px;
      margin: auto;
      position: relative;
      z-index: 1;
    }

    section {
      padding: 120px 0;
    }

    /* ── NAVBAR ── */
    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 16px 5%;
      transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
    }

    nav {
      max-width: 1280px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 28px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      border-radius: 999px;
      backdrop-filter: blur(30px);
      transition: box-shadow 0.3s;
    }

    .nav-wrap.scrolled nav {
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    }

    .logo {
      font-family: 'Syne', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.5px;
    }

    .logo img {
      height: 30px;
      width: auto;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--primary);
      transition: width 0.3s;
    }

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

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 10px 22px;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      color: #111 !important;
      border-radius: 999px;
      font-weight: 600 !important;
      font-size: 0.9rem !important;
      transition: transform 0.2s, box-shadow 0.2s !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 24px rgba(255, 140, 50, 0.3) !important;
    }

    /* ── REVEAL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ── SECTION LABEL ── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 999px;
      background: rgba(255, 173, 50, 0.08);
      border: 1px solid rgba(255, 173, 50, 0.2);
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .section-label::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 8px var(--primary);
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.4);
      }
    }

    /* ── SECTION TITLE ── */
    .section-title {
      text-align: center;
      margin-bottom: 70px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .section-title h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .section-title p {
      color: var(--muted);
      max-width: 600px;
      line-height: 1.8;
    }

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

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      padding-top: 60px;
      display: flex;
      align-items: center;
      gap: 80px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255, 173, 50, 0.06);
      border: 1px solid rgba(255, 173, 50, 0.15);
      color: var(--primary);
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 28px;
    }

    .hero-eyebrow span {
      color: var(--muted);
    }

    .hero-left h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(3.5rem, 6vw, 5.8rem);
      line-height: 1;
      letter-spacing: -2px;
      margin-bottom: 28px;
    }

    .hero-left p {
      color: var(--muted);
      line-height: 1.9;
      font-size: 1.05rem;
      max-width: 520px;
      margin-bottom: 40px;
      font-weight: 300;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      margin-bottom: 56px;
      flex-wrap: wrap;
    }

    .btn-primary {
      padding: 14px 32px;
      border: none;
      cursor: pointer;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      color: #0f0f0f;
      transition: transform 0.25s, box-shadow 0.25s;
      font-family: 'Nunito', sans-serif;
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      line-height: 1;
    }

    .btn-primary::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0);
      transition: background 0.2s;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(255, 140, 50, 0.35);
    }

    .btn-primary:hover::after {
      background: rgba(255, 255, 255, 0.08);
    }

    .btn-secondary {
      padding: 16px 32px;
      border-radius: 999px;
      cursor: pointer;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      font-size: 0.95rem;
      font-weight: 500;
      font-family: 'Nunito', sans-serif;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-secondary:hover {
      border-color: rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.06);
    }

    .hero-stats {
      display: flex;
      gap: 40px;
    }

    .hero-stat {
      position: relative;
    }

    .hero-stat::after {
      content: "";
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      height: 40px;
      width: 1px;
      background: var(--border);
    }

    .hero-stat:last-child::after {
      display: none;
    }

    .hero-stat h3 {
      font-family: 'Syne', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-stat p {
      margin-top: 6px;
      color: var(--muted);
      font-size: 0.85rem;
    }

    .hero-right {
      position: relative;
    }

    .hero-immages {
      display: flex;
      justify-content: space-between;
    }

    .hero-image {
      padding: 10px;
      border-radius: 2rem;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .hero-image img {
      width: 100%;
      max-height: 550px;
      object-fit: contain;
      border-radius: 2rem;
      display: block;
    }

    .hero-image:first-child {
      margin-right: 7px;
      margin-bottom: 50px;
    }

    .hero-image:last-child {
      margin-left: 7px;
      margin-top: 50px;
    }

    .float-card {
      position: absolute;
      padding: 14px 22px;
      border-radius: 999px;
      background: rgba(15, 17, 24, 0.85);
      border: 1px solid var(--border);
      backdrop-filter: blur(30px);
      font-size: 0.88rem;
      font-weight: 500;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .float-card .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 8px #4ade80;
    }

    .float1 {
      top: 40px;
      left: -50px;
      animation: floatY 4s ease-in-out infinite;
    }

    .float2 {
      bottom: 50px;
      right: -50px;
      animation: floatY 4s ease-in-out infinite 2s;
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    /* ───────── ABOUT ───────── */

    .about-modern-container {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .about-left h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.5rem, 4vw, 4rem);
      line-height: 1.1;
      margin-bottom: 28px;
      letter-spacing: -1px;
      font-weight: 800;
    }

    .about-description {
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 24px;
      font-size: 1rem;
      max-width: 680px;
      font-weight: 300;
    }

    .about-stats {
      margin-top: 50px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .stat-card {
      padding: 28px;
      border-radius: 2rem;
      background: var(--glass);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 20px;
      transition: 0.3s;
    }

    .stat-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 173, 50, 0.25);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }

    .stat-icon {
      min-width: 62px;
      height: 62px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;

      background: linear-gradient(135deg,
          rgba(255, 173, 50, 0.18),
          rgba(255, 123, 50, 0.18));

      border: 1px solid rgba(255, 173, 50, 0.2);
    }

    .stat-card h3 {
      font-size: 2rem;
      font-family: 'Syne', sans-serif;

      background: linear-gradient(135deg,
          var(--primary),
          var(--primary2));

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      margin-bottom: 4px;
    }

    .stat-card p {
      color: var(--muted);
      font-size: 0.9rem;
    }

    /* RIGHT SIDE */

    .about-right {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .about-info-card {
      padding: 36px;
      border-radius: 2.5rem;

      background: var(--glass);
      border: 1px solid var(--border);

      transition: 0.3s;
    }

    .about-info-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 173, 50, 0.25);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }

    .info-icon {
      width: 70px;
      height: 70px;
      border-radius: 20px;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 1.8rem;
      margin-bottom: 24px;

      background: linear-gradient(135deg,
          rgba(255, 173, 50, 0.18),
          rgba(255, 123, 50, 0.18));

      border: 1px solid rgba(255, 173, 50, 0.2);
    }

    .about-info-card h3 {
      font-size: 1.8rem;
      margin-bottom: 14px;
      font-family: 'Syne', sans-serif;
    }

    .about-info-card p {
      color: var(--muted);
      line-height: 1.9;
      font-weight: 300;
    }

    /* ── FEATURES ── */
    .features-section {
      background: none;
    }

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

    .feature-card {
      padding: 40px 36px;
      border-radius: 2.5rem;
      background: var(--glass);
      border: 1px solid var(--border);
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 173, 50, 0.4), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 173, 50, 0.2);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    }

    .feature-card:hover::before {
      opacity: 1;
    }

    .icon {
      width: 68px;
      height: 68px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 1.8rem;
      background: linear-gradient(135deg, rgba(255, 173, 50, 0.15), rgba(255, 123, 50, 0.15));
      border: 1px solid rgba(255, 173, 50, 0.2);
    }

    .feature-card h3 {
      margin-bottom: 14px;
      font-family: 'Syne', sans-serif;
      font-size: 1.4rem;
    }

    .feature-card p {
      color: var(--muted);
      line-height: 1.8;
      font-weight: 300;
      font-size: 0.93rem;
    }

    /* ── HOW IT WORKS ── */
    .timeline {
      max-width: 900px;
      margin: auto;
      display: grid;
      gap: 20px;
    }

    .step {
      display: flex;
      gap: 32px;
      padding: 40px 44px;
      border-radius: 2.5rem;
      background: var(--glass);
      border: 1px solid var(--border);
      align-items: flex-start;
      transition: border-color 0.3s;
      position: relative;
      overflow: hidden;
    }

    .step:hover {
      border-color: rgba(255, 173, 50, 0.2);
    }

    .step-number {
      min-width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      font-weight: 800;
      font-family: 'Syne', sans-serif;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      color: #0f0f0f;
      flex-shrink: 0;
    }

    .step-content h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.7rem;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .step-content p {
      color: var(--muted);
      line-height: 1.9;
      font-weight: 300;
    }

    .step-connector {
      display: flex;
      justify-content: flex-start;
      padding-left: 87px;
      margin: -8px 0;
    }

    .step-connector::before {
      content: "";
      width: 1px;
      height: 20px;
      background: linear-gradient(to bottom, rgba(255, 173, 50, 0.4), transparent);
    }

    /* ── TESTIMONIALS ── */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .testimonial {
      padding: 36px;
      border-radius: 2.5rem;
      background: var(--glass);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: transform 0.3s, border-color 0.3s;
      position: relative;
    }

    .testimonial:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 173, 50, 0.2);
    }

    .stars {
      color: var(--primary);
      font-size: 1rem;
      letter-spacing: 2px;
      margin-bottom: 18px;
    }

    .testimonial blockquote {
      color: var(--muted);
      line-height: 1.8;
      font-weight: 300;
      font-style: italic;
      margin-bottom: 24px;
      flex: 1;
      font-size: 0.95rem;
    }

    .testimonial blockquote::before {
      content: "\201C";
      color: var(--primary);
      font-size: 1.4rem;
      line-height: 0;
      vertical-align: -0.4em;
      margin-right: 4px;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .reviewer-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      color: #111;
      flex-shrink: 0;
    }

    .reviewer h4 {
      font-size: 0.95rem;
      margin-bottom: 2px;
    }

    .reviewer p {
      color: var(--muted2);
      font-size: 0.78rem;
    }

    /* ── FRANCHISE ── */
    .franchise-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      padding: 70px;
      border-radius: 3rem;
      background: linear-gradient(135deg, rgba(255, 173, 50, 0.04) 0%, rgba(255, 123, 50, 0.02) 100%);
      border: 1px solid rgba(255, 173, 50, 0.15);
      backdrop-filter: blur(30px);
      position: relative;
      overflow: hidden;
    }

    .franchise-box::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 173, 50, 0.5), transparent);
    }

    .franchise-left h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.2rem, 3.5vw, 3.5rem);
      line-height: 1.1;
      margin-bottom: 22px;
      letter-spacing: -1px;
      font-weight: 800;
    }

    .franchise-left>p {
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 32px;
      font-weight: 300;
    }

    .benefits {
      display: grid;
      gap: 14px;
    }

    .benefit {
      padding: 15px 22px;
      border-radius: 1.2rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.92rem;
      transition: border-color 0.2s, background 0.2s;
    }

    .benefit:hover {
      border-color: rgba(255, 173, 50, 0.3);
      background: rgba(255, 173, 50, 0.05);
    }

    .benefit::before {
      content: "✓";
      color: var(--primary);
      font-weight: 700;
    }

    .franchise-form {
      display: grid;
      gap: 16px;
    }

    .input-group {
      position: relative;
    }

    input,
    textarea {
      width: 100%;
      padding: 0px 20px;
      border: 1px solid var(--border);
      outline: none;
      border-radius: 1.2rem;
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      font-family: 'Nunito', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    input::placeholder,
    textarea::placeholder {
      color: var(--muted2);
    }

    textarea {
      resize: none;
      height: 130px;
      padding: 16px 20px;
    }

    input:focus,
    textarea:focus {
      border-color: rgba(255, 173, 50, 0.4);
      box-shadow: 0 0 0 3px rgba(255, 173, 50, 0.08);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    /* ── FAQ ── */
    .faq-grid {
      max-width: 900px;
      margin: auto;
      display: grid;
      gap: 16px;
    }

    .faq-card {
      border-radius: 2rem;
      background: var(--glass);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .faq-card.open {
      border-color: rgba(255, 173, 50, 0.3);
    }

    .faq-question {
      padding: 28px 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      gap: 20px;
    }

    .faq-question h3 {
      font-size: 1.05rem;
      font-weight: 500;
    }

    .faq-toggle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s, transform 0.3s;
      color: var(--muted);
      font-size: 1.2rem;
      line-height: 1;
    }

    .faq-card.open .faq-toggle {
      background: rgba(255, 173, 50, 0.15);
      border-color: rgba(255, 173, 50, 0.3);
      color: var(--primary);
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
    }

    .faq-answer-inner {
      padding: 0 32px 28px;
      color: var(--muted);
      line-height: 1.8;
      font-weight: 300;
    }

    /* ── APP DOWNLOAD BANNER ── */
    .app-banner {
      border-radius: 3rem;
      padding: 80px;
      background: linear-gradient(135deg, rgba(255, 173, 50, 0.08) 0%, rgba(255, 90, 30, 0.05) 100%);
      border: 1px solid rgba(255, 173, 50, 0.15);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .app-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(255, 173, 50, 0.1), transparent 70%);
    }

    .app-banner h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.5rem, 4vw, 4rem);
      letter-spacing: -1.5px;
      margin-bottom: 18px;
      position: relative;
    }

    .app-banner p {
      color: var(--muted);
      margin-bottom: 40px;
      font-size: 1.05rem;
      font-weight: 300;
      position: relative;
    }

    .app-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }

    .app-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 28px;
      border-radius: 1.5rem;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      text-decoration: none;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s, background 0.2s;
    }

    .app-btn:hover {
      border-color: rgba(255, 173, 50, 0.3);
      background: rgba(255, 173, 50, 0.06);
      transform: translateY(-3px);
    }

    .app-btn-icon {
      font-size: 1.6rem;
    }

    .app-btn-text {
      text-align: left;
    }

    .app-btn-text small {
      display: block;
      color: var(--muted);
      font-size: 0.72rem;
    }

    .app-btn-text strong {
      font-size: 1rem;
      font-family: 'Syne', sans-serif;
    }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 50px;
      align-items: stretch;
    }

    .contact-card {
      padding: 50px;
      border-radius: 2.5rem;
      background: linear-gradient(135deg, rgba(255, 173, 50, 0.06) 0%, rgba(255, 123, 50, 0.03) 100%);
      border: 1px solid rgba(255, 173, 50, 0.18);
      position: relative;
      overflow: hidden;
    }

    .contact-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle at 20% 0%, rgba(255, 173, 50, 0.15), transparent 45%);
      opacity: 0.6;
    }

    .contact-card>* {
      position: relative;
    }

    .contact-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      margin-bottom: 12px;
    }

    .contact-card p {
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 28px;
      font-weight: 300;
    }

    .contact-list {
      display: grid;
      gap: 16px;
      margin-bottom: 28px;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      align-items: center;
      padding: 12px 14px;
      border-radius: 1.2rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 173, 50, 0.12);
      border: 1px solid rgba(255, 173, 50, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1rem;
      flex-shrink: 0;
    }

    .contact-item strong {
      display: block;
      font-size: 0.85rem;
      letter-spacing: 0.4px;
      font-family: 'Syne', sans-serif;
    }

    .contact-item span {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .contact-hours {
      padding: 16px 18px;
      border-radius: 1.2rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px dashed rgba(255, 255, 255, 0.12);
    }

    .hours-title {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .hours-text {
      font-size: 0.95rem;
    }

    .contact-form {
      display: grid;
      gap: 16px;
      padding: 50px;
      border-radius: 2.5rem;
      background: linear-gradient(135deg, rgba(18, 20, 30, 0.85) 0%, rgba(12, 14, 22, 0.9) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
    }

    .contact-form .form-row {
      gap: 14px;
    }

    .contact-form input,
    .contact-form textarea {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.12);
      padding: 12px 18px;
    }

    .contact-form input {
      height: 48px;
      border-radius: 999px;
    }

    .contact-form textarea {
      height: 160px;
      border-radius: 1.4rem;
      padding: 16px 18px;
    }

    .contact-form .btn-primary {
      width: 100%;
      margin-top: 6px;
      height: 50px;
      line-height: 50px;
      padding: 0 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      letter-spacing: 0.3px;
    }

    .contact-note {
      color: var(--muted2);
      font-size: 0.8rem;
      text-align: center;
    }

    /* ── PRIVACY POLICY ── */
    .policy-hero {
      padding-top: 120px;
      padding-bottom: 80px;
      text-align: center;
    }

    .policy-breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.85rem;
      margin-bottom: 18px;
    }

    .policy-breadcrumb a {
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
    }

    .policy-hero h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .policy-hero p {
      color: var(--muted);
      max-width: 720px;
      margin: 0 auto 32px;
      line-height: 1.8;
      font-weight: 300;
    }

    .policy-meta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .policy-meta-item {
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.03);
      color: var(--muted);
      font-size: 0.85rem;
    }

    .policy-body {
      padding-top: 40px;
    }

    .policy-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.6fr;
      gap: 40px;
      align-items: start;
    }

    .policy-sidebar {
      position: sticky;
      top: 120px;
      display: grid;
      gap: 20px;
    }

    .policy-card {
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: 2rem;
      padding: 28px;
    }

    .policy-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      margin-bottom: 12px;
    }

    .policy-card p {
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.92rem;
      font-weight: 300;
    }

    .policy-card .btn-primary {
      width: 100%;
      margin-top: 14px;
    }

    .policy-list {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .policy-list li {
      display: flex;
      gap: 10px;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .policy-list li::before {
      content: "•";
      color: var(--primary);
    }

    .policy-toc a {
      display: block;
      padding: 10px 12px;
      border-radius: 0.9rem;
      color: var(--text);
      text-decoration: none;
      border: 1px solid transparent;
      background: rgba(255, 255, 255, 0.03);
      margin-bottom: 10px;
      transition: border-color 0.2s, background 0.2s;
      font-size: 0.9rem;
    }

    .policy-toc a:hover {
      border-color: rgba(255, 173, 50, 0.3);
      background: rgba(255, 173, 50, 0.06);
    }

    .policy-content {
      display: grid;
      gap: 24px;
    }

    .policy-block {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid var(--border);
      border-radius: 2rem;
      padding: 32px;
    }

    .policy-block h2 {
      font-family: 'Syne', sans-serif;
      font-size: 1.4rem;
      margin-bottom: 12px;
    }

    .policy-block p {
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 14px;
      font-weight: 300;
    }

    .policy-block ul {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .policy-block ul li {
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.92rem;
    }

    .policy-block ul li::before {
      content: "-";
      color: var(--primary);
      margin-right: 8px;
    }

    /* ── ACCOUNT DELETE ── */
    .account-hero {
      padding-top: 120px;
      padding-bottom: 60px;
      text-align: center;
    }

    .account-body {
      padding-top: 40px;
    }

    .account-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 40px;
      align-items: stretch;
    }

    .account-card {
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: 2rem;
      padding: 32px;
    }

    .account-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.2rem;
      margin-bottom: 16px;
    }

    .account-steps {
      display: grid;
      gap: 16px;
      margin-bottom: 20px;
    }

    .account-step {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 12px;
      align-items: start;
    }

    .account-step-number {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #111;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .account-step strong {
      display: block;
      margin-bottom: 6px;
      font-size: 0.95rem;
    }

    .account-step p {
      color: var(--muted);
      line-height: 1.6;
      font-size: 0.9rem;
      font-weight: 300;
    }

    .account-inset {
      padding: 18px;
      border-radius: 1.2rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px dashed rgba(255, 255, 255, 0.12);
    }

    .account-inset h4 {
      font-family: 'Syne', sans-serif;
      font-size: 0.95rem;
      margin-bottom: 10px;
    }

    .account-list {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .account-list li {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .account-list li::before {
      content: "-";
      color: var(--primary);
      margin-right: 8px;
    }

    .account-form {
      display: grid;
      gap: 16px;
      padding: 36px;
      border-radius: 2rem;
      background: linear-gradient(135deg, rgba(18, 20, 30, 0.85) 0%, rgba(12, 14, 22, 0.9) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    }

    .account-form input,
    .account-form textarea,
    .account-form select {
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 12px 18px;
      color: var(--text);
      font-family: 'Nunito', sans-serif;
      font-size: 0.9rem;
      border-radius: 999px;
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .account-form textarea {
      border-radius: 1.4rem;
      height: 140px;
      resize: none;
      padding: 16px 18px;
    }

    .account-form select {
      appearance: none;
      background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%);
      background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
      padding: 16px 18px;
      color: var(--text);
    }

    .account-form select option {
      color: #ffffff;
      background: #1a1c24;
      border-radius: 10%;
    }

    .account-form input:focus,
    .account-form textarea:focus,
    .account-form select:focus {
      border-color: rgba(255, 173, 50, 0.4);
      box-shadow: 0 0 0 3px rgba(255, 173, 50, 0.08);
    }

    .account-check {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .account-check input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: var(--primary);
    }

    .account-note {
      color: var(--muted2);
      font-size: 0.82rem;
      text-align: center;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding-top: 100px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 80px;
      padding-bottom: 70px;
    }

    .footer-brand .footer-logo {
      display: inline-block;
      margin-bottom: 18px;
      font-size: 2rem;
    }

    .footer-brand .footer-logo img{
      height: auto;
      width: 200px;
    }

    .footer-brand p {
      color: var(--muted);
      line-height: 1.9;
      max-width: 440px;
      margin-bottom: 28px;
      font-weight: 300;
    }

    .socials {
      display: flex;
      gap: 12px;
    }

    .socials a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      color: var(--muted);
      text-decoration: none;
      font-size: 0.75rem;
      font-weight: 600;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .socials a:hover {
      border-color: rgba(255, 173, 50, 0.4);
      color: var(--primary);
      background: rgba(255, 173, 50, 0.06);
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .footer-column h3 {
      margin-bottom: 22px;
      font-size: 0.85rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text);
      font-family: 'Syne', sans-serif;
    }

    .footer-column a,
    .footer-column p {
      display: block;
      margin-bottom: 13px;
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
      font-weight: 300;
    }

    .footer-column a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      padding: 26px 0;
      text-align: center;
      border-top: 1px solid var(--border);
      color: var(--muted2);
      font-size: 0.82rem;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1000px) {
      .hero {
        flex-wrap: wrap;
        justify-content: center;
      }

      .about-modern-container {
        grid-template-columns: 1fr;
      }

      .about-right {
        margin-top: 20px;
      }

      .franchise-box {
        grid-template-columns: 1fr;
      }

      .hero {
        text-align: center;
      }

      .hero-left p {
        margin: 0 auto 40px;
      }

      .hero-buttons,
      .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
      }

      .float1,
      .float2 {
        display: none;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .contact-card,
      .contact-form {
        padding: 40px;
      }

      .policy-grid {
        grid-template-columns: 1fr;
      }

      .policy-sidebar {
        position: static;
      }

      .account-grid {
        grid-template-columns: 1fr;
      }

      .account-card,
      .account-form {
        padding: 32px;
      }
    }

    @media(max-width:700px) {
      nav {
        flex-direction: column;
        gap: 16px;
        border-radius: 2rem;
      }

      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
      }

      .hero-left h1 {
        font-size: 3rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .franchise-box {
        padding: 40px 30px;
      }

      .franchise-left h2 {
        font-size: 2.2rem;
      }

      .step {
        flex-direction: column;
      }

      .footer-links {
        grid-template-columns: 1fr 1fr;
      }

      .app-banner {
        padding: 50px 30px;
      }

      .about-stats {
        grid-template-columns: 1fr;
      }

      .about-left h2 {
        font-size: 2.5rem;
      }

      .about-info-card {
        padding: 28px;
      }

      .stat-card {
        padding: 24px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .policy-hero {
        padding-top: 70px;
      }

      .policy-card,
      .policy-block {
        padding: 24px;
      }

      .account-hero {
        padding-top: 70px;
      }

      .account-card,
      .account-form {
        padding: 24px;
      }

      .contact-card,
      .contact-form {
        padding: 30px;
      }
    }