/* CSS Custom Properties mapping to Tailwind/Laravel settings */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #1a1a1a; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }

/* Navigation */
.nav { background: white; position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.75rem; color: var(--dark); text-decoration: none; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--gray-700); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary-color); }
.btn-whatsapp { background: var(--primary-color); color: #000; padding: 0.6rem 1.5rem; border-radius: 0.5rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; font-size: 0.9rem; }
.btn-whatsapp:hover { background: var(--primary-hover); transform: translateY(-1px); }

/* =========================================
   MOBILE MENU REVAMP - FULL COVER (UNTITLED UI STYLE)
   ========================================= */

/* Sembunyikan ikon burger di desktop */
.hamburger { 
    display: none; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 0.5rem; 
    z-index: 60; 
}

@media (max-width: 768px) {
    .hamburger { display: block; }
}

/* Menu Mobile: Full Cover 100% Putih Bersih */
.nav-mobile { 
    display: flex; 
    flex-direction: column; 
    position: fixed; 
    top: 70px; /* Bawah sikit dari navbar supaya logo & butang X jelas */
    left: 0; 
    width: 100%; 
    height: calc(100vh - 70px); 
    background: white; 
    z-index: 45; 
    transform: translateY(-20px); 
    opacity: 0;
    transition: all 0.3s ease; 
    padding: 2rem 1.5rem 2rem; 
    overflow-y: auto; 
    pointer-events: none;
}
.nav-mobile.active { 
    transform: translateY(0); 
    opacity: 1;
    pointer-events: auto;
}

.nav-mobile > a, .mobile-nav-group a { 
    display: block; 
    padding: 1.25rem 0; 
    color: #374151; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 1.15rem; 
    border-bottom: 1px solid #f3f4f6; 
    transition: color 0.2s; 
}
.nav-mobile a:hover, .mobile-nav-group a:hover { color: #EAB308; }

/* Butang WhatsApp Sentiasa di Bawah Menu */
.nav-mobile .btn-whatsapp-mobile { 
    margin-top: auto !important; 
    position: sticky; 
    bottom: 0; 
    display: block; 
    text-align: center; 
    padding: 1rem; 
    border-radius: 0.5rem; 
    font-weight: 700; 
    font-size: 1rem; 
    text-decoration: none; 
    transition: transform 0.2s; 
    background: #EAB308 !important; /* Gunakan warna tema ExpadAsia */
    color: #1a1a1a !important;
    box-shadow: 0 -10px 20px white, 0 4px 15px rgba(234, 179, 8, 0.3); 
    z-index: 50; 
}

/* Animasi Burger X */
.hamburger span { 
    display: block; 
    width: 26px; 
    height: 2px; 
    background: #1a1a1a; 
    margin: 6px 0; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    border-radius: 2px; 
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Buang Overlay Hitam (TIDAK DIPERLUKAN UNTUK FULL COVER) */
.nav-overlay { display: none !important; }

/* Buttons */
.btn-yellow { background: var(--primary-color); color: #000; padding: 0.75rem 2rem; border-radius: 0.5rem; font-weight: 600; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; font-size: 0.95rem; display: inline-block; }
.btn-yellow:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(234,179,8,0.4); }
.btn-outline { background: transparent; color: var(--dark); padding: 0.75rem 2rem; border-radius: 0.5rem; font-weight: 600; text-decoration: none; border: 2px solid var(--dark); transition: all 0.2s; font-size: 0.95rem; display: inline-block; }
.btn-outline:hover { background: var(--dark); color: white; }

/* Section styles */
.section { padding: 5rem 1.5rem; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-label { text-align: center; color: var(--primary-color); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.section-title { text-align: center; font-family: 'Poppins', sans-serif; font-size: 2.25rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.section-desc { text-align: center; color: var(--gray-500); max-width: 600px; margin: 0 auto 3rem; font-size: 0.95rem; line-height: 1.6; }

/* Package Cards */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.package-card { background: white; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.07); transition: all 0.3s; border: 1px solid #f0f0f0; }
.package-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.package-card-img { position: relative; height: 200px; overflow: hidden; }
.package-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.package-card:hover .package-card-img img { transform: scale(1.05); }
.package-card-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--primary-color); color: #000; font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 0.25rem; }
.package-card-duration { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(0,0,0,0.6); color: white; font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 0.25rem; }
.wishlist-btn { position: absolute; top: 0.75rem; right: 0.75rem; background: white; border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #9ca3af; font-size: 1rem; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: all 0.2s; z-index: 10; }
.wishlist-btn:hover { transform: scale(1.1); }
.wishlist-btn.active { color: #ef4444; }
.wishlist-btn i.fas { color: #ef4444; }
.package-card-duration { right: auto; left: 0.75rem; top: 2.25rem; }
.package-card-body { padding: 1.25rem; }
.package-card-location { display: flex; align-items: center; gap: 0.25rem; color: var(--gray-500); font-size: 0.8rem; margin-bottom: 0.5rem; }
.package-card-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--dark); margin-bottom: 0.5rem; }
.package-card-desc { color: var(--gray-500); font-size: 0.85rem; line-height: 1.5; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.package-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid #f0f0f0; }
.package-card-price small { display: block; color: var(--gray-500); font-size: 0.7rem; }
.package-card-price strong { font-size: 1.25rem; color: var(--dark); }
.btn-view { background: var(--primary-color); color: #000; padding: 0.5rem 1.25rem; border-radius: 0.4rem; font-weight: 600; text-decoration: none; font-size: 0.8rem; transition: all 0.2s; }
.btn-view:hover { background: var(--primary-hover); }

/* Footer */
.footer { background: #111827; color: rgba(255,255,255,0.6); padding: 3rem 1.5rem 1.5rem; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }
.footer h4 { color: white; font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 1rem; font-size: 1rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer ul li a:hover { color: var(--primary-color); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }

/* Package View Components */
.top-bar { background: #EAB308; padding: 0.4rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.8rem; font-weight: 500; }
.top-bar a { color: #000; text-decoration: none; display: flex; align-items: center; gap: 0.3rem; }
.pkg-swiper { width: 100%; border-radius: 1rem; padding-bottom: 2.5rem !important; }
.swiper-button-next, .swiper-button-prev { color: #EAB308 !important; background: rgba(255,255,255,0.9); width: 44px !important; height: 44px !important; border-radius: 50%; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 1.2rem !important; font-weight: bold; }
.swiper-pagination-bullet { background: #9ca3af !important; opacity: 0.5 !important; }
.swiper-pagination-bullet-active { background: #EAB308 !important; width: 24px !important; border-radius: 4px !important; transition: width 0.3s; opacity: 1 !important; }

/* Sidebar Card */
.sticky-card { position: sticky; top: 7rem; background: white; border-radius: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; border: 1px solid #e5e7eb; }
.sticky-header { background: #EAB308; padding: 0.75rem 1rem; }
.sticky-header h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; color: #1a1a1a; margin: 0; text-align: center; }
.sticky-body { padding: 1rem; }

/* Overview */
.pkg-overview h2 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin-bottom: 1rem; }
.pkg-overview p { color: #6b7280; line-height: 1.8; font-size: 0.95rem; margin-bottom: 1.5rem; }

/* Quick info row */
.quick-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; padding: 1.25rem 0; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.quick-info-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.25rem; }
.quick-info-icon { font-size: 1.5rem; color: #EAB308; margin-bottom: 0.25rem; }
.quick-info-label { font-size: 0.7rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.05em; }
.quick-info-value { font-size: 0.9rem; font-weight: 600; color: #1a1a1a; }

/* Price Info Boxes */
.price-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.price-box { border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1rem; text-align: center; transition: all 0.3s; background: white; }
.price-box:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-color: #EAB308; transform: translateY(-2px); }
.price-box-icon { font-size: 1.25rem; margin-bottom: 0.5rem; }
.price-box-label { font-size: 0.7rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }

/* How it Works */
.how-works { margin-bottom: 2.5rem; }
.how-works h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: #1a1a1a; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.4rem; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.how-step { text-align: center; }
.how-step-icon { width: 52px; height: 52px; border-radius: 50%; background: #FEF9C3; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; font-size: 1.5rem; }
.how-step-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.85rem; color: #1a1a1a; margin-bottom: 0.25rem; }
.how-step-desc { font-size: 0.75rem; color: #9ca3af; line-height: 1.4; }

/* Gallery */
.pkg-gallery { margin-bottom: 2.5rem; }

/* Itinerary */
.pkg-itinerary { margin-bottom: 2.5rem; }
.pkg-itinerary > h2 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin-bottom: 1.5rem; }
.itin-day { position: relative; padding-left: 2.5rem; margin-bottom: 1.75rem; }
.itin-day:before { content: ''; position: absolute; left: 12px; top: 28px; bottom: -28px; width: 2px; background: #e5e7eb; }
.itin-day:last-child:before { display: none; }
.itin-marker { position: absolute; left: 0; top: 2px; width: 26px; height: 26px; border-radius: 50%; background: #EAB308; display: flex; align-items: center; justify-content: center; }
.itin-marker svg { width: 14px; height: 14px; fill: #000; }
.itin-day-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.05rem; color: #1a1a1a; margin-bottom: 0.5rem; }
.itin-day-list { list-style: none; padding: 0; margin: 0; }
.itin-day-list li { position: relative; padding-left: 1rem; font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin-bottom: 0.3rem; }
.itin-day-list li:before { content: '•'; position: absolute; left: 0; color: #9ca3af; }

/* Included / Not Included */
.include-section { margin-bottom: 2.5rem; }
.include-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.include-box { padding: 1.5rem; border-radius: 0.75rem; }
.include-box.green { background: #f0fdf4; border: 1px solid #bbf7d0; }
.include-box.red { background: #fef2f2; border: 1px solid #fecaca; }
.include-box h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.include-box.green h3 { color: #166534; }
.include-box.red h3 { color: #991b1b; }
.include-box ul { list-style: none; padding: 0; margin: 0; }
.include-box ul li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.4rem; font-size: 0.85rem; line-height: 1.5; }
.include-box.green ul li { color: #15803d; }
.include-box.red ul li { color: #b91c1c; }
.include-icon { flex-shrink: 0; margin-top: 2px; }

/* Additional Info */
.additional-info { margin-bottom: 2.5rem; }
.additional-info h2 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin-bottom: 1rem; }
.info-item { margin-bottom: 1rem; }
.info-item h4 { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; color: #374151; margin-bottom: 0.25rem; }
.info-item p { font-size: 0.85rem; color: #6b7280; line-height: 1.6; }

/* Price Calculator */
.calc-note { font-size: 0.8rem; color: #6b7280; margin-bottom: 1rem; text-align: center; line-height: 1.3; }
.calc-row { margin-bottom: 0.75rem; }
.calc-label { display: block; font-size: 0.75rem; font-weight: 600; color: #374151; margin-bottom: 0.25rem; }
.calc-input { width: 100%; padding: 0.5rem 0.6rem; border: 1px solid #d1d5db; border-radius: 0.5rem; font-size: 0.85rem; background: white; color: #1a1a1a; outline: none; transition: border 0.2s; }
.calc-input:focus { border-color: #EAB308; box-shadow: 0 0 0 3px rgba(234,179,8,0.15); }
.pax-row { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid #f3f4f6; }
.pax-row:last-child { border-bottom: none; }
.pax-info { flex: 1; }
.pax-name { font-size: 0.85rem; font-weight: 600; color: #1f2937; display: block; }
.pax-desc { font-size: 0.7rem; color: #9ca3af; }
.pax-price { font-size: 0.8rem; color: #6b7280; text-align: right; width: 70px; }
.pax-controls { display: flex; align-items: center; gap: 0.5rem; margin-left: 0.75rem; }
.pax-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid #d1d5db; background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #6b7280; transition: all 0.2s; }
.pax-btn:hover { border-color: #EAB308; color: #EAB308; }
.pax-count { font-weight: 600; font-size: 0.9rem; min-width: 16px; text-align: center; }
.calc-total { margin-top: 1rem; display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 2px dashed #e5e7eb; }
.calc-total-label { font-weight: 600; color: #374151; font-size: 0.9rem; }
.calc-total-price { font-family: 'Poppins', sans-serif; color: #EAB308; font-size: 1.25rem; font-weight: 700; }
.calc-actions { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.btn-book { display: block; width: 100%; background: #1a1a1a; color: #EAB308; padding: 0.75rem; border-radius: 0.5rem; font-weight: 700; text-decoration: none; text-align: center; font-size: 0.95rem; transition: all 0.2s; border: none; cursor: pointer; }
.btn-book:hover { background: #000; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.btn-wa { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; background: #25D366; color: white; padding: 0.75rem; border-radius: 0.5rem; font-weight: 600; text-decoration: none; font-size: 0.9rem; transition: all 0.2s; }
.btn-wa:hover { background: #128C7E; transform: translateY(-1px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 3.5rem 1.25rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none !important; }
    .hamburger { display: block; }
    .nav-mobile { display: block; }
    .nav-overlay { display: block; pointer-events: none; }
    .nav-overlay.active { pointer-events: auto; }
    .nav-container { height: 60px; padding: 0 1rem; }
    .nav-logo { font-size: 1.5rem; }
    .section { padding: 2.5rem 1rem; }
    .section-title { font-size: 1.5rem; }
    .section-desc { font-size: 0.85rem; margin-bottom: 2rem; }
    .section-label { font-size: 0.75rem; }
    .packages-grid { grid-template-columns: 1fr; gap: 1rem; }
    .package-card:hover { transform: none; }
    .package-card-img { height: 180px; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .footer { padding: 2rem 1rem 1rem; }
}
@media (max-width: 480px) {
    .section { padding: 2rem 0.75rem; }
    .section-title { font-size: 1.35rem; }
    .package-card-body { padding: 1rem; }
    .package-card-name { font-size: 1rem; }
}
/* =========================================
   RECOVERED PACKAGE PAGE STYLES 
   ========================================= */

/* Hero Specific */
.pkg-hero { position: relative; height: 380px; overflow: hidden; }
.pkg-hero img { width: 100%; height: 100%; object-fit: cover; }
.pkg-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); }
.pkg-hero-content { position: absolute; bottom: 2rem; left: 0; right: 0; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.pkg-hero-back { display: inline-flex; align-items: center; gap: 0.3rem; color: rgba(255,255,255,0.8); font-size: 0.85rem; text-decoration: none; margin-bottom: 0.75rem; transition: color 0.2s; }
.pkg-hero-back:hover { color: #EAB308; }
.pkg-badges { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.pkg-badge { font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 0.25rem; text-transform: uppercase; }
.pkg-badge-yellow { background: #EAB308; color: #000; }
.pkg-badge-dark { background: rgba(0,0,0,0.6); color: white; }
.pkg-hero-title { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 0.25rem; }
.pkg-hero-location { display: flex; align-items: center; gap: 0.3rem; color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* Main content wrapper */
.pkg-container { max-width: 1280px; margin: 0 auto; padding: 2.5rem 2rem; display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.pkg-content { display: flex; flex-direction: column; min-width: 0; }
.pkg-sidebar { position: relative; }

/* Booking Sidebar (Overwrite Desktop) */
.sticky-card { position: sticky; top: 7rem; background: white; border-radius: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; border: 1px solid #e5e7eb; }

/* Mobile Responsive Fixes for Package Page */
@media (max-width: 1024px) {
    .pkg-container { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
    .sticky-card { position: static; box-shadow: none; border: 1px solid #e5e7eb; margin-top: 2rem; }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pkg-hero { height: 280px; }
    .pkg-hero-title { font-size: 1.75rem; }
    .pkg-hero-content { padding: 0 1rem; }
    .quick-info { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .price-boxes { grid-template-columns: 1fr; gap: 0.75rem; }
    .how-steps { grid-template-columns: 1fr; gap: 1rem; }
    .calc-total { flex-direction: column; gap: 0.5rem; text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .include-grid { grid-template-columns: 1fr; /* INI AKAN SELESAIKAN ISU 2 COLUMN JADI 1 DALAM MOBILE */ }
    .top-bar { display: none; }
}

@media (max-width: 480px) {
    .pkg-hero { height: 240px; }
    .pkg-hero-title { font-size: 1.5rem; }
    .how-steps { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .how-step-icon { width: 44px; height: 44px; font-size: 1.25rem; }
}

