  /* Reset */
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
  }
  body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  img {
    display: block;
  }
  ul {
    list-style: none;
  }

  /* ===== HEADER ===== */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0A1929;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }
  .nav-container {
    max-width: 1440px;
    height: 77px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 122px;
  }
  .logo a img {
    width: 166px;
    height: 32px;
    border-radius: 10px;
  }
  .nav-buttons {
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .nav-buttons li a {
    color: #CBD5E1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    transition: color 0.2s ease;
  }
  .nav-buttons li a:hover {
    color: #fff;
  }
  .nav-cta-btn {
    background: #0EA5E9;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    border-radius: 14px;
    padding: 10px 27px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .nav-cta-btn:hover {
    background: #0284C7;
    transform: translateY(-1px);
  }

  /* Mobile hamburger */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #CBD5E1;
    transition: 0.3s;
  }

  /* ===== HERO ===== */
  .hero {
    max-width: 1440px;
    height: 723px;
    margin: 77px auto 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
  }
  .hero-bg-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('wave.png') no-repeat center center;
    background-size: cover;
    opacity: 0.07;
    z-index: 0;
  }
  .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .hero-wave img {
    width: 100%;
    display: block;
  }
  .hero-container {
    width: 100%;
    height: 100%;
    padding: 0 122px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .hero-left {
    flex: 1;
  }
  .hero-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 75px;
    color: #334155;
  }
  .hero-highlight {
    color: #0EA5E9;
  }
  .hero-underline {
    display: block;
    margin-top: -2px;
    margin-left: 84px;
  }
  .hero-subtext {
    max-width: 532px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32.5px;
    color: #64748B;
    margin-top: 16px;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 56px;
    background: #0EA5E9;
    border-radius: 14px;
    padding: 0 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 56px;
    color: #FFFFFF;
    margin-top: 24px;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .hero-cta:hover {
    background: #0284C7;
    transform: translateY(-1px);
  }
  .hero-cta-arrow {
    width: 14px;
    height: auto;
    transition: transform 0.2s ease;
  }
  .hero-cta:hover .hero-cta-arrow {
    transform: translateX(3px);
  }
  .hero-right img {
    max-width: 100%;
    height: auto;
  }

  /* ===== DEALS SECTION ===== */
  .deals {
    max-width: 1440px;
    margin: 0 auto;
    background: #D5E9FF;
    padding: 100px 122px 100px;
  }
  .deals-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;
    text-align: center;
    color: #334155;
  }
  .deals-highlight {
    color: #0EA5E9;
    position: relative;
    display: inline-block;
  }
  .deals-underline {
    display: block;
    margin: -2px auto 0;
  }
  .deals-subtext {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    color: #64748B;
    margin-top: 16px;
  }
  .deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  .deal-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid rgba(30, 58, 95, 0.5);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
  }
  .deal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px -4px rgba(0, 0, 0, 0.15);
  }
  .deal-card-img {
    width: 100%;
    height: 180px;
    background: #C4D5E8;
    position: relative;
  }
  .deal-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .deal-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #22C55E;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    padding: 4px 10px;
    border-radius: 6px;
  }
  .deal-card-body {
    padding: 16px;
  }
  .deal-card-city {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #334155;
  }
  .deal-card-route {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #64748B;
    margin-top: 2px;
  }
  .deal-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
  }
  .deal-card-price {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    color: #334155;
    display: flex;
    align-items: baseline;
  }
  .deal-card-price span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #64748B;
    margin-left: 6px;
    vertical-align: baseline;
  }
  .deal-card-arrow {
    width: 32px;
    height: 32px;
    background: rgba(14, 165, 233, 0.1);
    border: 1.33px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease;
  }
  .deal-card:hover .deal-card-arrow {
    border-color: #0EA5E9;
  }
  .deal-card-arrow svg {
    width: 14px;
    height: 14px;
  }
  .deals-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0EA5E9;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    border-radius: 14px;
    padding: 14px 32px;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .deals-view-all:hover {
    background: #0284C7;
    transform: translateY(-1px);
  }
  .deals-view-arrow {
    width: 14px;
    height: auto;
    transition: transform 0.2s ease;
  }
  .deals-view-all:hover .deals-view-arrow {
    transform: translateX(3px);
  }

  /* ===== HOW IT WORKS ===== */
  .how-it-works {
    max-width: 1440px;
    height: 1123px;
    margin: 0 auto;
    background: #F1F5F9;
    padding: 120px 122px;
    position: relative;
    overflow: hidden;
    position: relative;
  }
  .hiw-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .hiw-wave-top img {
    width: 100%;
    display: block;
  }
  .hiw-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .hiw-wave-bottom img {
    width: 100%;
    display: block;
  }
  .hiw-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;
    text-align: center;
    color: #334155;
  }
  .hiw-highlight {
    color: #0EA5E9;
    position: relative;
    display: inline-block;
  }
  .hiw-underline {
    display: block;
    width: 100%;
    height: 10px;
    margin-top: -2px;
  }
  .hiw-subtext {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    color: #64748B;
    margin-top: 16px;
  }
  .hiw-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    gap: 60px;
  }
  .hiw-left {
    flex: 1;
  }
  .hiw-left img {
    max-width: 100%;
    height: auto;
  }
  .hiw-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .hiw-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #0EA5E9;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .hiw-step-text {
    max-width: 488px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .hiw-step-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #334155;
  }
  .hiw-step-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #64748B;
  }

  /* ===== PLACEHOLDER SECTION ===== */
  .deals-extra {
    max-width: 1440px;
    margin: 0 auto;
    background: #D5E9FF;
    padding: 75px 122px 100px;
    position: relative;
  }
  .deals-extra-wave-top,
  .deals-extra-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .deals-extra-wave-top { top: 0; }
  .deals-extra-wave-bottom { bottom: 0; }
  .deals-extra-wave-top img,
  .deals-extra-wave-bottom img {
    width: 100%;
    display: block;
  }
  .deals-extra-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #334155;
  }
  .deals-extra-heading .highlight {
    color: #0EA5E9;
    position: relative;
    display: inline-block;
  }
  .deals-extra-heading .highlight svg {
    display: block;
    width: 100%;
    height: 10px;
    margin-top: -2px;
  }
  .deals-extra-subtext {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #64748B;
    margin-top: 12px;
  }
  .deals-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
  }
  .sub-section-gap { height: 60px; }

  /* Long-Haul Card (premium) */
  .card-lh {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F7FF 100%);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 12px -4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
  }
  .card-lh:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 20px -6px rgba(0, 0, 0, 0.15);
  }
  .card-lh .card-lh-img {
    height: 220px;
    background: #7BAED0;
    position: relative;
  }
  .card-lh .card-lh-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #22C55E;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
  }
  .card-lh .card-lh-region {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.9);
    color: #0EA5E9;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
  }
  .card-lh .card-lh-body { padding: 18px; }
  .card-lh .card-lh-city {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #334155;
  }
  .card-lh .card-lh-route {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748B;
    margin-top: 4px;
  }
  .card-lh .card-lh-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
  }
  .card-lh .card-lh-price {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #334155;
    display: flex;
    align-items: baseline;
  }
  .card-lh .card-lh-price span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #64748B;
    margin-left: 6px;
  }
  .card-lh .card-lh-arrow {
    width: 32px;
    height: 32px;
    background: rgba(14, 165, 233, 0.1);
    border: 1.33px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
  }
  .card-lh:hover .card-lh-arrow { border-color: #0EA5E9; }

  /* Trending Card (compact) */
  .card-tr {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid rgba(30, 58, 95, 0.5);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
  }
  .card-tr:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px -4px rgba(0, 0, 0, 0.15);
  }
  .card-tr .card-tr-img {
    height: 170px;
    background: #B0CDE4;
    position: relative;
  }
  .card-tr .card-tr-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #22C55E;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
  }
  .card-tr .card-tr-body { padding: 16px; }
  .card-tr .card-tr-city {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #334155;
  }
  .card-tr .card-tr-route {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748B;
    margin-top: 2px;
  }
  .card-tr .card-tr-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
  }
  .card-tr .card-tr-price {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #334155;
    display: flex;
    align-items: baseline;
  }
  .card-tr .card-tr-price span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #64748B;
    margin-left: 6px;
  }
  .card-tr .card-tr-arrow {
    width: 32px;
    height: 32px;
    background: rgba(14, 165, 233, 0.1);
    border: 1.33px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
  }
  .card-tr:hover .card-tr-arrow { border-color: #0EA5E9; }

  /* One-Way Card */
  .card-ow {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF7ED 100%);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 3px 8px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
  }
  .card-ow:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px -4px rgba(0, 0, 0, 0.15);
  }
  .card-ow .card-ow-img {
    height: 180px;
    background: #C4A882;
    position: relative;
  }
  .card-ow .card-ow-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #F97316;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
  }
  .card-ow .card-ow-oneway {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.9);
    color: #F97316;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
  }
  .card-ow .card-ow-body { padding: 16px; }
  .card-ow .card-ow-city {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #334155;
  }
  .card-ow .card-ow-route {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748B;
    margin-top: 2px;
  }
  .card-ow .card-ow-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
  }
  .card-ow .card-ow-price {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #334155;
    display: flex;
    align-items: baseline;
  }
  .card-ow .card-ow-price span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #64748B;
    margin-left: 6px;
  }
  .card-ow .card-ow-arrow {
    width: 32px;
    height: 32px;
    background: rgba(249, 115, 22, 0.1);
    border: 1.33px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
  }
  .card-ow:hover .card-ow-arrow { border-color: #F97316; }

  /* Fly Back Home Card */
  .card-fb {
    background: linear-gradient(180deg, #FFFFFF 0%, #ECFDF5 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 3px 8px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
  }
  .card-fb:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px -4px rgba(0, 0, 0, 0.15);
  }
  .card-fb .card-fb-img {
    height: 180px;
    background: #7DBDA4;
    position: relative;
  }
  .card-fb .card-fb-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10B981;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
  }
  .card-fb .card-fb-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.9);
    color: #10B981;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
  }
  .card-fb .card-fb-body { padding: 16px; }
  .card-fb .card-fb-city {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #334155;
  }
  .card-fb .card-fb-route {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748B;
    margin-top: 2px;
  }
  .card-fb .card-fb-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
  }
  .card-fb .card-fb-price {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #334155;
    display: flex;
    align-items: baseline;
  }
  .card-fb .card-fb-price span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #64748B;
    margin-left: 6px;
  }
  .card-fb .card-fb-arrow {
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    border: 1.33px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
  }
  .card-fb:hover .card-fb-arrow { border-color: #10B981; }
  .arrow-svg { width: 14px; height: 14px; }

  /* ===== FAQ SECTION ===== */
  .faq {
    max-width: 1440px;
    margin: 0 auto;
    background: #F8FAFC;
    padding: 120px 122px;
    position: relative;
    overflow: hidden;
  }
  .faq-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .faq-wave-bottom img {
    width: 100%;
    display: block;
  }
  .faq-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .faq-wave-top img {
    width: 100%;
    display: block;
  }
  .faq-heading {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;
    text-align: center;
    color: #334155;
  }
  .faq-highlight {
    color: #0EA5E9;
  }
  .faq-subtext {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    color: #64748B;
    margin-top: 16px;
  }
  .faq-list {
    max-width: 752px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .faq-item {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 0 24px;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    overflow: hidden;
  }
  .faq-item:hover {
    box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.1);
  }
  .faq-top {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .faq-question {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #334155;
  }
  .faq-chevron {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  .faq-chevron svg {
    width: 10px;
    height: 5px;
  }
  .faq-open .faq-chevron {
    transform: rotate(180deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
  }
  .faq-open .faq-answer {
    max-height: 200px;
    padding: 0 0 20px;
  }
  .faq-answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #64748B;
  }
  .faq-footer {
    text-align: center;
    margin-top: 40px;
  }
  .faq-footer p {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    color: #64748B;
  }
  .faq-footer a {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    color: #0EA5E9;
    margin-top: 8px;
    display: inline-block;
    transition: color 0.2s ease;
  }
  .faq-footer a:hover {
    color: #38BDF8;
  }

  /* ===== STOP OVERPAYING SECTION ===== */
  .stop-overpaying {
    max-width: 1440px;
    height: 500px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0A1929 0%, #0F2844 50%, #1E293B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .stop-box {
    width: 1150px;
    border-radius: 16px;
    background: linear-gradient(180deg, #0EA5E9 0%, #3B82F6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 60px 48px;
    position: relative;
    z-index: 3;
    gap: 20px;
  }
  .stop-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0px;
    text-align: center;
    color: #EEF1F4;
  }
  .stop-subtext {
    max-width: 755px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    color: #EEF1F4;
    margin-bottom: 25px;
  }
  .stop-cta {
    display: inline-block;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 15px 42px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    color: #0EA5E9;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  .stop-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #0EA5E9;
    color: #FFFFFF;
  }
  .stop-note {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(239, 225, 225, 0.7);
  }

  /* ===== FOOTER ===== */
  .footer {
    max-width: 1440px;
    margin: 0 auto;
    background: #0A1929;
    padding: 60px 122px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo img {
    width: 166px;
    height: 32px;
    border-radius: 10px;
  }
  .footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }
  .footer-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #99A1AF;
    transition: color 0.2s ease;
  }
  .footer-links a:hover {
    color: #FFFFFF;
  }
  .footer-links span {
    font-size: 14px;
    color: #99A1AF;
  }
  .footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }
  .footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #2D3A4A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #99A1AF;
    font-size: 16px;
    transition: border-color 0.2s ease, color 0.2s ease;
  }
  .footer-socials a:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
  }
  .footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #6A7282;
    margin-top: 24px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1200px) {
    .nav-container,
    .hero-container {
      padding: 0 60px;
    }
    .deals {
      padding: 55px 60px 80px;
    }
    .how-it-works {
      padding: 80px 60px;
    }
    .faq {
      padding: 80px 60px;
    }
  }

  @media (max-width: 1024px) {
    .nav-container,
    .hero-container {
      padding: 0 32px;
    }
    .deals {
      padding: 55px 32px 80px;
    }
    .how-it-works {
      padding: 60px 32px;
    }
    .faq {
      padding: 60px 32px;
    }
    .deals-heading,
    .hiw-heading,
    .faq-heading {
      font-size: 36px;
      line-height: 40px;
    }
    .deals-subtext {
      font-size: 18px;
    }
    .nav-buttons {
      gap: 28px;
    }
    .hero-heading {
      font-size: 48px;
      line-height: 60px;
    }
    .hero-subtext {
      font-size: 18px;
    }
  }

  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
    }
    .nav {
      display: none;
    }
    .nav.nav-open {
      display: block;
      position: absolute;
      top: 77px;
      left: 0;
      right: 0;
      background: #0A1929;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px 32px;
    }
    .nav.nav-open .nav-buttons {
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
    }
    .nav-cta-btn {
      display: none;
    }
    .nav-cta-btn.nav-open {
      display: none;
    }
    .nav-container {
      padding: 0 20px;
    }
    .hero {
      height: auto;
      min-height: 500px;
      margin-top: 77px;
    }
    .hero-container {
      flex-direction: column;
      padding: 40px 20px;
      gap: 32px;
    }
    .hero-heading {
      font-size: 36px;
      line-height: 46px;
    }
    .hero-underline {
      margin-left: 50px;
    }
    .hero-subtext {
      font-size: 16px;
      line-height: 26px;
      max-width: 100%;
    }
    .hero-right img {
      max-width: 90%;
    }
    .deals {
      padding: 40px 20px 60px;
    }
    .deals-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .deals-heading,
    .hiw-heading,
    .faq-heading {
      font-size: 28px;
      line-height: 34px;
    }
    .deals-subtext,
    .hiw-subtext,
    .faq-subtext {
      font-size: 16px;
    }
    .how-it-works {
      padding: 40px 20px;
      height: auto;
    }
    .hiw-content {
      flex-direction: column;
      gap: 32px;
    }
    .hiw-left img {
      max-width: 80%;
      margin: 0 auto;
    }
    .faq {
      padding: 40px 20px;
    }
    .faq-item {
      padding: 0 20px;
    }
    .faq-wave-bottom {
      display: none;
    }
    .deals-extra {
      padding: 40px 20px 60px;
    }
    .deals-extra-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .deals-extra-heading {
      font-size: 28px;
      line-height: 34px;
    }
    .deals-extra-subtext {
      font-size: 16px;
    }
    .card-lh .card-lh-img { height: 180px; }
    .card-lh .card-lh-city { font-size: 18px; }
    .card-lh .card-lh-price { font-size: 22px; }
  }

  @media (max-width: 480px) {
    .deals-grid {
      grid-template-columns: 1fr;
    }
    .hero-heading {
      font-size: 28px;
      line-height: 38px;
    }
    .hero-underline {
      margin-left: 36px;
      width: 120px;
    }
    .hero-cta {
      padding: 0 24px;
      height: 48px;
      font-size: 14px;
    }
    .deals-extra-grid {
      grid-template-columns: 1fr;
    }
  }
  /* ===== MODAL ===== */
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  .modal-overlay.modal-open {
    display: flex;
  }
  .modal {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    width: 420px;
    max-width: 90vw;
    position: relative;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
  }
  @keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s ease;
  }
  .modal-close:hover {
    background: #F1F5F9;
  }
  .modal-close svg {
    width: 14px;
    height: 14px;
  }
  .modal-logo {
    text-align: center;
    margin-bottom: 28px;
  }
  .modal-logo img {
    width: 166px;
    height: 32px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    display: none;
  }
  .modal-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    color: #334155;
    margin-bottom: 6px;
  }
  .modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #64748B;
    margin-bottom: 28px;
  }
  .modal-tabs {
    display: flex;
    background: #F1F5F9;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
  }
  .modal-tab {
    flex: 1;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #64748B;
    border: none;
    background: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .modal-tab.active {
    background: #FFFFFF;
    color: #334155;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .modal-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .modal-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #334155;
  }
  .modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #334155;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .modal-input::placeholder {
    color: #94A3B8;
  }
  .modal-input:focus {
    border-color: #0EA5E9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  }
  .modal-input.input-error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  }
  .modal-error {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #EF4444;
    display: none;
  }
  .modal-error.visible {
    display: block;
  }
  .modal-submit {
    width: 100%;
    padding: 14px 0;
    background: #0EA5E9;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: 4px;
    text-transform: uppercase;
  }
  .modal-submit:hover {
    background: #0284C7;
    transform: translateY(-1px);
  }
  .modal-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #94A3B8;
    text-align: center;
    margin-top: 16px;
  }
  .otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .otp-box {
    width: 48px;
    height: 52px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: #334155;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .otp-box:focus {
    border-color: #0EA5E9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  }
  .otp-box.input-error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  }
  .otp-resend {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748B;
    text-align: center;
    margin-top: 4px;
  }
  .otp-resend a {
    color: #0EA5E9;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  .otp-resend a:hover {
    color: #38BDF8;
  }
  .modal-submit:disabled {
    background: #94A3B8;
    cursor: not-allowed;
    transform: none;
  }
