  /* ── HERO ── */
  .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 100px 5vw 60px;
      position: relative;
      overflow: hidden;
  }

  .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
          radial-gradient(ellipse 60% 50% at 80% 40%, rgba(255, 104, 51, 0.12) 0%, transparent 70%),
          radial-gradient(ellipse 40% 40% at 20% 70%, rgba(255, 138, 96, 0.08) 0%, transparent 60%);
  }

  .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--brand-light);
      color: var(--brand);
      border: 1px solid rgba(255, 104, 51, 0.25);
      border-radius: 100px;
      padding: 4px 14px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 1.25rem;
  }

  .hero-badge::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand);
      animation: pulse 1.8s infinite;
  }

  @keyframes pulse {

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

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

  .hero h1 {
      font-family: Nunito, sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--dark);
      margin-bottom: 1.25rem;
  }

  .hero h1 em {
      font-style: normal;
      color: var(--brand);
      position: relative;
  }


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

  .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
  }

  .btn-primary {
      background: var(--brand);
      color: #fff;
      border: none;
      border-radius: 100px;
      padding: 0.875rem 2rem;
      font-family: Nunito, sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, transform .15s, box-shadow .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 104, 51, 0.35);
  }

  .btn-second {
      background: var(--second);
      color: #fff;
      border: none;
      border-radius: 100px;
      padding: 0.875rem 2rem;
      font-family: Nunito, sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, transform .15s, box-shadow .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .btn-second:hover {
      background: var(--second-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(26, 30, 36, 0.35);
  }

  .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--border);
      border-radius: 100px;
      padding: 0.875rem 2rem;
      font-family: Nunito, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: border-color .2s, color .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .btn-outline:hover {
      border-color: var(--brand);
      color: var(--brand);
  }

  .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
  }

  .hero-stat {}

  .hero-stat .num {
      font-family: Nunito, sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--dark);
      line-height: 1;
  }

  .hero-stat .num span {
      color: var(--brand);
  }

  .hero-stat .lbl {
      font-size: 0.9rem;
      color: var(--muted);
      margin-top: 2px;
  }

  /* hero visual */
  .hero-visual {
      position: relative;
  }

  .hero-phone-wrap {
      position: relative;
      display: flex;
      justify-content: center;
  }

  .phone-mock {
      width: 260px;
      background: var(--dark);
      border-radius: 40px;
      padding: 10px 5px;
      box-shadow: 0 24px 64px rgba(26, 18, 8, 0.3);
      position: relative;
      z-index: 2;
  }

  .phone-screen {
      background: var(--light);
      border-radius: 28px;
      overflow: hidden;
      padding: 16px;
  }

  .phone-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
  }

  .phone-logo-sm {
      font-family: Nunito, sans-serif;
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--brand);
  }

  .phone-notch {
      width: 60px;
      height: 8px;
      background: var(--dark);
      border-radius: 4px;
      margin: 0 auto 10px;
  }

  .phone-search {
      background: #fff;
      border-radius: 10px;
      padding: 8px 12px;
      font-size: 0.72rem;
      color: var(--muted);
      border: 1px solid var(--border);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .phone-search svg {
      flex-shrink: 0;
  }

  .job-card-mini {
      background: #fff;
      border-radius: 12px;
      padding: 10px 12px;
      margin-bottom: 8px;
      border: 1px solid var(--border);
      text-align: left;
  }

  .job-card-mini-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 4px;
  }

  .job-card-mini-title {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--dark);
  }

  .job-card-mini-pay {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--brand);
      white-space: nowrap;
  }

  .job-card-mini-meta {
      font-size: 0.65rem;
      color: var(--muted);
  }

  .job-tag {
      display: inline-block;
      background: var(--brand-light);
      color: var(--brand);
      border-radius: 4px;
      padding: 1px 6px;
      font-size: 0.6rem;
      font-weight: 600;
      margin-top: 4px;
  }

  /* floating cards */
  .float-card {
      position: absolute;
      background: #fff;
      border-radius: 14px;
      padding: 10px 14px;
      box-shadow: 0 8px 32px rgba(26, 18, 8, 0.12);
      font-size: 0.75rem;
      z-index: 3;
      animation: floatY 3s ease-in-out infinite;
  }

  .float-card:nth-child(2) {
      animation-delay: 1.5s;
  }

  @keyframes floatY {

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

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

  .fc-salary {
      top: 5%;
      right: -8%;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .fc-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--brand-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
  }

  .fc-label {
      font-size: 0.65rem;
      color: var(--muted);
  }

  .fc-value {
      font-weight: 700;
      color: var(--dark);
      font-size: 0.85rem;
  }

  .fc-badge {
      bottom: 12%;
      left: -12%;
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .fc-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22c55e;
  }

  /* ── SECTION SHARED ── */
  section {
      padding: 100px 5vw;
  }

  .section-inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .section-tag {
      display: inline-block;
      background: var(--brand-light);
      color: var(--brand);
      border-radius: 100px;
      padding: 4px 14px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1rem;
  }

  .section-title {
      font-family: Nunito, sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 1rem;
  }

  .section-sub {
      font-size: 1rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.75;
  }

  .section-head {
      margin-bottom: 3.5rem;
  }

  .section-head.center {
      text-align: center;
  }

  .section-head.center .section-sub {
      margin: 0 auto;
  }

  /* ── ZALO SECTION ── */
  .zalo-section {
      background: var(--white);
      padding: 80px 5vw;
  }

  .zalo-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
  }

  .zalo-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #EBF3FF;
      color: #0068FF;
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
  }

  .zalo-title {
      font-family: Nunito, sans-serif;
      font-size: clamp(1.75rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 1rem;
  }

  .zalo-title em {
      font-style: normal;
      color: var(--brand);
  }

  .zalo-desc {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.8;
      max-width: 440px;
      margin-bottom: 1.75rem;
  }

  .zalo-perks {
      list-style: none;
      margin-bottom: 2rem;
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .zalo-perks li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      color: var(--text);
      font-weight: 500;
  }

  .zalo-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #0068FF;
      color: #fff;
      border-radius: 100px;
      padding: 0.875rem 1.75rem;
      font-family: Nunito, sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      transition: background .2s, transform .15s, box-shadow .2s;
  }

  .zalo-cta-btn:hover {
      background: #0052CC;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 104, 255, 0.3);
  }

  .zalo-card {
      background: var(--light);
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 4px 32px rgba(26, 18, 8, 0.08);
  }

  .zalo-card-header {
      background: #0068FF;
      padding: 18px 20px;
      display: flex;
      align-items: center;
  }

  .zalo-group-info {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .zalo-icon-wrap {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .zalo-icon-wrap svg path {
      fill: #fff !important;
  }

  .zalo-group-name {
      font-family: Nunito, sans-serif;
      font-size: 0.9rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
  }

  .zalo-group-sub {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 2px;
  }

  .zalo-qr-wrap {
      padding: 20px 20px 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: var(--white);
  }

  .zalo-qr-frame {
      position: relative;
      background: #fff;
      border-radius: 14px;
      padding: 12px;
      border: 1.5px solid var(--border);
      display: inline-flex;
      align-items: center;
      justify-content: center;
  }

  .zalo-corner {
      position: absolute;
      width: 18px;
      height: 18px;
      border-color: #0068FF;
      border-style: solid;
  }

  .zalo-corner.tl {
      top: 4px;
      left: 4px;
      border-width: 2.5px 0 0 2.5px;
      border-radius: 4px 0 0 0;
  }

  .zalo-corner.tr {
      top: 4px;
      right: 4px;
      border-width: 2.5px 2.5px 0 0;
      border-radius: 0 4px 0 0;
  }

  .zalo-corner.bl {
      bottom: 4px;
      left: 4px;
      border-width: 0 0 2.5px 2.5px;
      border-radius: 0 0 0 4px;
  }

  .zalo-corner.br {
      bottom: 4px;
      right: 4px;
      border-width: 0 2.5px 2.5px 0;
      border-radius: 0 0 4px 0;
  }

  .zalo-qr-img {
      width: 180px;
      height: 180px;
      display: block;
      border-radius: 6px;
  }

  .zalo-scan-hint {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.7rem;
      color: var(--muted);
      font-weight: 500;
      margin-top: 10px;
  }

  .zalo-members {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 20px 18px;
      background: var(--light);
      border-top: 1px solid var(--border);
  }

  .zalo-avatars {
      display: flex;
  }

  .z-av {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.58rem;
      font-weight: 800;
      color: #fff;
      border: 2px solid var(--white);
      margin-left: -6px;
      flex-shrink: 0;
  }

  .z-av:first-child {
      margin-left: 0;
  }

  .z-av-more {
      background: var(--dark);
      font-size: 0.55rem;
  }

  .zalo-member-text {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text);
  }

  @media (max-width: 768px) {
      .zalo-wrap {
          grid-template-columns: 1fr;
          gap: 2rem;
      }

      .zalo-title {
          font-size: 1.75rem;
      }

      .zalo-card {
          max-width: 360px;
          margin: 0 auto;
      }

      .zalo-left {
          text-align: center;
      }
  }

  /* ── HOW IT WORKS ── */
  .how {
      background: var(--white);
  }

  .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
  }

  .step {
      background: var(--white);
      padding: 2.5rem 2rem;
      position: relative;
  }

  .step-num {
      font-family: Nunito, sans-serif;
      font-size: 3rem;
      font-weight: 800;
      color: var(--brand-light);
      line-height: 1;
      margin-bottom: 1.25rem;
      position: relative;
  }

  .step-num::after {
      content: attr(data-n);
      position: absolute;
      inset: 0;
      font-size: 3rem;
      font-weight: 800;
      color: var(--brand);
      opacity: 0.2;
  }

  .step-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--brand-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1rem;
  }

  .step h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.5rem;
  }

  .step p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.65;
  }

  /* ── FEATURES ── */
  .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
  }

  .feat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem;
      transition: transform .25s, box-shadow .25s, border-color .25s;
      position: relative;
      overflow: hidden;
  }

  .feat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--brand);
      opacity: 0;
      transition: opacity .25s;
  }

  .feat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(255, 104, 51, 0.2);
  }

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

  .feat-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--brand-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
  }

  .feat-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.5rem;
  }

  .feat-card p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.65;
  }

  .feat-card.featured {
      background: var(--brand);
      border-color: transparent;
      color: #fff;
  }

  .feat-card.featured .feat-icon {
      background: rgba(255, 255, 255, 0.2);
  }

  .feat-card.featured h3 {
      color: #fff;
  }

  .feat-card.featured p {
      color: rgba(255, 255, 255, 0.8);
  }

  .feat-card.featured::before {
      display: none;
  }

  /* ── MISSION / VISION ── */
  .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
  }

  .mv-card {
      border-radius: 24px;
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
  }

  .mv-card.dark {
      background: var(--dark);
      color: #fff;
  }

  .mv-card.orange {
      background: var(--brand);
      color: #fff;
  }

  .mv-card.light {
      background: var(--white);
      border: 1px solid var(--border);
      color: var(--text);
  }

  .mv-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.6;
      margin-bottom: 1rem;
  }

  .mv-card h3 {
      font-family: Nunito, sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 1rem;
  }

  .mv-card p {
      font-size: 1rem;
      line-height: 1.75;
      opacity: 0.85;
  }

  .mv-deco {
      position: absolute;
      right: -20px;
      bottom: -20px;
      font-size: 8rem;
      opacity: 0.07;
      line-height: 1;
      font-family: Nunito, sans-serif;
      font-weight: 800;
      pointer-events: none;
  }

  .values-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
  }

  .value-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
  }

  .value-icon {
      font-size: 1.5rem;
  }

  .value-item h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark);
  }

  .value-item p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.6;
  }

  /* ── JOBS DEMO ── */
  .jobs-section {
      background: var(--white);
  }

  .jobs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
  }

  .job-card {
      background: var(--light);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.25rem;
      transition: transform .2s, box-shadow .2s;
  }

  .job-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
  }

  .job-card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 0.75rem;
  }

  .job-cat {
      background: var(--brand-light);
      color: var(--brand);
      border-radius: 6px;
      padding: 3px 10px;
      font-size: 0.72rem;
      font-weight: 700;
  }

  .job-urgent {
      background: #FEF3C7;
      color: #92400E;
      border-radius: 6px;
      padding: 3px 10px;
      font-size: 0.72rem;
      font-weight: 700;
  }

  .job-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.5rem;
  }

  .job-meta {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.7;
  }

  .job-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
  }

  .job-pay {
      font-weight: 800;
      font-size: 1.05rem;
      color: var(--brand);
  }

  .job-apply {
      background: var(--brand);
      color: #fff;
      border: none;
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 0.78rem;
      font-weight: 600;
      cursor: pointer;
      font-family: Nunito, sans-serif;
      transition: background .2s;
  }

  .job-apply:hover {
      background: var(--brand-dark);
  }

  /* ── TESTIMONIALS ── */
  .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
  }

  .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.75rem;
  }

  .testi-stars {
      color: #FBBF24;
      font-size: 1rem;
      margin-bottom: 0.75rem;
  }

  .testi-text {
      font-size: 1rem;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 1.25rem;
      font-style: italic;
  }

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

  .testi-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--brand-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--brand);
  }

  .testi-name {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--dark);
  }

  .testi-role {
      font-size: 0.75rem;
      color: var(--muted);
  }

  /* ── CTA SECTION ── */
  .cta-section {
      background: var(--dark);
      text-align: center;
  }

  .cta-section .section-title {
      color: #fff;
  }

  .cta-section .section-sub {
      color: rgba(255, 255, 255, 0.6);
      margin: 0 auto 2.5rem;
  }

  .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn-white {
      background: #fff;
      color: var(--brand);
      border: none;
      border-radius: 100px;
      padding: 0.875rem 2rem;
      font-family: Nunito, sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: transform .15s, box-shadow .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
  }

  .btn-ghost {
      background: transparent;
      color: rgba(255, 255, 255, 0.8);
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      border-radius: 100px;
      padding: 0.875rem 2rem;
      font-family: Nunito, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: border-color .2s, color .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.6);
      color: #fff;
  }

  .cta-bg-deco {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
  }

  .cta-bg-deco::before,
  .cta-bg-deco::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: var(--brand);
      opacity: 0.08;
  }

  .cta-bg-deco::before {
      width: 600px;
      height: 600px;
      top: -200px;
      right: -200px;
  }

  .cta-bg-deco::after {
      width: 400px;
      height: 400px;
      bottom: -150px;
      left: -100px;
  }

  .cta-section {
      position: relative;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
      .features-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .jobs-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .testi-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .steps-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 768px) {
      nav {
          padding: 0 5vw;
      }

      .hero-grid {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 2.5rem;
      }

      .hero-desc {
          margin: 0 auto 2rem;
      }

      .hero-actions {
          justify-content: center;
      }

      .hero-stats {
          justify-content: center;
      }

      .hero-visual {
          order: -1;
      }

      .fc-salary {
          right: -4%;
          top: 0;
      }

      .fc-badge {
          left: -4%;
          bottom: 10%;
      }

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

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

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

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

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

      section {
          padding: 70px 5vw;
      }

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

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

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

      .hero h1 {
          font-size: 2.2rem;
      }

      .phone-mock {
          width: 280px;
      }

      .step,
      .feat-card {
          padding: 1.5rem;
      }

      .step-icon {
          display: none;
      }
  }

  /* ── DOWNLOAD AREA WITH SINGLE QR CODE CARD ── */
  .cta-download-wrapper {
      margin-top: 3rem;
      position: relative;
      z-index: 2;
  }

  .single-download-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 28px;
      padding: 2.5rem;
      max-width: 780px;
      margin: 0 auto 3rem;
      display: flex;
      align-items: center;
      gap: 3rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
  }

  .single-download-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 20%, rgba(255, 104, 51, 0.06), transparent 50%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 0;
  }

  .single-download-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 104, 51, 0.25);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 24px rgba(255, 104, 51, 0.06);
  }

  .single-download-card:hover::after {
      opacity: 1;
  }

  .card-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
  }

  .card-right {
      flex-grow: 1;
      text-align: left;
      position: relative;
      z-index: 1;
  }

  /* OS Switcher Pills */
  .os-switcher {
      display: flex;
      background: rgba(0, 0, 0, 0.25);
      padding: 4px;
      border-radius: 100px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      width: fit-content;
  }

  .os-tab {
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.6);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: Nunito, sans-serif;
  }

  .os-tab:hover {
      color: #fff;
  }

  .os-tab.active {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 12px rgba(255, 104, 51, 0.25);
  }

  .tab-svg-icon {
      flex-shrink: 0;
  }

  /* QR Code Container Styling */
  .qr-container {
      position: relative;
      background: #fff;
      border-radius: 20px;
      padding: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      flex-shrink: 0;
      transition: transform 0.3s ease;
  }

  .single-download-card:hover .qr-container {
      transform: scale(1.03);
  }

  .qr-img {
      width: 120px;
      height: 120px;
      display: block;
      border-radius: 8px;
      animation: fadeIn 0.25s ease-out;
  }

  @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
  }

  /* High-tech QR Frame Corners */
  .qr-corner {
      position: absolute;
      width: 16px;
      height: 16px;
      border-color: var(--brand);
      border-style: solid;
      pointer-events: none;
  }

  .qr-tl {
      top: 6px;
      left: 6px;
      border-width: 3px 0 0 3px;
      border-radius: 6px 0 0 0;
  }

  .qr-tr {
      top: 6px;
      right: 6px;
      border-width: 3px 3px 0 0;
      border-radius: 0 6px 0 0;
  }

  .qr-bl {
      bottom: 6px;
      left: 6px;
      border-width: 0 0 3px 3px;
      border-radius: 0 0 0 6px;
  }

  .qr-br {
      bottom: 6px;
      right: 6px;
      border-width: 0 3px 3px 0;
      border-radius: 0 0 6px 0;
  }

  /* Scanner Laser Line Animation */
  .qr-scanner-line {
      position: absolute;
      left: 12px;
      right: 12px;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--brand), transparent);
      box-shadow: 0 0 8px var(--brand);
      border-radius: 50%;
      pointer-events: none;
      animation: qrScanLaser 3s infinite ease-in-out;
  }

  @keyframes qrScanLaser {
      0%, 100% {
          top: 12px;
          opacity: 0;
      }
      10%, 90% {
          opacity: 1;
      }
      50% {
          top: calc(100% - 15px);
      }
  }

  /* Info column styling */
  .app-tagline {
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--brand);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 4px;
      display: inline-block;
  }

  .card-title {
      font-family: Nunito, sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: #fff;
      margin: 0 0 8px;
      line-height: 1.25;
  }

  .card-description {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.55);
      margin: 0 0 1.5rem;
      line-height: 1.6;
      max-width: 440px;
  }

  .store-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
  }

  /* Premium Download Button */
  .download-store-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #000;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      padding: 10px 20px;
      text-decoration: none;
      transition: all 0.25s ease;
  }

  .download-store-btn:hover {
      background: #fff;
      color: #000;
      border-color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
  }

  .store-icon {
      flex-shrink: 0;
      transition: fill 0.25s ease;
  }

  .store-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
      text-align: left;
  }

  .store-sub {
      font-size: 0.6rem;
      font-weight: 500;
      text-transform: uppercase;
      opacity: 0.6;
      letter-spacing: 0.5px;
  }

  .store-main {
      font-size: 0.95rem;
      font-weight: 700;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }

  .cta-secondary-actions {
      margin-top: 2rem;
  }

  .btn-ghost-white {
      background: transparent;
      color: rgba(255, 255, 255, 0.7);
      border: 1.5px solid rgba(255, 255, 255, 0.18);
      border-radius: 100px;
      padding: 0.875rem 2rem;
      font-family: Nunito, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .btn-ghost-white:hover {
      border-color: #fff;
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
      transform: translateY(-1px);
  }

  /* Responsive Rules for Single QR Card */
  @media (max-width: 768px) {
      .single-download-card {
          flex-direction: column;
          align-items: center;
          text-align: center;
          padding: 2.25rem 1.75rem;
          gap: 2rem;
      }
      
      .card-right {
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
      }

      .store-buttons {
          justify-content: center;
      }
      
      .download-store-btn {
          width: 100%;
          max-width: 240px;
          justify-content: center;
      }
  }