/* =========================================
   IBM PLEX SANS — LOCAL FONTS
   ========================================= */
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/assets/fontsnew/IBMPlexSans-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/assets/fontsnew/IBMPlexSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/assets/fontsnew/IBMPlexSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/assets/fontsnew/IBMPlexSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/assets/fontsnew/IBMPlexSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/assets/fontsnew/IBMPlexSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/assets/fontsnew/IBMPlexSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow:  #e3ff00;
    --purple:  #dcd2ff;
    --green:   #d5f7b3;
    --dark:    #1e2024;
    --gray:    #66686e;
    --cream:   #fdffee;
    --white:   #ffffff;
    --nav-h:   76px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: 28px;
    padding-bottom: 16px;
    background: rgba(253, 255, 238, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links-wrapper {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-links {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    background: var(--white);
    padding: 10px 28px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: opacity 0.18s;
}

.nav-links a:hover {
    opacity: 0.65;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--dark);
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.18s, opacity 0.18s;
    white-space: nowrap;
}

.nav-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* =========================================
   HERO
   ========================================= */
.hero {
    padding-top: 56px;
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    background: var(--cream);
}

.hero-title {
    font-size: 96px;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.02;
    margin: 0 auto 18px;
    color: var(--dark);
    max-width: 1200px;
    font-family: 'IBM Plex Sans';
}

.hero-sub {
    font-size: 22px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 0;
}

/* ---- Phone Fan Visual ---- */
.hero-visual {
    position: relative;
    margin-top: 50px;
    height: 640px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.gradient-bg-wrapper {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    max-width: 1240px;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

.gradient-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.phones-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    width: max-content;
    max-width: 100%;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.phone-wrap {
    position: relative;
    flex-shrink: 0;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.12));
}

.phone-img {
    border-radius: 40px;
    display: block;
    object-fit: cover;
}

.p1 {
    z-index: 2;
    transform: translateY(76px);
    margin-right: -65px;
}
.p1 .phone-img {
    height: 420px;
    width: auto;
}

.p2 {
    z-index: 4;
    transform: rotate(0deg) translateY(10px);
    margin-right: -55px;
}
.p2 .phone-img {
    height: 460px;
    width: auto;
}

.p3 {
    z-index: 10;
    transform: rotate(0deg) translateY(-46px);
    margin-right: -55px;
}
.p3 .phone-img {
    height: 550px;
    width: auto;
}

.p4 {
    z-index: 4;
    transform: rotate(0deg) translateY(10px);
    margin-right: -65px;
}
.p4 .phone-img {
    height: 460px;
    width: auto;
}

.p5 {
    z-index: 2;
    transform: translateY(76px);
}
.p5 .phone-img {
    height: 420px;
    width: auto;
}

.phone-wrap:hover {
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.22));
}
.p1:hover { transform: translateY(12px); }
.p2:hover { transform: rotate(-2deg) translateY(2px); }
.p3:hover { transform: rotate(0deg) translateY(-22px); }
.p4:hover { transform: rotate(2deg) translateY(2px); }
.p5:hover { transform: translateY(12px); }

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
    padding: 80px 0 40px;
    max-width: 810px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    margin: 0 auto;
}

.section-tag {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
}

.hiw-grid {
    display: grid;
    grid-template-columns: 560px 1fr;
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Purple 2x2 card */
.hiw-card {
    background: #e6dfff;
    border-radius: 45px;
    padding: 40px;
    width: 460px;
    height: 460px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    box-sizing: border-box;
    align-content: center;
}

.hiw-item {
    background: var(--white);
    border-radius: 24px;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    gap: 0;
}

.hiw-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    margin-bottom: 14px;
}
.hiw-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--dark);
    display: block;
}

.hiw-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.hiw-item p {
    font-size: 12.5px;
    font-weight: 400;
    color: #888a92;
    line-height: 1.35;
}

/* Right copy */
.hiw-copy h2 {
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 16px;
    color: var(--dark);
}

.hiw-copy p {
    font-size: clamp(16px, 1.4vw, 19px);
    font-weight: 400;
    color: #6e7078;
    line-height: 1.4;
}

/* =========================================
   BROWSE SECTION
   ========================================= */
.browse-section {
    padding: 40px 0 80px;
}

.browse-grid {
    display: grid;
    grid-template-columns: 1fr 670px;
    align-items: center;
    display: flex;
    gap: 50px;
    max-width: 850px;
    margin-left: auto;
}

.browse-copy h2 {
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 16px;
    color: var(--dark);
}

.browse-copy p {
    font-size: clamp(16px, 1.4vw, 19px);
    font-weight: 400;
    color: #6e7078;
    line-height: 1.4;
}

/* Green card — exact Figma specs */
.browse-card {
    background: rgba(188, 237, 117, 0.6);
    border-radius: 45px;
    padding: 60px 48px 130px;
    width: 370px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.browse-card-label {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: -0.015em;
}

.browse-tags {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}

.tag,
.browse-city-tag {
    position: relative;
    border-left: 2px solid #8e6dff;
    border-right: 2px solid #8e6dff;
}

.tag::before,
.browse-city-tag::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -4px;
    width: 6px;
    height: 6px;
    background-color: #8e6dff;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.tag::after,
.browse-city-tag::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -4px;
    width: 6px;
    height: 6px;
    background-color: #8e6dff;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.tag {
    padding: 5px 14px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.tag-bars   { background: #9fb400; }
.tag-coffee { background: #7d6757; }
.tag-shops  { background: #2394a8; }

.browse-location-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.browse-city-tag {
    background: #cbbdff;
    color: var(--dark);
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 0;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.browse-people {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatars {
    display: flex;
    align-items: center;
    gap: 6px;
}

.av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: none;
    margin: 0;
}

.browse-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 2px;
}

.browse-plus,
.browse-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.browse-plus svg,
.browse-arrow svg {
    width: 18px;
    height: 18px;
    display: block;
    stroke: var(--dark);
}

.browse-plus:hover,
.browse-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.browse-plus svg,
.browse-arrow svg {
    width: 18px;
    height: 18px;
    display: block;
}

.browse-plus:hover,
.browse-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* =========================================
   ASK SECTION
   ========================================= */
.ask-section {
    background: var(--yellow);
    padding: 80px 0 90px;
}

.ask-head {
    text-align: center;
    margin-bottom: 44px;
}

.ask-head h2 {
    font-size: clamp(38px, 3.8vw, 56px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 16px;
    color: var(--dark);
}

.ask-head p {
    font-size: clamp(14px, 1.3vw, 18px);
    color: var(--dark);
    line-height: 1.35;
}

.ask-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.ask-card {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

.ask-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.ask-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    object-fit: cover;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: 90px 0 70px;
}

.faq-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}

.faq-left .section-tag {
    margin-bottom: 12px;
}

.faq-left h2 {
    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 16px;
    color: var(--dark);
}

.faq-left p {
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--gray);
    line-height: 1.35;
}

.faq-left a {
    color: #7957d5;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: 999px;
    transition: border-radius 0.2s, transform 0.2s;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: var(--white);
    border-radius: 999px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: transform 0.2s;
}

.faq-question:hover {
    transform: translateY(-2px);
}

.faq-question span:first-child {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.015em;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}

.faq-icon-yellow      { background: #e3ff00; }
.faq-icon-purple      { background: #dcd2ff; }
.faq-icon-orange      { background: #ffd4a3; }
.faq-icon-green       { background: #c2f883; }
.faq-icon-pink        { background: #fbc1f0; }
.faq-icon-lightyellow { background: #f6ffa1; }

.faq-answer {
    display: none;
    padding: 12px 22px 18px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
    background: var(--white);
    border-radius: 0 0 20px 20px;
    margin-top: -8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.faq-item.open {
    border-radius: 20px;
}

.faq-item.open .faq-question {
    border-radius: 20px 20px 0 0;
}

.faq-item.open .faq-answer {
    display: block;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 70px 0 80px;
}

.cta-container {
    width: 100%;
    padding: 0 40px;
}

.cta-card {
    background: var(--yellow);
    border-radius: 40px;
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.cta-content {
    max-width: 1160px;
    margin: 0 auto;
    text-align: left;
}

.cta-card h2 {
    font-size: clamp(40px, 4.6vw, 68px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 28px;
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25262c;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s;
}

.cta-btn-icon {
    width: 20px;
    height: 20px;
    fill: var(--white);
    flex-shrink: 0;
}

.cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #25262c;
    color: var(--white);
    padding: 60px 0 32px;
}

.footer .container {
    max-width: 1100px;
}

.footer-top {
    margin-bottom: 36px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
    display: block;
}

.footer-brand .tagline {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.2;
}

.footer-brand .copy {
    font-size: 12px;
    color: #8a8c94;
    line-height: 1.3;
}

.footer-brand img {
    padding-bottom: 20px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 200px 200px 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col h5 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #72747d;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--white);
    margin-bottom: 10px;
    transition: color 0.18s;
}

.footer-col a:hover {
    color: var(--yellow);
}

.footer-col .highlight-link {
    color: #e3ff00;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 24px;
}

.footer-bottom .copyright {
    font-size: 12px;
    color: #72747d;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
    .hiw-grid,
    .browse-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hiw-card,
    .browse-card {
        width: 100%;
        max-width: 460px;
        height: auto;
        margin: 0 auto;
    }

    .browse-grid {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .hiw-grid,
    .browse-grid,
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hiw-card,
    .browse-card {
        width: 100%;
        max-width: 460px;
        height: auto;
        min-height: unset;
        margin: 0 auto;
    }

    .hiw-card {
        padding: 32px;
    }

    .ask-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-visual {
        height: 520px;
        margin-top: 40px;
    }

    .p1 .phone-img, .p5 .phone-img { height: 350px; }
    .p2 .phone-img, .p4 .phone-img { height: 390px; }
    .p3 .phone-img { height: 460px; }
    .p1 { margin-right: -45px; }
    .p2 { margin-right: -40px; }
    .p3 { margin-right: -40px; }
    .p4 { margin-right: -45px; }

    .how-it-works,
    .browse-section,
    .ask-section,
    .faq-section,
    .cta-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container,
    .cta-container {
        padding: 0 20px;
    }

    .nav-links-wrapper {
        display: none;
    }

    .nav-cta {
        font-size: 13px;
        padding: 10px 18px;
    }

    .hero {
        padding-top: 32px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 56px;
        margin-bottom: 14px;
    }

    .hero-sub {
        font-size: 18px;
    }

    .hero-visual {
        height: 420px;
        margin-top: 30px;
    }

    .p1 .phone-img, .p5 .phone-img { height: 260px; }
    .p2 .phone-img, .p4 .phone-img { height: 300px; }
    .p3 .phone-img { height: 360px; border-radius: 30px; }

    .p1 { transform: translateY(40px); margin-right: -30px; }
    .p2 { transform: rotate(-2deg) translateY(8px); margin-right: -25px; }
    .p3 { transform: translateY(-10px); margin-right: -25px; }
    .p4 { transform: rotate(2deg) translateY(8px); margin-right: -30px; }
    .p5 { transform: translateY(40px); }

    .how-it-works {
        padding: 60px 20px 30px;
    }

    .browse-section {
        padding: 30px 20px 60px;
    }

    .hiw-card {
        grid-template-columns: 1fr;
        padding: 24px;
        max-width: 400px;
    }

    .browse-card {
        padding: 40px 32px 80px;
        max-width: 400px;
    }

    .ask-section {
        padding: 60px 20px 70px;
    }

    .faq-section {
        padding: 70px 20px 60px;
    }

    .cta-section {
        padding: 60px 0 70px;
    }

    .cta-card {
        padding: 50px 24px;
        border-radius: 32px;
    }

    .footer {
        padding: 50px 20px 28px;
    }

    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 520px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-visual {
        height: 340px;
        margin-top: 24px;
    }

    .p1, .p5 { display: none; }

    .p2 { transform: rotate(-4deg) translateY(10px) translateX(5px); margin-right: -10px; }
    .p2 .phone-img { height: 250px; }

    .p3 .phone-img { height: 300px; border-radius: 24px; }

    .p4 { transform: rotate(4deg) translateY(10px) translateX(-5px); margin-right: 0; }
    .p4 .phone-img { height: 250px; }

    .gradient-bg-wrapper {
        width: 100%;
        bottom: -40px;
    }

    .section-tag {
        font-size: 14px;
    }

    .hiw-copy h2,
    .browse-copy h2 {
        font-size: 34px;
    }

    .hiw-copy p,
    .browse-copy p {
        font-size: 16px;
    }

    .hiw-card {
        padding: 20px;
        border-radius: 32px;
        gap: 12px;
    }

    .hiw-item {
        padding: 20px 18px;
    }

    .browse-card {
        padding: 32px 24px 60px;
        border-radius: 32px;
    }

    .browse-card-label {
        font-size: 18px;
    }

    .tag,
    .browse-city-tag {
        font-size: 16px;
        padding: 4px 12px;
    }

    .browse-location-row {
        font-size: 18px;
    }

    .ask-head h2 {
        font-size: 38px;
    }

    .ask-head p {
        font-size: 15px;
    }

    .ask-cards {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .faq-left h2 {
        font-size: 36px;
    }

    .cta-card h2 {
        font-size: 36px;
        margin-bottom: 22px;
    }

    .cta-btn {
        font-size: 13px;
        padding: 11px 20px;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 380px) {
    .container,
    .nav-container,
    .cta-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .nav-cta {
        font-size: 12px;
        padding: 9px 16px;
    }

    .hiw-card {
        padding: 16px;
    }

    .browse-card {
        padding: 28px 20px 50px;
    }
}
