/* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
      background: #ffffff;
      color: #0f172a;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img {
      max-width: 100%;
      display: block;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    ul {
      list-style: none;
    }
    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
    }
    h1,
    h2,
    h3,
    h4 {
      font-family: 'system-ui', serif;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
    }
    .wrap {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 32px;
    }
    @media (max-width: 640px) {
      .wrap {
        padding: 0 20px;
      }
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 15px;
      transition: all 0.25s ease;
      white-space: nowrap;
      border: none;
    }
    .btn-primary {
      background: #2563eb;
      color: #fff;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    }
    .btn-primary:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
    }
    .btn-ghost {
      background: transparent;
      color: #1e293b;
      border: 2px solid #e2e8f0;
    }
    .btn-ghost:hover {
      border-color: #2563eb;
      color: #2563eb;
      background: #f8faff;
    }
    .btn-white {
      background: #ffffff;
      color: #2563eb;
    }
    .btn-white:hover {
      background: #eef4ff;
      transform: translateY(-2px);
    }
    .btn-sm {
      padding: 9px 18px;
      font-size: 13px;
    }
    .btn-block {
      width: 100%;
      justify-content: center;
    }
    .btn-outline-light {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    .btn-outline-light:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #fff;
    }

    /* ===== PILLS & BADGES ===== */
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      background: #f1f5f9;
      color: #475569;
    }
    .pill-blue {
      background: #eff6ff;
      color: #2563eb;
    }
    .pill-green {
      background: #ecfdf5;
      color: #059669;
    }
    .pill-gold {
      background: #fffbeb;
      color: #b45309;
    }
    .badge-verified {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #eff6ff;
      color: #1d4ed8;
      font-size: 11px;
      font-weight: 800;
      padding: 3px 10px 3px 7px;
      border-radius: 999px;
    }

    /* ===== CARDS ===== */
    .card {
      background: #ffffff;
      border-radius: 20px;
      transition: all 0.3s ease;
      border: 1px solid #f1f5f9;
    }
    .card:hover {
      border-color: #dbe7ff;
      box-shadow: 0 12px 40px -12px rgba(18, 24, 31, 0.12);
    }

    /* ===== SECTION ===== */
    .section {
      padding: 80px 0;
    }
    .section-tight {
      padding: 56px 0;
    }
    .section-head {
      max-width: 640px;
      margin-bottom: 48px;
    }
    .section-head h2 {
      font-size: clamp(28px, 3.6vw, 44px);
      margin-top: 10px;
    }
    .section-head p {
      color: #64748b;
      font-size: 17px;
      margin-top: 14px;
      line-height: 1.7;
    }
    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #2563eb;
    }
    .eyebrow::before {
      content: "";
      width: 20px;
      height: 2.5px;
      background: #2563eb;
      border-radius: 2px;
    }
    .stars {
      color: #f59e0b;
      letter-spacing: 1px;
    }
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== NAVIGATION ===== */
    .nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.6);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    }
    .nav-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 32px;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .logo:hover {
      opacity: 0.85;
    }
    .logo-img {
      height: 34px;
      width: auto;
      filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.04));
    }
    .logo-wm {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: #0f172a;
      transition: color 0.2s;
      display: flex;
      align-items: baseline;
    }
    .logo-wm em {
      color: #2563eb;
      font-style: normal;
      font-weight: 800;
      margin-left: 1px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }
    .nav-links a {
      padding: 8px 18px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      color: #475569;
      transition: all 0.2s;
      letter-spacing: 0.01em;
    }
    .nav-links a:hover,
    .nav-links a.active {
      background: #eff6ff;
      color: #2563eb;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-burger {
      display: none;
      background: none;
      padding: 6px;
      color: #1e293b;
      border-radius: 8px;
      transition: background 0.2s;
    }
    .nav-burger:hover {
      background: #f1f5f9;
    }
    .nav-mobile {
      display: none;
      position: fixed;
      inset: 74px 0 0 0;
      background: #ffffff;
      backdrop-filter: blur(20px);
      z-index: 190;
      padding: 32px 24px;
      overflow-y: auto;
      border-top: 1px solid #f1f5f9;
    }
    .nav-mobile.open {
      display: block;
    }
    .nav-mobile a {
      display: block;
      padding: 16px 4px;
      font-size: 17px;
      font-weight: 600;
      border-bottom: 1px solid #f1f5f9;
      color: #1e293b;
      transition: color 0.2s;
    }
    .nav-mobile a:hover {
      color: #2563eb;
    }
    .nav-mobile .nav-actions {
      flex-direction: column;
      margin-top: 24px;
    }
    .nav-mobile .btn {
      width: 100%;
      justify-content: center;
    }
    @media (max-width: 940px) {
      .nav-links,
      .nav-actions {
        display: none;
      }
      .nav-burger {
        display: block;
      }
    }

    /* ===== PAGES ===== */
    .page {
      display: none;
    }
    .page.active {
      display: block;
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      overflow: hidden;
      background: radial-gradient(1200px 500px at 80% -10%, rgba(37, 99, 235, 0.08), transparent 60%),
        radial-gradient(1000px 400px at 10% 0%, rgba(5, 150, 105, 0.06), transparent 50%),
        #ffffff;
      padding: 56px 0 32px;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 56px;
      align-items: center;
    }
    .hero h1 {
      font-size: clamp(34px, 5.2vw, 60px);
      margin: 14px 0 18px;
      line-height: 1.08;
    }
    .hero h1 em {
      font-style: normal;
      color: #2563eb;
    }
    .hero h1 .hl-green {
      color: #059669;
    }
    .hero-sub {
      font-size: 18px;
      color: #475569;
      max-width: 520px;
      margin-bottom: 30px;
      line-height: 1.7;
    }
    .hero-cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }
    .search-bar {
      display: flex;
      align-items: stretch;
      background: #fff;
      border-radius: 999px;
      box-shadow: 0 20px 48px -12px rgba(18, 24, 31, 0.18);
      border: 1px solid #e2e8f0;
      padding: 6px;
      max-width: 640px;
    }
    .search-field {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 6px 18px;
      border-right: 1px solid #e2e8f0;
      min-width: 0;
    }
    .search-field:last-of-type {
      border-right: none;
    }
    .search-field label {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #94a3b8;
    }
    .search-field select,
    .search-field input {
      border: none;
      background: none;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      color: #0f172a;
      padding: 4px 0;
      width: 100%;
      outline: none;
    }
    .search-btn {
      background: #2563eb;
      color: #fff;
      border: none;
      border-radius: 999px;
      width: 52px;
      height: 52px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    .search-btn:hover {
      background: #1d4ed8;
      transform: scale(1.04);
    }
    .hero-trust {
      display: flex;
      gap: 32px;
      margin-top: 28px;
      flex-wrap: wrap;
    }
    .hero-trust b {
      font-family: 'system-ui', serif;
      font-size: 24px;
      display: block;
    }
    .hero-trust span {
      font-size: 12.5px;
      color: #64748b;
      font-weight: 600;
    }
    .hero-visual {
      position: relative;
      height: 100%;
      min-height: 440px;
    }
    .hero-card-photo {
      position: absolute;
      border-radius: 24px;
      box-shadow: 0 24px 48px -12px rgba(18, 24, 31, 0.25);
      object-fit: cover;
      border: 4px solid #fff;
    }
    .hero-card-photo.p1 {
      width: 60%;
      top: 0;
      right: 0;
      height: 280px;
      z-index: 2;
    }
    .hero-card-photo.p2 {
      width: 50%;
      bottom: 0;
      left: 0;
      height: 210px;
      z-index: 3;
    }
    .floating-chip {
      position: absolute;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 24px -8px rgba(18, 24, 31, 0.15);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 4;
      font-size: 13px;
      font-weight: 700;
      animation: float 5s ease-in-out infinite;
    }
    .floating-chip.c1 {
      top: 20px;
      left: -4px;
      animation-delay: 0s;
    }
    .floating-chip.c2 {
      bottom: 56px;
      right: -8px;
      animation-delay: 1.4s;
    }
    .floating-chip .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 4px #ecfdf5;
    }
    @keyframes float {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }
    @media (max-width: 980px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }
      .hero-visual {
        min-height: 320px;
        margin-top: 12px;
      }
      .search-bar {
        flex-direction: column;
        border-radius: 20px;
      }
      .search-field {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
      }
      .search-btn {
        width: 100%;
        border-radius: 999px;
        margin-top: 4px;
        height: 48px;
      }
    }

    /* ===== TICKER ===== */
    .ticker-wrap {
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
      background: #0f172a;
      overflow: hidden;
      position: relative;
    }
    .ticker-label {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(90deg, #0f172a 70%, transparent);
      padding: 0 40px 0 32px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #22c55e;
    }
    .ticker-track {
      display: flex;
      gap: 56px;
      white-space: nowrap;
      padding: 16px 0;
      animation: scroll-left 38s linear infinite;
      padding-left: 220px;
    }
    .ticker-track span {
      color: #94a3b8;
      font-size: 14px;
    }
    .ticker-track b {
      color: #fff;
    }
    @keyframes scroll-left {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }

    /* ===== QUICK TABS ===== */
    .quick-tabs {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .quick-tab {
      flex: 1;
      min-width: 260px;
      padding: 28px 32px;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      color: #fff;
      min-height: 150px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .quick-tab:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.3);
    }
    .quick-tab.blue {
      background: linear-gradient(135deg, #1d4ed8, #0f2c6e);
    }
    .quick-tab.green {
      background: linear-gradient(135deg, #059669, #065f46);
    }
    .quick-tab h3 {
      color: #fff;
      font-size: 24px;
      margin-bottom: 4px;
    }
    .quick-tab p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 14px;
      max-width: 300px;
    }
    .quick-tab .arrow {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all 0.3s;
    }
    .quick-tab:hover .arrow {
      background: rgba(255, 255, 255, 0.3);
      transform: translateX(4px);
    }

    /* ===== LANGUAGE GRID ===== */
    .lang-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
      margin-top: 28px;
    }
    .lang-chip {
      background: #f8fafc;
      border-radius: 16px;
      padding: 18px 12px;
      text-align: center;
      transition: all 0.25s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }
    .lang-chip:hover {
      background: #fff;
      border-color: #dbe7ff;
      transform: translateY(-4px);
      box-shadow: 0 8px 24px -12px rgba(18, 24, 31, 0.12);
    }
    .lang-chip .flag {
      font-size: 28px;
      margin-bottom: 6px;
    }
    .lang-chip b {
      display: block;
      font-size: 13.5px;
      font-weight: 700;
    }
    .lang-chip span {
      font-size: 11.5px;
      color: #94a3b8;
      font-weight: 500;
    }
    @media (max-width: 900px) {
      .lang-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 500px) {
      .lang-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ===== TEACHER GRID ===== */
    .teacher-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    @media (max-width: 1180px) {
      .teacher-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 860px) {
      .teacher-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 540px) {
      .teacher-grid {
        grid-template-columns: 1fr;
      }
    }
    .t-card {
      padding: 0;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      height: 100%;
      background: #fff;
      border: 1px solid #f1f5f9;
      border-radius: 20px;
    }
    .t-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px -12px rgba(18, 24, 31, 0.15);
      border-color: #dbe7ff;
    }
    .t-photo-wrap {
      position: relative;
      height: 190px;
      overflow: hidden;
      flex-shrink: 0;
      background: #f1f5f9;
    }
    .t-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .t-card:hover .t-photo-wrap img {
      transform: scale(1.06);
    }
    .t-flag-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(4px);
      border-radius: 999px;
      padding: 4px 12px 4px 8px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    .t-fav {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      color: #64748b;
      transition: all 0.2s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    .t-fav:hover {
      color: #ef4444;
      background: #fff;
    }
    .t-online {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(4px);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .t-online .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #22c55e;
      animation: pulse 1.6s infinite;
    }
    .t-body {
      padding: 16px 18px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .t-toprow {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 8px;
    }
    .t-name {
      font-family: 'system-ui', serif;
      font-size: 17px;
      font-weight: 700;
    }
    .t-native {
      font-size: 12.5px;
      color: #64748b;
      font-weight: 600;
    }
    .t-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }
    .t-rating span {
      color: #94a3b8;
      font-weight: 600;
    }
    .t-langs {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin: 10px 0;
    }
    .t-bio {
      font-size: 13.5px;
      color: #475569;
      margin: 8px 0 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.6;
    }
    .t-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: auto;
    }
    .t-price b {
      font-family: 'system-ui', serif;
      font-size: 20px;
    }
    .t-price span {
      font-size: 12px;
      color: #94a3b8;
    }

    /* ===== COUNTRY SCROLL ===== */
    .country-scroll {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }
    @media (max-width: 1180px) {
      .country-scroll {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 560px) {
      .country-scroll {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    .country-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 150px;
      cursor: pointer;
    }
    .country-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .country-card:hover img {
      transform: scale(1.1);
    }
    .country-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0) 60%);
    }
    .country-label {
      position: absolute;
      bottom: 14px;
      left: 16px;
      color: #fff;
      z-index: 2;
    }
    .country-label b {
      font-size: 15px;
      display: block;
    }
    .country-label span {
      font-size: 11.5px;
      opacity: 0.8;
    }

    /* ===== LESSON GRID ===== */
    .lesson-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    @media (max-width: 1180px) {
      .lesson-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 560px) {
      .lesson-grid {
        grid-template-columns: 1fr;
      }
    }
    .lesson-card {
      overflow: hidden;
      padding: 0;
      cursor: pointer;
      background: #fff;
      border-radius: 20px;
      border: 1px solid #f1f5f9;
      transition: all 0.3s ease;
    }
    .lesson-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px -12px rgba(18, 24, 31, 0.15);
      border-color: #dbe7ff;
    }
    .lesson-photo {
      height: 150px;
      overflow: hidden;
      background: #f1f5f9;
    }
    .lesson-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .lesson-card:hover .lesson-photo img {
      transform: scale(1.04);
    }
    .lesson-body {
      padding: 16px 18px 18px;
    }
    .lesson-cat {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #059669;
    }
    .lesson-title {
      font-family: 'system-ui', serif;
      font-size: 16.5px;
      margin-top: 4px;
      font-weight: 700;
    }
    .lesson-meta {
      font-size: 12.5px;
      color: #94a3b8;
      margin-top: 6px;
    }

    /* ===== TESTIMONIALS ===== */
    .testi-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 940px) {
      .testi-row {
        grid-template-columns: 1fr;
      }
    }
    .testi-card {
      padding: 28px 30px;
      position: relative;
      background: #fff;
      border: 1px solid #f1f5f9;
      border-radius: 20px;
    }
    .testi-quote {
      font-family: 'system-ui', serif;
      font-size: 18px;
      line-height: 1.6;
      color: #0f172a;
      margin-top: 12px;
    }
    .testi-person {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
    }
    .testi-person img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
    }
    .testi-person b {
      font-size: 14px;
      display: block;
    }
    .testi-person span {
      font-size: 12.5px;
      color: #94a3b8;
    }

    /* ===== TRUST STRIP ===== */
    .trust-strip {
      background: #0f172a;
      padding: 32px 0;
    }
    .trust-strip .wrap {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    @media (max-width: 860px) {
      .trust-strip .wrap {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 480px) {
      .trust-strip .wrap {
        grid-template-columns: 1fr;
      }
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 14px;
      color: #e2e8f0;
    }
    .trust-item .ic-wrap {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trust-item b {
      display: block;
      font-size: 14px;
      font-weight: 700;
    }
    .trust-item span {
      font-size: 12px;
      color: #94a3b8;
    }
    .pan-divider {
      height: 4px;
      background: linear-gradient(90deg, #059669 0 33%, #f59e0b 33% 66%, #dc2626 66% 100%);
    }

    /* ===== EARN SECTION ===== */
    .earn-section {
      background: linear-gradient(160deg, #0f172a, #1a2e3a 60%, #0f172a);
      color: #fff;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .earn-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    @media (max-width: 900px) {
      .earn-grid {
        grid-template-columns: 1fr;
      }
    }
    .earn-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 28px;
    }
    .earn-stat b {
      font-family: 'system-ui', serif;
      font-size: 30px;
      color: #fbbf24;
      display: block;
    }
    .earn-stat span {
      font-size: 13px;
      color: #94a3b8;
    }
    .earn-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 20px 24px;
      margin-bottom: 12px;
      backdrop-filter: blur(4px);
    }
    .earn-card b {
      display: block;
      font-size: 15px;
      margin-bottom: 4px;
    }
    .earn-card span {
      font-size: 13px;
      color: #94a3b8;
    }

    /* ===== LIVE COUNTER ===== */
    .live-counter {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      color: #64748b;
      font-weight: 700;
      margin: 18px 0 0;
    }
    .live-counter .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 4px #ecfdf5;
      animation: pulse 1.6s infinite;
    }
    @keyframes pulse {
      0%,
      100% {
        opacity: 1;
      }
      50% {
        opacity: 0.4;
      }
    }
    .fade-swap {
      transition: opacity 0.35s ease;
    }
    .fade-swap.fading {
      opacity: 0;
    }

    /* ── FOOTER ── */
    .footer {
      background: linear-gradient(145deg, #0b1120 0%, #141c2f 50%, #1a2538 100%);
      color: rgba(255, 255, 255, 0.7);
      padding: clamp(48px, 6vw, 72px) 0 28px;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(99, 102, 241, 0.08);
    }
    .footer::before {
      content: '';
      position: absolute;
      top: -60%;
      left: -40%;
      width: 180%;
      height: 180%;
      background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.03) 40%, transparent 70%);
      animation: footerGlow 22s ease-in-out infinite alternate;
      pointer-events: none;
    }
    @keyframes footerGlow {
      0% {
        transform: translate(0, 0) scale(1);
      }
      100% {
        transform: translate(6%, 4%) scale(1.15);
      }
    }
    .footer .container {
      position: relative;
      z-index: 1;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 32px;
    }
    @media (max-width: 640px) {
      .footer .container {
        padding: 0 20px;
      }
    }
    .ft-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 40px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      max-width: 700px;
    }
    .ft-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }
    .ft-logo img {
      height: 34px;
      width: auto;
      filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
      transition: filter 0.3s ease;
    }
    .ft-logo:hover img {
      filter: brightness(1.3);
    }
    .ft-logo-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      background: linear-gradient(135deg, #818cf8, #a78bfa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .ft-desc {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.8;
      margin-bottom: 22px;
      max-width: 600px;
    }
    .ft-contact-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 10px;
      margin-bottom: 4px;
    }
    .ft-contact {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.55);
      padding: 10px 16px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.25s ease;
    }
    .ft-contact:hover {
      background: rgba(99, 102, 241, 0.08);
      border-color: rgba(99, 102, 241, 0.15);
      color: rgba(255, 255, 255, 0.8);
      transform: translateX(4px);
    }
    .ft-contact a {
      color: #93c5fd;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .ft-contact a:hover {
      color: #c7d2fe;
    }
    .ft-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .ft-copy {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 0.02em;
    }
    .ft-copy a {
      color: rgba(255, 255, 255, 0.35);
      text-decoration: none;
      transition: color 0.2s ease;
      font-weight: 500;
    }
    .ft-copy a:hover {
      color: #93c5fd;
    }
    .ft-social {
      display: flex;
      gap: 14px;
    }
    .ft-social a {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.4);
      transition: all 0.25s ease;
      font-size: 15px;
    }
    .ft-social a:hover {
      background: rgba(99, 102, 241, 0.12);
      border-color: rgba(99, 102, 241, 0.2);
      color: #c7d2fe;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .ft-grid {
        max-width: 100%;
      }
      .ft-desc {
        max-width: 100%;
      }
      .ft-contact-list {
        grid-template-columns: 1fr;
      }
      .ft-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }
      .ft-social {
        justify-content: center;
      }
    }
    @media (max-width: 480px) {
      .footer {
        padding: 40px 0 20px;
      }
      .ft-grid {
        gap: 24px;
        padding-bottom: 28px;
      }
      .ft-logo img {
        height: 28px;
      }
      .ft-logo-name {
        font-size: 1rem;
      }
      .ft-contact {
        font-size: 0.8rem;
        padding: 8px 14px;
      }
      .ft-social a {
        width: 34px;
        height: 34px;
        font-size: 13px;
      }
    }

    /* ===== BROWSE PAGE ===== */
    .browse-header {
      background: #f8fafc;
      padding: 32px 0 24px;
      border-bottom: 1px solid #e2e8f0;
    }
    .browse-title-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 16px;
    }
    .breadcrumb {
      font-size: 13px;
      color: #94a3b8;
      margin-bottom: 6px;
    }
    .breadcrumb b {
      color: #0f172a;
    }
    .browse-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 36px;
      padding: 32px 0 80px;
      align-items: flex-start;
    }
    @media (max-width: 980px) {
      .browse-layout {
        grid-template-columns: 1fr;
      }
    }
    .chip-set {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .chip-opt {
      padding: 6px 14px;
      border-radius: 999px;
      border: 1.5px solid #e2e8f0;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      color: #64748b;
      transition: all 0.2s ease;
      background: #fff;
    }
    .chip-opt.selected {
      background: #2563eb;
      border-color: #2563eb;
      color: #fff;
    }
    .chip-opt:hover:not(.selected) {
      border-color: #94a3b8;
    }
    .results-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .results-badge {
      display: inline-block;
      padding: 10px 16px;
      border-radius: 12px;
      background: #F8FAFC;
      border: 1px solid #E2E8F0;
      color: #334155;
      font-size: 14px;
      font-weight: 600;
    }
    .sort-select {
      padding: 8px 16px;
      border-radius: 12px;
      border: 1.5px solid #e2e8f0;
      font-weight: 600;
      font-size: 13px;
      background: #fff;
      color: #0f172a;
    }
    .browse-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 1180px) {
      .browse-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 640px) {
      .browse-grid {
        grid-template-columns: 1fr;
      }
    }
    .empty-state {
      text-align: center;
      padding: 80px 20px;
      color: #94a3b8;
    }
    .empty-state h3 {
      color: #0f172a;
      margin-bottom: 8px;
    }

    /* ===== PROFILE PAGE ===== */
    .profile-cover {
      height: 260px;
      position: relative;
      overflow: hidden;
    }
    .profile-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .profile-cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 50%, rgba(15, 23, 42, 0.5));
    }
    .profile-head {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
    }
    .profile-id {
      display: flex;
      gap: 24px;
      align-items: flex-end;
      margin-top: -60px;
      position: relative;
      z-index: 2;
      flex-wrap: wrap;
    }
    .profile-avatar {
      width: 128px;
      height: 128px;
      border-radius: 24px;
      border: 4px solid #fff;
      box-shadow: 0 16px 40px -12px rgba(18, 24, 31, 0.2);
      object-fit: cover;
      flex-shrink: 0;
    }
    .profile-id-info {
      padding-bottom: 8px;
    }
    .profile-id-info h1 {
      font-size: 30px;
    }
    .profile-id-meta {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 6px;
      color: #64748b;
      font-size: 14px;
    }
    .profile-id-meta .stars {
      font-size: 14px;
    }
    .profile-layout {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 44px;
      padding: 36px 0 80px;
      align-items: flex-start;
    }
    @media (max-width: 980px) {
      .profile-layout {
        grid-template-columns: 1fr;
      }
    }
    .profile-tabs {
      display: flex;
      gap: 4px;
      border-bottom: 1.5px solid #e2e8f0;
      margin-bottom: 28px;
      overflow-x: auto;
    }
    .profile-tab {
      padding: 10px 18px;
      font-weight: 700;
      font-size: 14px;
      color: #64748b;
      border-bottom: 2.5px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.2s;
    }
    .profile-tab.active {
      color: #2563eb;
      border-color: #2563eb;
    }
    .profile-tab:hover:not(.active) {
      color: #0f172a;
    }
    .profile-section {
      margin-bottom: 40px;
    }
    .profile-section h3 {
      font-size: 20px;
      margin-bottom: 14px;
    }
    .profile-section p {
      color: #1e293b;
      font-size: 15px;
      line-height: 1.8;
    }
    .video-placeholder {
      border-radius: 20px;
      background: linear-gradient(135deg, #1d4ed8, #0f172a);
      height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .video-placeholder img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
    }
    .play-btn {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      box-shadow: 0 16px 40px -12px rgba(18, 24, 31, 0.3);
      transition: all 0.3s;
    }
    .video-placeholder:hover .play-btn {
      transform: scale(1.08);
    }
    .video-caption {
      position: absolute;
      bottom: 16px;
      left: 20px;
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      z-index: 2;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    .lang-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .lang-tag {
      background: #f1f5f9;
      border-radius: 12px;
      padding: 8px 16px;
      font-size: 13.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .lang-tag .lvl {
      font-weight: 600;
      color: #94a3b8;
      font-size: 11px;
    }
    .culture-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    @media (max-width: 560px) {
      .culture-grid {
        grid-template-columns: 1fr;
      }
    }
    .culture-item {
      background: #f8fafc;
      border-radius: 14px;
      padding: 16px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      border: 1px solid #f1f5f9;
    }
    .culture-item .ic {
      font-size: 20px;
    }
    .culture-item b {
      font-size: 14px;
      display: block;
      margin-bottom: 2px;
    }
    .culture-item span {
      font-size: 12.5px;
      color: #64748b;
    }
    .review-item {
      padding: 20px 0;
      border-bottom: 1px solid #f1f5f9;
    }
    .review-item:last-child {
      border-bottom: none;
    }
    .review-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
      flex-wrap: wrap;
      gap: 8px;
    }
    .review-user {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .review-user img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      object-fit: cover;
    }
    .review-user b {
      font-size: 13.5px;
      display: block;
    }
    .review-user span {
      font-size: 12px;
      color: #94a3b8;
    }
    .review-date {
      font-size: 12px;
      color: #94a3b8;
    }
    .review-text {
      font-size: 14px;
      color: #1e293b;
      margin-top: 2px;
    }
    .cert-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .cert-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #f8fafc;
      padding: 10px 16px;
      border-radius: 12px;
      font-size: 13px;
      font-weight: 700;
      border: 1px solid #f1f5f9;
    }

    /* ===== BOOKING CARD ===== */
    .booking-card {
      position: sticky;
      top: 88px;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 24px;
      background: #fff;
      box-shadow: 0 20px 48px -12px rgba(18, 24, 31, 0.15);
    }
    .booking-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 4px;
    }
    .booking-price b {
      font-family: 'system-ui', serif;
      font-size: 30px;
    }
    .booking-price span {
      color: #94a3b8;
      font-size: 14px;
    }
    .pkg-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 18px 0;
    }
    .pkg-opt {
      border: 1.5px solid #e2e8f0;
      border-radius: 12px;
      padding: 12px 16px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .pkg-opt.selected {
      border-color: #2563eb;
      background: #eff6ff;
    }
    .pkg-opt-top {
      display: flex;
      justify-content: space-between;
      font-weight: 700;
      font-size: 14px;
    }
    .pkg-opt-top span:last-child {
      color: #2563eb;
    }
    .pkg-opt small {
      color: #94a3b8;
      font-size: 12px;
    }
    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 5px;
      margin: 12px 0;
    }
    .cal-day {
      text-align: center;
      font-size: 10px;
      font-weight: 700;
      color: #94a3b8;
      padding-bottom: 4px;
    }
    .cal-slot {
      aspect-ratio: 1;
      border-radius: 8px;
      background: #f1f5f9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      color: #94a3b8;
      transition: all 0.15s;
    }
    .cal-slot.avail {
      background: #ecfdf5;
      color: #059669;
    }
    .cal-slot.avail:hover {
      background: #059669;
      color: #fff;
    }
    .cal-slot.selected {
      background: #2563eb;
      color: #fff;
    }
    .time-slots {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 12px 0;
    }
    .time-slot {
      padding: 8px 14px;
      border-radius: 10px;
      border: 1.5px solid #e2e8f0;
      font-size: 12.5px;
      font-weight: 700;
      cursor: pointer;
      color: #475569;
      transition: all 0.15s;
    }
    .time-slot.selected {
      background: #2563eb;
      border-color: #2563eb;
      color: #fff;
    }
    .time-slot:hover:not(.selected) {
      border-color: #94a3b8;
    }
    @media (max-width: 700px) {
      .profile-cover {
        height: 200px;
      }
      .profile-id {
        margin-top: -48px;
        gap: 16px;
      }
      .profile-avatar {
        width: 96px;
        height: 96px;
        border-radius: 18px;
      }
      .profile-id-info h1 {
        font-size: 24px;
      }
      .booking-card {
        position: static;
      }
      .cal-slot {
        font-size: 11px;
      }
      .time-slots {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
      .time-slot {
        text-align: center;
      }
    }

    /* ===== CULTURES PAGE ===== */
    .culture-explore-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    @media (max-width: 980px) {
      .culture-explore-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 600px) {
      .culture-explore-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===== WIZARD ===== */
    .wizard-shell {
      background: #f8fafc;
      min-height: calc(100vh - 72px);
      padding: 40px 0 80px;
    }
    .wizard-grid {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 40px;
      align-items: flex-start;
    }
    @media (max-width: 900px) {
      .wizard-grid {
        grid-template-columns: 1fr;
      }
    }
    .wizard-steps {
      display: flex;
      flex-direction: column;
      gap: 4px;
      background: #fff;
      border-radius: 20px;
      padding: 12px;
      border: 1px solid #e2e8f0;
      position: sticky;
      top: 88px;
    }
    @media (max-width: 900px) {
      .wizard-steps {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding: 8px;
      }
    }
    .wizard-step {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border-radius: 12px;
      color: #94a3b8;
      font-weight: 700;
      font-size: 13.5px;
      white-space: nowrap;
      cursor: pointer;
      transition: all 0.2s;
    }
    .wizard-step .num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #f1f5f9;
      color: #94a3b8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      flex-shrink: 0;
    }
    .wizard-step.done .num {
      background: #059669;
      color: #fff;
    }
    .wizard-step.active {
      background: #eff6ff;
      color: #2563eb;
    }
    .wizard-step.active .num {
      background: #2563eb;
      color: #fff;
    }
    .wizard-panel {
      background: #fff;
      border-radius: 20px;
      border: 1px solid #e2e8f0;
      padding: 36px 40px;
    }
    @media (max-width: 640px) {
      .wizard-panel {
        padding: 24px 20px;
      }
    }
    .wizard-panel h2 {
      font-size: 24px;
      margin-bottom: 4px;
    }
    .wizard-panel .sub {
      color: #64748b;
      font-size: 14.5px;
      margin-bottom: 28px;
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    @media (max-width: 640px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
    }
    .field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 18px;
    }
    .field label {
      font-size: 13px;
      font-weight: 700;
      color: #0f172a;
    }
    .field label .opt {
      font-weight: 600;
      color: #94a3b8;
    }
    .field input,
    .field select,
    .field textarea {
      padding: 12px 16px;
      border-radius: 12px;
      border: 1.5px solid #e2e8f0;
      font-family: inherit;
      font-size: 14.5px;
      color: #0f172a;
      width: 100%;
      transition: all 0.2s;
      background: #fff;
    }
    .field textarea {
      resize: vertical;
      min-height: 100px;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: #2563eb;
      box-shadow: 0 0 0 4px #eff6ff;
    }
    .field-hint {
      font-size: 12px;
      color: #94a3b8;
    }
    .check-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    @media (max-width: 640px) {
      .check-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    .check-card {
      border: 1.5px solid #e2e8f0;
      border-radius: 12px;
      padding: 12px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      font-size: 13.5px;
      font-weight: 600;
      transition: all 0.2s;
    }
    .check-card input {
      accent-color: #2563eb;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }
    .check-card.selected {
      border-color: #2563eb;
      background: #eff6ff;
    }
    .upload-box {
      border: 2px dashed #cbd5e1;
      border-radius: 16px;
      padding: 36px 20px;
      text-align: center;
      color: #94a3b8;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .upload-box:hover {
      border-color: #2563eb;
      background: #eff6ff;
    }
    .upload-box b {
      display: block;
      color: #0f172a;
      margin: 10px 0 4px;
      font-size: 15px;
    }
    .avail-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 6px;
    }
    @media (max-width: 640px) {
      .avail-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    .avail-day {
      text-align: center;
    }
    .avail-day h6 {
      font-size: 12px;
      margin-bottom: 6px;
      color: #64748b;
      font-weight: 700;
    }
    .avail-cell {
      height: 32px;
      border-radius: 8px;
      background: #f1f5f9;
      margin-bottom: 6px;
      cursor: pointer;
      transition: all 0.15s;
    }
    .avail-cell.on {
      background: #059669;
    }
    .avail-cell:hover:not(.on) {
      background: #e2e8f0;
    }
    .price-box {
      display: flex;
      align-items: center;
      gap: 16px;
      background: #f8fafc;
      padding: 20px 24px;
      border-radius: 16px;
      border: 1px solid #e2e8f0;
    }
    .price-box input {
      width: 120px;
      font-size: 24px;
      font-weight: 700;
      font-family: 'system-ui', serif;
      border: none;
      background: none;
      color: #0f172a;
    }
    .price-box input:focus {
      outline: none;
    }
    .review-summary {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .rs-row {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid #f1f5f9;
      font-size: 14px;
    }
    .rs-row b {
      color: #0f172a;
    }
    .rs-row span {
      color: #64748b;
    }
    .wizard-nav {
      display: flex;
      justify-content: space-between;
      margin-top: 32px;
      padding-top: 20px;
      border-top: 1px solid #f1f5f9;
    }
    .progress-track {
      height: 5px;
      background: #f1f5f9;
      border-radius: 99px;
      overflow: hidden;
      margin-bottom: 28px;
    }
    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #2563eb, #059669);
      border-radius: 99px;
      transition: width 0.4s ease;
    }
    .success-panel {
      text-align: center;
      padding: 56px 20px;
    }
    .success-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: #ecfdf5;
      color: #059669;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    /* ===== RESPONSIVE FINE-TUNE ===== */
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 28px;
      }
      .hero-sub {
        font-size: 16px;
      }
      .hero-trust {
        gap: 16px;
      }
      .hero-trust b {
        font-size: 20px;
      }
      .quick-tab {
        min-width: 100%;
        padding: 24px;
      }
      .quick-tab h3 {
        font-size: 20px;
      }
      .profile-id-info h1 {
        font-size: 20px;
      }
      .profile-id-meta {
        font-size: 12px;
        gap: 8px;
      }
      .profile-avatar {
        width: 76px;
        height: 76px;
        border-radius: 16px;
      }
      .profile-id {
        margin-top: -40px;
        gap: 12px;
      }
      .section {
        padding: 48px 0;
      }
      .browse-title-row h1 {
        font-size: 22px !important;
      }
    }