:root {
    --navy: #0D2B55;
    --navy-mid: #1A4480;
    --blue: #2E6DB4;
    --sky: #5B9BD5;
    --gold: #C8972A;
    --gold-light: #F5C842;
    --pink: #E8295E;
    --white: #ffffff;
    --gray-light: #F3F4F6;
    --text: #1C1C2E;
    --text-muted: #64748B;
    --border: #E2E8F0;
  }

.hero {
    background: var(--navy);
    color: white;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 120px;
  }
  .hero-text h1 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
  }
  .hero-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
  }
  .hero-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
  }
  .btn-white {
    background: var(--white);
    color: var(--navy);
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
  }
  .btn-white:hover { opacity: 0.9; }
  .btn-pink {
    background: var(--pink);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
  }
  .btn-pink:hover { opacity: 0.88; }
 
  /* â”€â”€ MAIN CONTENT AREA â”€â”€ */
  .page-body {
    padding: 32px 32px 40px;
  }
 
  /* â”€â”€ BROWSER FRAME â”€â”€ */
  .browser-frame {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  }
  .browser-bar {
    background: #f7f7f7;
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .browser-dots { display: flex; gap: 6px; }
  .browser-dots span {
    width: 12px; height: 12px;
    border-radius: 50%;
  }
  .browser-dots .d1 { background: #FF5F57; }
  .browser-dots .d2 { background: #FFBD2E; }
  .browser-dots .d3 { background: #28C840; }
  .browser-url {
    font-size: 12px;
    color: var(--text-muted);
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3px 12px;
    flex: 1;
    max-width: 320px;
  }
 
  /* â”€â”€ ROADMAP INNER â”€â”€ */
  .roadmap-inner {
    padding: 32px 32px 28px;
  }
  .roadmap-inner h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .roadmap-inner .subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
 
  /* â”€â”€ STEPS GRID â”€â”€ */
  .steps-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
  .step-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 10px 18px;
    background: var(--white);
    position: relative;
    transition: box-shadow 0.15s, transform 0.15s;
  }
  .step-card:hover {
    box-shadow: 0 4px 20px rgba(13,43,85,0.1);
    transform: translateY(-2px);
  }
  .step-card.highlight {
    border: 2px solid #7C5CBF;
  }
  .step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
  }
  .n1 { background: #4A9FD4; }
  .n2 { background: #E8A020; }
  .n3 { background: #27AE60; }
  .n4 { background: #E07030; }
  .n5 { background: #7C5CBF; }
  .n6 { background: #8B4A2A; }
 
  .step-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .step-visa {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .v1 { color: #4A9FD4; }
  .v2 { color: #E8A020; }
  .v3 { color: #27AE60; }
  .v4 { color: #E07030; }
  .v5 { color: #7C5CBF; }
  .v6 { color: #8B4A2A; }
 
  .step-list {
    list-style: none;
    padding: 0;
  }
  .step-list li {
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.55;
    padding: 2.5px 0;
    padding-left: 10px;
    position: relative;
  }
  .step-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #aaa;
  }
 
  .recommend-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #7C5CBF;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
  }
 
  /* â”€â”€ BOTTOM SUMMARY â”€â”€ */
  .summary-box {
    margin: 10px 32px 5px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 23px 24px;
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    background: #fafafa;
  }
  .summary-box strong { color: var(--navy); }
 
  /* â”€â”€ BOTTOM BUTTONS â”€â”€ */
  .bottom-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 24px 32px 32px;
  }
  .btn-dark {
    background: var(--navy);
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 50px;
    border-radius: 7px;
    text-decoration: none;
    transition: opacity 0.15s;
  }
  .btn-dark:hover { opacity: 0.88; }
  .btn-purple {
    background: #7C5CBF;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 50px;
    border-radius: 7px;
    text-decoration: none;
    transition: opacity 0.15s;
  }
  .btn-purple:hover { opacity: 0.88; }
  .btn-hotpink {
    background: var(--pink);
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 50px;
    border-radius: 7px;
    text-decoration: none;
    transition: opacity 0.15s;
  }
  .btn-hotpink:hover { opacity: 0.88; }

  @media (max-width: 900px) {
    .steps-row { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 600px) {
    .hero { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
    .steps-row { grid-template-columns: repeat(2, 1fr); }
    .page-body { padding: 20px 16px 32px; }
    .roadmap-inner { padding: 24px 20px 20px; }
    .summary-box { margin: 16px 20px 0; }
    .bottom-btns { padding: 20px 20px 28px; flex-wrap: wrap; }
  }