:root {

  /* ==========================
     PRIMARY BRAND
  ========================== */

  --gold: #D4AF37;
  --gold-light: #F5C85A;
  --gold-lighter: #FFE29A;
  --gold-dark: #B8860B;

  /* Secondary Luxury */
  --emerald: #00B894;
  --emerald-light: #1DD1A1;

  --sapphire: #2563EB;
  --sapphire-light: #60A5FA;

  /* ==========================
     DARK
  ========================== */

  --dark: #0F1115;
  --dark-2: #161A20;
  --dark-3: #20242D;

  --dark-card: #1B2028;
  --dark-card-2: #252B36;

  /* ==========================
     LIGHT
  ========================== */

  --cream: #FAF9F6;
  --cream-2: #F3F1EC;

  /* ==========================
     TEXT
  ========================== */

  --text-on-dark: rgba(255,255,255,.95);
  --text-muted-dark: #AAB2C0;

  /* ==========================
     STATES
  ========================== */

  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;

  /* ==========================
     BORDERS
  ========================== */

  --gold-border: rgba(212,175,55,.35);
  --gold-muted: rgba(212,175,55,.14);

}

    
    * { box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark);
      color: #fff;
      margin: 0;
    }

    /* ── ANNOUNCEMENT BAR ──────────────────────────────── */
    .announcement-bar {
      background: var(--gold);
      color: #fff;
      text-align: center;
      font-size: 15px;
      font-weight: 500;
      padding: 13px 17px;
      letter-spacing: 0.01em;
    }
    .announcement-bar .badge-new {
      background: rgba(255,255,255,0.25);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 5px 9px;
      border-radius: 18px;
      letter-spacing: 0.08em;
      margin-right: 8px;
      text-transform: uppercase;
    }
    .announcement-bar a { color: #fff; text-decoration: none; }
    .announcement-bar a:hover { text-decoration: underline; }

    /* ── NAVBAR ────────────────────────────────────────── */
    .main-nav {
      background: var(--dark-2);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 20px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .main-nav .logo-img {
      height: 44px;
      width: 44px;
      border-radius: 50%;
      object-fit: cover;
    }
    .main-nav .nav-link {
      color: #ffffff !important;
      font-size: 17px;
      font-weight: 600;
      padding: 6px 14px !important;
      transition: color .2s;
    }
    .main-nav .nav-link:hover { color: #fff !important; }
    .main-nav .nav-link .bi { font-size: 11px; margin-left: 3px; }
    .lang-btn {
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      background: none;
      border: none;
      border-radius: 11px;
      padding: 9px 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .lang-btn:hover { color: #fff; }
    .btn-book-demo {
      background: var(--gold);
      color: #fff !important;
      border: none;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      transition: background .2s, transform .15s;
      display: inline-block;
    }
    .btn-book-demo:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* ── HERO ──────────────────────────────────────────── */
    .hero-section {
      /* background: linear-gradient(135deg, #0e100c 0%, #1a1408 40%, #100c06 100%); */
      /* background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%); */
      background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark-2) 40%,
    var(--dark-3) 100%
);
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
      min-height: 620px;
    }
    .hero-section::before {
      content: '';
      position: absolute;
      top: -80px; left: -100px;
      width: 600px; height: 600px;
      /* background: radial-gradient(circle, rgba(184,137,46,0.12) 0%, transparent 70%); */
      /* background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%); */
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -100px; right: -50px;
      width: 500px; height: 500px;
      /* background: radial-gradient(circle, rgba(184,137,46,0.07) 0%, transparent 70%); */
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-heading {
      font-size: clamp(38px, 5.5vw, 50px);
      font-weight: 800;
      line-height: 1.1;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 0;
    }
    .hero-subheading {
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 800;
      line-height: 1.1;
      color: var(--gold);
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .hero-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.7);
      line-height: 1.65;
      max-width: 440px;
      margin-bottom: 32px;
    }
    .btn-outline-gold {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.4);
      padding: 11px 24px;
      font-size: 14.5px;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      transition: all .2s;
      display: inline-block;
    }
    .btn-outline-gold:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* Dashboard mockup cards */
    .hero-visual { position: relative; height: 400px; }
    .mockup-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.5);
      overflow: hidden;
      position: absolute;
    }
    .mockup-card.card-main {
      width: 340px; right: 0; top: 0;
      background: #fff;
    }
    .mockup-card.card-secondary {
      width: 200px; left: 0; bottom: 30px;
      background: #1c1810;
      border: 1px solid var(--gold-border);
    }
    .mockup-header {
      background: var(--dark);
      padding: 8px 14px;
      display: flex;
      align-items: center;
      gap: 5px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mockup-dot { width: 8px; height: 8px; border-radius: 50%; }
    .mockup-dot-r { background: #ff5f57; }
    .mockup-dot-y { background: #febc2e; }
    .mockup-dot-g { background: #28c840; }
    .mockup-body { padding: 14px; }
    .mini-bar {
      height: 6px;
      border-radius: 3px;
      background: var(--gold-muted);
      margin-bottom: 6px;
    }
    .mini-bar.active { background: var(--gold); }
    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 80px;
      padding-top: 8px;
    }
    .chart-bar {
      flex: 1;
      background: var(--gold);
      border-radius: 3px 3px 0 0;
      opacity: 0.85;
      position: relative;
    }
    .chart-bar span {
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 9px;
      color: var(--dark);
      font-weight: 600;
    }
    .mockup-stat-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
    }
    .mockup-stat-label { font-size: 10px; color: var(--text-muted-dark); }
    .mockup-stat-val { font-size: 13px; font-weight: 700; color: #fff; }

    /* Progress bar chart mockup */
    .lead-progress-card {
      background: #fff;
      color: var(--dark);
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      width: 260px;
      position: absolute;
      bottom: 0px;
      right: 0px;
    }
    .lead-progress-card h6 {
      font-size: 12px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 2px;
    }
    .lead-progress-card p {
      font-size: 10px;
      color: #666;
      margin-bottom: 12px;
    }
    .lp-bars {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      height: 70px;
    }
    .lp-bar-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      justify-content: flex-end;
    }
    .lp-bar {
      width: 100%;
      background: var(--gold);
      border-radius: 3px 3px 0 0;
    }
    .lp-bar-label {
      font-size: 8.5px;
      color: #999;
      margin-top: 4px;
      text-align: center;
    }
    .lp-val {
      font-size: 9px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 2px;
    }

    /* Building image card */
    .building-card {
      background: #2a1f0f;
      border-radius: 12px;
      overflow: hidden;
      position: absolute;
      top: 30px;
      left: 40px;
      width: 300px;
      height: auto;
      border: 1px solid var(--gold-border);
    }
    .building-card-inner {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #3a2810 0%, #1a1205 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .building-img-placeholder {
      width: 120px;
      height: 150px;
      background: linear-gradient(180deg, #8B6914 0%, #5a3f0a 100%);
      border-radius: 4px;
      position: relative;
    }
    .building-badge {
      position: absolute;
      bottom: 14px;
      left: 14px;
      background: var(--gold);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
    }

    /* ── PARTNERS ──────────────────────────────────────── */
    .partners-section {
      background: var(--dark-2);
      padding: 36px 0;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .partners-section .partner-logo {
      color: rgba(255,255,255,0.45);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.03em;
      transition: color .2s;
    }
    .partners-section .partner-logo:hover { color: rgba(255,255,255,0.75); }

    /* ── STATS ─────────────────────────────────────────── */
    .stats-section {
      background: linear-gradient(90deg, #0e100c 0%, #1a1408 50%, #0e100c 100%);
      padding: 60px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .stat-item { text-align: center; position: relative; }
    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255,255,255,0.1);
    }
    .stat-num {
      font-size: clamp(42px, 6vw, 68px);
      font-weight: 800;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 6px;
    }
    .stat-num-underline {
      width: 44px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px;
      margin: 8px auto 12px;
    }
    .stat-label {
      font-size: 15px;
      color: rgba(255,255,255,0.6);
      font-weight: 400;
    }

    /* ── PLATFORM SECTION ─────────────────────────────── */
    .platform-section {
      background: #ffffff;
      padding: 90px 0 80px;
      color: var(--dark);
    }
    .section-label {
      font-size: 22px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-heading {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 14px;
    }
    .section-subtext {
      font-size: 16px;
      color: rgba(14,16,12,0.6);
      max-width: 760px;
      margin: 0 auto 56px;
      line-height: 1.65;
    }
    .feature-card {
      background: #fff;
      border: 1px solid rgb(0 0 0 / 12%);
      border-radius: 14px;
      padding: 32px 28px;
      height: 100%;
      transition: box-shadow .2s, transform .2s;
    }
    .feature-card:hover {
      box-shadow: 0 12px 40px rgba(184,137,46,0.12);
      transform: translateY(-3px);
    }
    .feature-icon {
      width: 48px; height: 48px;
      background: var(--gold-muted);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 22px;
      color: var(--gold);
    }
    .feature-card h5 {
      font-size: 17px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }
    .feature-card p {
      font-size: 14px;
      color: rgba(14,16,12,0.6);
      line-height: 1.6;
      margin-bottom: 22px;
    }
    .btn-text-link {
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      text-decoration: none;
      border: 1.5px solid rgba(0,0,0,0.2);
      padding: 9px 18px;
      border-radius: 6px;
      display: inline-block;
      transition: all .2s;
    }
    .btn-text-link:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ── AI SECTION ───────────────────────────────────── */
    .dark-section {
      background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
      padding: 90px 0;
      color: #fff;
    }
    .pill-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold-muted);
      border: 1px solid var(--gold-border);
      color: var(--gold-light);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
    }
    .dark-section-heading {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      line-height: 1.1;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .dark-section-desc {
      font-size: 15px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      max-width: 420px;
    }
    .ai-feature-item {
      display: flex;
      gap: 30px;
      margin-bottom: 46px;
      border-bottom: 1px solid #4b4a4a;
      padding-bottom: 40px;
    }
    .ai-feature-icon {
      width: 84px; 
      height: 84px;
      background: var(--gold-muted);
      border: 1px solid var(--gold-border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      color: var(--gold);
      flex-shrink: 0;
    }
    .ai-feature-item h6 {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .ai-feature-item p {
      font-size: 17px;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
      margin: 0;
    }

    /* Lead Score Circle */
    .lead-score-card {
      background: var(--dark-card);
      border: 1px solid var(--gold-border);
      border-radius: 14px;
      padding: 24px;
      margin-top: 30px;
    }
    .lead-score-card h6 {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      margin-bottom: 16px;
    }
    .score-circle {
      width: 110px; height: 110px;
      border-radius: 50%;
      border: 8px solid var(--dark-3);
      border-top-color: var(--gold);
      border-right-color: var(--gold-light);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .score-circle .score-num {
      font-size: 28px;
      font-weight: 800;
      color: #fff;
    }
    .score-legend { display: flex; flex-direction: column; gap: 6px; }
    .legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.6); }
    .legend-dot { width: 8px; height: 8px; border-radius: 50%; }

    /* Chart for Property Management */
    .prop-chart-card {
      background: var(--dark-card);
      border: 1px solid var(--gold-border);
      border-radius: 14px;
      padding: 24px;
    }
    .prop-chart-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 6px;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
    }
    .growth-badge {
      font-size: 13px;
      font-weight: 700;
      color: #4ade80;
      margin-bottom: 12px;
    }
    .bar-chart {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 80px;
    }
    .bar-item {
      flex: 1;
      border-radius: 3px 3px 0 0;
      transition: opacity .2s;
    }
    .bar-item:hover { opacity: 0.8; }
    .bar-label {
      font-size: 9px;
      color: rgba(255,255,255,0.35);
      text-align: center;
      margin-top: 4px;
    }
    .btn-get-started {
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.2);
      color: #fff;
      padding: 9px 20px;
      font-size: 13.5px;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      display: inline-block;
      margin-top: 20px;
      transition: all .2s;
    }
    .btn-get-started:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ── AGENTFORCE SECTION ────────────────────────────── */
    .agentforce-section {
      background: var(--cream);
      padding: 90px 0;
      color: var(--dark);
    }
    .agentforce-section .section-heading { color: var(--dark); }
    .check-list { list-style: none; padding: 0; margin: 0 0 32px; }
    .check-list li {
      font-size: 17px;
      color: #221e2f;
      padding: 7px 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .check-list li::before {
      content: '✓';
      color: var(--gold);
      font-weight: 700;
      font-size: 14px;
    }
    .btn-gold-outline {
      background: var(--gold);
      color: #fff;
      border: none;
      padding: 15px 26px;
      font-size: 17px;
      font-weight: 800;
      border-radius: 12px;
      text-decoration: none;
      display: inline-block;
      transition: background .2s;
    }
    .btn-gold-outline:hover { background: var(--gold-light); color: #fff; }

    /* Chat demo card */
    .chat-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.08);
    }
    .chat-header {
      background: #fff;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .agent-avatar {
      width: 36px; height: 36px;
      background: var(--gold);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
    }
    .agent-status { font-size: 11px; color: #4ade80; font-weight: 500; }
    .agent-name { font-size: 14px; font-weight: 700; color: var(--dark); }
    .chat-body { padding: 20px 18px; display: flex; flex-direction: column; gap: 12px; }
    .chat-msg {
      max-width: 80%;
      font-size: 13.5px;
      line-height: 1.5;
      padding: 11px 15px;
      border-radius: 12px;
    }
    .chat-msg.user {
      align-self: flex-end;
      background: var(--gold);
      color: #fff;
      border-radius: 12px 12px 2px 12px;
    }
    .chat-msg.agent {
      align-self: flex-start;
      background: #f5f5f5;
      color: var(--dark);
      border-radius: 12px 12px 12px 2px;
    }
    .chat-action {
      align-self: flex-end;
      background: var(--gold);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 9px 18px;
      border-radius: 8px;
      cursor: pointer;
    }
    .chat-confirm {
      align-self: flex-start;
      font-size: 12.5px;
      color: rgba(14,16,12,0.6);
    }
    .chat-confirmed {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      margin-top: 4px;
    }

    /* ── ROLES SECTION ────────────────────────────────── */
    .roles-section {
      background: #ffffff;
      padding: 90px 0;
      color: var(--dark);
    }
    .role-card {
      background: var(--dark-card-2);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px;
      padding: 36px 30px;
      height: 100%;
      transition: border-color .2s, transform .2s;
    }
    .role-card:hover {
      border-color: var(--gold-border);
      transform: translateY(-4px);
    }
    .role-icon {
      width: 50px; height: 50px;
      background: var(--gold-muted);
      border: 1px solid var(--gold-border);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .role-card h5 {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }
    .role-card p {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
      margin-bottom: 24px;
    }
    .btn-role-link {
      font-size: 13.5px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.2);
      padding: 9px 18px;
      border-radius: 6px;
      display: inline-block;
      transition: all .2s;
    }
    .btn-role-link:hover { border-color: var(--gold); color: var(--gold); }

    /* ── TESTIMONIALS ─────────────────────────────────── */
    .testimonials-section {
      background: var(--dark);
      padding: 90px 0;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .testimonials-section .section-heading { color: #fff; margin-bottom: 50px; }
    .testimonial-card {
      background: var(--dark-card);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 32px 28px;
      height: 100%;
      transition: border-color .2s;
    }
    .testimonial-card:hover { border-color: var(--gold-border); }
    .testimonial-logo {
      font-size: 15px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: 0.02em;
    }
    .testimonial-logo small {
      display: block;
      font-size: 9px;
      font-weight: 500;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .testimonial-text {
      font-size: 14.5px;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }
    .testimonial-author strong {
      font-size: 14px;
      color: var(--gold-light);
      display: block;
    }
    .testimonial-author span {
      font-size: 12.5px;
      color: var(--gold);
    }

    /* ── CTA SECTION ──────────────────────────────────── */
    .cta-section {
background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, var(--dark-3) 100%);      padding: 90px 0;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .cta-section .section-label { color: var(--gold); }
    .cta-heading {
      font-size: clamp(32px, 4.5vw, 58px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .cta-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.6);
      max-width: 600px;
      margin: 0 auto 36px;
      line-height: 1.65;
    }
    .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 70px; }
    .btn-cta-primary {
      background: var(--gold);
      color: #fff;
      border: none;
      padding: 13px 32px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 7px;
      text-decoration: none;
      transition: background .2s;
    }
    .btn-cta-primary:hover { background: var(--gold-light); color: #fff; }
    .btn-cta-secondary {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.3);
      padding: 13px 32px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 7px;
      text-decoration: none;
      transition: border-color .2s;
    }
    .btn-cta-secondary:hover { border-color: var(--gold); color: var(--gold); }
    .world-tagline h5 {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .world-tagline p {
      font-size: 16px;
      color: var(--gold-light);
      margin-bottom: 32px;
    }
    .region-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 600px;
      margin: 0 auto;
    }
    .region-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 28px 20px;
      text-align: center;
      transition: border-color .2s;
    }
    .region-card:hover { border-color: var(--gold-border); }
    .region-icon { font-size: 22px; color: var(--gold); margin-bottom: 12px; }
    .region-name {
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .region-countries {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.05em;
    }

    /* ── FOOTER ───────────────────────────────────────── */
    .footer-top {
      background: var(--dark-2);
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 36px 0;
    }
    .footer-logo-img {
      height: 38px; width: 38px;
      border-radius: 50%;
      object-fit: cover;
    }
    .footer-social a {
      color: rgba(255,255,255,0.5);
      font-size: 18px;
      transition: color .2s;
      text-decoration: none;
    }
    .footer-social a:hover { color: var(--gold); }
    .newsletter-input {
      flex: 1;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff;
      border-radius: 7px 0 0 7px;
      padding: 11px 16px;
      font-size: 14px;
      outline: none;
      transition: border-color .2s;
    }
    .newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
    .newsletter-input:focus { border-color: var(--gold); }
    .newsletter-btn {
      background: var(--gold);
      border: none;
      color: #fff;
      padding: 11px 22px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 0 7px 7px 0;
      cursor: pointer;
      transition: background .2s;
    }
    .newsletter-btn:hover { background: var(--gold-light); }
    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.07);
      margin: 0;
    }
    .footer-links {
      background: var(--dark-2);
      padding: 50px 0 40px;
    }
    .footer-col-title {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: 0.01em;
    }
    .footer-col-links { list-style: none; padding: 0; margin: 0; }
    .footer-col-links li { margin-bottom: 11px; }
    .footer-col-links a {
      font-size: 13.5px;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-col-links a:hover { color: var(--gold); }
    .coming-soon-badge {
      background: rgba(184,137,46,0.15);
      border: 1px solid var(--gold-border);
      color: var(--gold);
      font-size: 9px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 3px;
      margin-left: 6px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      vertical-align: middle;
    }
    .footer-col-links .col-subsection {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin: 20px 0 10px;
    }
    .footer-bottom {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 20px 0;
    }
    .footer-bottom-text {
      font-size: 12.5px;
      color: rgba(255,255,255,0.4);
    }
    .footer-bottom-links a {
      font-size: 12.5px;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      margin-right: 22px;
      transition: color .2s;
    }
    .footer-bottom-links a:hover { color: var(--gold); }
    .lang-flags { display: flex; align-items: center; gap: 16px; font-size: 12.5px; color: rgba(255,255,255,0.5); }
    .lang-flags i { font-size: 15px; }
    .lang-flags .active-lang { color: #fff; font-weight: 700; }

    /* ── UTILITIES ────────────────────────────────────── */
    @media (max-width: 768px) {
      .hero-visual { display: none; }
      .region-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item::after { display: none; }
      .navbar-collapse { background: var(--dark-2); padding: 16px; border-radius: 8px; }
    }

    .custom-feature-col{
      padding-top: 50px;
    }

    @media (max-width:768px){
      .custom-feature-col{
      padding-top: 0px;
    }
    }


    /* ============================= */

.demo-modal{

    overflow:hidden;

    border:none;

    border-radius:28px;

    background:#181818;

    box-shadow:
    0 40px 100px rgba(0,0,0,.45);

    position:relative;

}

.demo-modal::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    background:radial-gradient(circle,
    rgba(214,169,76,.25),
    transparent 70%);

    left:-120px;

    top:-120px;

}

/* LEFT */

.demo-left{

    background:linear-gradient(160deg,#202020,#151515);

    height:100%;

    padding:55px;

    color:white;

    border-right:1px solid rgba(255,255,255,.06);

}

.demo-badge{

    display:inline-block;

    padding:7px 18px;

    border-radius:40px;

    background:rgba(214,169,76,.12);

    color:#D6A94C;

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.demo-icon{

    width:90px;

    height:90px;

    background:linear-gradient(135deg,#E4C36B,#C89B3C);

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    color:#111;

    margin-bottom:30px;

    box-shadow:0 15px 40px rgba(214,169,76,.35);

}

.demo-left h2{

    font-size:34px;

    font-weight:700;

    margin-bottom:18px;

    line-height:1.2;

}

.demo-left p{

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:35px;

}

.demo-features div{

    margin-bottom:18px;

    color:#f3f3f3;

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

}

.demo-features i{

    color:#4ade80;

    font-size:18px;

}

/* RIGHT */

.demo-right{

    padding:55px;

    background:#181818;

}

.demo-right h4{

    color:white;

    font-size:28px;

    font-weight:700;

}

.demo-right p{

    color:#B7B7B7;

    margin-bottom:35px;

}

.demo-right label{

    color:#D6A94C;

    font-size:14px;

    margin-bottom:10px;

    display:block;

}

.demo-input{

    width:100%;

    background:#222;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    color:white;

    padding:14px 18px;

    transition:.3s;

}

.demo-input::placeholder{

    color:#777;

}

.demo-input:focus{

    outline:none;

    border-color:#D6A94C;

    box-shadow:0 0 0 5px rgba(214,169,76,.12);

}

textarea.demo-input{

    resize:none;

}

.demo-btn{

    width:100%;

    border:none;

    border-radius:14px;

    padding:16px;

    background:linear-gradient(135deg,#E4C36B,#C89B3C);

    color:#111;

    font-weight:700;

    font-size:16px;

    transition:.3s;

}

.demo-btn i{

    margin-left:10px;

    transition:.3s;

}

.demo-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 20px 40px rgba(214,169,76,.30);

}

.demo-btn:hover i{

    transform:translateX(6px);

}

/* CLOSE */

.demo-close{

    position:absolute;

    top:22px;

    right:22px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:white;

    z-index:5;

    transition:.3s;

}

.demo-close:hover{

    background:#D6A94C;

    color:#111;

    transform:rotate(90deg);

}

.modal-backdrop.show{

    opacity:.88;

    backdrop-filter:blur(8px);

}

/* MOBILE */

@media(max-width:991px){

.demo-left{

display:none;

}

.demo-right{

padding:35px;

}

.demo-modal{

border-radius:20px;

}

}


.demo-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  min-width: 280px;
  max-width: 360px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #1e1a10;
  border: 1px solid var(--gold-border);
  color: var(--text-on-dark);
  font-size: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.demo-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.demo-toast.success {
  border-color: rgba(76,175,110,0.4);
}

.demo-toast.success i {
  color: #4caf6e;
}

.demo-toast.error {
  border-color: rgba(217,83,79,0.4);
}

.demo-toast.error i {
  color: #d9534f;
}


.demo-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--gold-lighter, #e8c170);
  border-radius: 50%;
  animation: demo-spin 0.7s linear infinite;
  margin-left: 4px;
}

@keyframes demo-spin {
  to { transform: rotate(360deg); }
}

.demo-btn.loading .demo-spinner {
  display: inline-block;
}

.demo-btn.loading {
  opacity: 0.85;
  pointer-events: none;
  cursor: not-allowed;
}