:root {
    --primary: #6D28D9;
    --primary-dark: #4C1D95;
    --bg: #FAFAF8;
    --text: #1A1A1A;
    --text-mid: #555;
    --text-light: #888;
    --border: rgba(0,0,0,0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; } 

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

em { font-style: italic; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3.5rem);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem clamp(1.5rem, 5vw, 3.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: rgba(250,250,248,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    background: rgba(250,250,248,0.95);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.nav-brand { 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
}
.nav-logo-icon { 
    height: 32px; 
    width: auto; 
    object-fit: contain; 
    transition: transform 0.3s ease; 
}
.nav-logo-text { 
    font-family: 'DM Sans', sans-serif; 
    font-size: 1.15rem; 
    font-weight: 700; 
    color: var(--text); 
    letter-spacing: -0.03em; 
    transition: color 0.3s ease; 
}

.nav-brand:hover .nav-logo-icon { 
    transform: scale(1.08); 
}
.nav-brand:hover .nav-logo-text { 
    color: var(--primary); 
}

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
    text-decoration: none;
    background: var(--primary);
    color: white;
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(109,40,217,0.2);
}


.scroll-stage {
    height: 724vh;
    position: relative;
    background: var(--bg);
}

.scroll-sticky-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: visible; 
    background: var(--bg);
}


.scroll-phone-anchor {
    position: absolute;
    left: 50%;
 
    top: calc(50% + 32px);
    transform: translateY(-50%);
    z-index: 5;
    perspective: 1200px;
    transition: none; 
}


.phone-3d-wrapper {
    position: relative;
    width: 220px;
    height: calc(220px * 844 / 390); 
    transform-style: preserve-3d;

    transform: rotateY(-20deg) rotateX(5deg) rotateZ(2deg);
    filter:
        drop-shadow(-20px 30px 50px rgba(0,0,0,0.38))
        drop-shadow(-6px 10px 18px rgba(0,0,0,0.22));
    transition: filter 0.4s ease;
}

.phone-frame-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}


.phone-screen-images {
    position: absolute;
    top: 0.95%;    /* 8/844 */
    left: 2.05%;   /* 8/390 */
    width: 95.9%;  /* 374/390 */
    height: 98.1%; /* 828/844 */
    border-radius: 12.8% / 5.92%; /* rx=50 in % */
    overflow: hidden;
    z-index: 2;
    background: #111; 
}

.phone-screen-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.phone-screen-img.active { opacity: 1; }


.phone-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.phone-dynamic-island {
    position: absolute;
    left: 36.15%;
    top: 2.61%;
    width: 27.69%;
    height: 4.03%;
    background: #000;
    border-radius: 50px;
}


.phone-home-bar {
    position: absolute;
    left: 37.18%;
    bottom: 3.79%;
    width: 25.64%;
    height: 0.59%;
    min-height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 50px;
}

.phone-message {
    position: absolute;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}
.phone-message.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.phone-message-img {
    display: block;
    width: 240px;
    height: auto;
}
.phone-message-1 { bottom: 28%; left: -95%; }
.phone-message-2 { bottom: 8%; right: -85%; }

.scroll-panel {
    position: absolute;
    top: calc(50% + 32px);
    transform: translateY(-50%);
    padding: 0 2rem;
    transition: opacity 0.5s ease;
}


.scroll-panel-hero {
    opacity: 1;
}

.scroll-panel-how {
    opacity: 0;
    pointer-events: none;
}
.scroll-panel-how.visible {
    opacity: 1;
    pointer-events: auto;
}

.hero-title {
    font-size: clamp(2.4rem, 3.6vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.4rem;
}
.hero-title em { color: var(--primary); font-style: italic; }

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-store-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.footer-store-btns {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
    align-items: flex-start;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: #111;
    color: white;
    text-decoration: none;
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}
.store-btn:hover { background: #222; transform: translateY(-2px); }

.store-btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn-sub  { font-size: 0.6rem; font-weight: 400; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.04em; }
.store-btn-main { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }

.hero-login-note {
    display: inline-flex; align-items: center; gap: 0.85rem;
    padding: 0.9rem 1.3rem; background: white;
    border: 1px solid var(--border); border-radius: 14px;
    font-size: 0.82rem; color: var(--text); line-height: 1.4;
}
.phone-pill {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; background: var(--primary);
    border-radius: 10px; flex-shrink: 0;
}
.hero-login-note strong { font-weight: 700; }
.hero-login-note .light { color: var(--text-mid); }

.how-header { margin-bottom: 0; }
.how-header em { color: var(--primary); font-style: italic; }
.how-header h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); line-height: 1.12; }

.how-steps-vertical {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
}

.how-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0.6rem;
    border-bottom: 1px solid var(--border);
    opacity: 0.25;
    transition: opacity 0.4s ease, background 0.3s ease;
    border-radius: 8px;
}
.how-step.active { opacity: 1; background: rgba(109,40,217,0.04); }

.how-num {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(109,40,217,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 600;
    color: var(--primary); background: rgba(109,40,217,0.06);
    font-family: 'DM Sans', sans-serif;
}
.how-step-text h3 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--text); font-weight: 600; }
.how-step-text p  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

.phone-carousel {
    width: 100%;
    max-width: 480px;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.carousel-slide--single {
    justify-content: center;
}
.carousel-slide--single .phone-device {
    width: 45%;
}

.phone-device {
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.12),
        0 0 0 1px rgba(0,0,0,0.04),
        inset 0 0 0 2px rgba(255,255,255,0.05);
}

.carousel-slide .phone-device:nth-child(2) {
    transform: translateY(20px);
}

.phone-device img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
    padding-bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.section-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.how-header { margin-bottom: 0; }

.how-header h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    line-height: 1.12;
}

.campaigns-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
}

.campaigns-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 3.5rem;
    gap: 2rem;
}

.campaigns-header h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    line-height: 1.1;
}

.campaigns-header p {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 320px;
    text-align: right;
}

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

.campaign-card {
    background: white;
    padding: 2.5rem 2rem;
    transition: background 0.3s;
}

.campaign-card:hover { background: #FDFCFA; }

.campaign-tag {
    display: inline-block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
}

.campaign-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }

.campaign-card p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.dual-campaigns-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
}

.dual-campaigns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
}

.dual-panel {
    padding: clamp(2.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
}

.dual-panel--light {
    background: #f7f4ff;
    color: var(--text);
}

.dual-panel--light h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text);
}

.dual-panel--light h2 em { color: var(--primary); font-style: italic; }

.dual-panel--light .dual-dot { background: var(--primary); }

.dual-panel--light .dual-item {
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.dual-panel--light .dual-item h4 { color: var(--text); }
.dual-panel--light .dual-item p { opacity: 0.55; }

.dual-panel--dark {
    background: var(--text);
    color: white;
}

.dual-panel--dark h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.dual-panel--dark h2 em { color: var(--primary); font-style: italic; }

.dual-panel--dark .dual-dot { background: var(--primary); }

.dual-panel--dark .dual-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
}

.dual-panel--dark .dual-item h4 { color: white; }
.dual-panel--dark .dual-item p { opacity: 0.5; }

.dual-panel-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.dual-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.dual-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.1rem 1.2rem;
    border-radius: 12px;
}

.dual-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 0.45rem;
    flex-shrink: 0;
}

.dual-item h4 { font-size: 0.88rem; font-weight: 500; margin-bottom: 0.15rem; }
.dual-item p { font-size: 0.78rem; line-height: 1.5; }

.cafe-section { padding: 6rem 0; }

.cafe-banner {
    background: var(--text);
    border-radius: 20px;
    padding: clamp(2.5rem, 5vw, 4rem);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cafe-banner h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.cafe-banner h2 em { color: var(--primary); }

.cafe-banner-desc {
    font-size: 0.92rem;
    opacity: 0.5;
    line-height: 1.7;
    margin-top: 1rem;
}

.cafe-list { display: flex; flex-direction: column; gap: 1rem; }

.cafe-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.1rem 1.2rem;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
}

.cafe-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 0.45rem;
    flex-shrink: 0;
}

.cafe-item h4 { font-size: 0.88rem; font-weight: 500; margin-bottom: 0.15rem; }
.cafe-item p { font-size: 0.78rem; opacity: 0.5; line-height: 1.5; }

.nearby-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
}

.nearby-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.nearby-left h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.nearby-left h2 em { color: var(--primary); font-style: italic; }

.nearby-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.nearby-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.nearby-bullet {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.nearby-bullet-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nearby-map-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

.nearby-map-bg {
    background: #f8f9fa;
}

.nearby-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.nearby-popup {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    padding: 0.75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    white-space: nowrap;
    border: 1px solid var(--border);
}

.nearby-popup-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.nearby-popup-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.nearby-popup-meta {
    font-size: 0.72rem;
    color: var(--primary);
    margin-top: 0.1rem;
    font-weight: 500;
}

.nearby-cta-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.nearby-cta-inner {
    background: var(--text);
    border-radius: 24px;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.nearby-cta-pin {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.nearby-cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: white;
}

.nearby-cta-inner h2 em { color: var(--primary); font-style: italic; }

.nearby-cta-inner p {
    font-size: 0.95rem;
    opacity: 0.55;
    max-width: 460px;
    line-height: 1.7;
}

.nearby-cta-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.business-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
}

.business-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.business-left h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.business-left h2 em { color: var(--primary); }

.business-left > p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 440px;
}

.business-bottom {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: #F7F6F3;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.biz-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.biz-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
}

.biz-tab:hover { background: #F5F3F0; color: var(--text); }

.biz-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.biz-tab-desc {
    font-size: 0.82rem;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
    max-width: 480px;
    min-height: 2.4em;
}

.admin-carousel-viewport {
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    max-width: 560px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.admin-carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-slide {
    flex: 0 0 100%;
}

.admin-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.2rem;
}

.contact-card h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.contact-card > p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1.5rem; }

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s;
}

.contact-row:hover { color: var(--primary); }

.contact-row-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #F3F3F0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-row-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.1rem;
}

.contact-row strong { font-size: 0.9rem; font-weight: 600; }

.faq-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
}

.faq-header h2 em {
    font-style: italic;
    color: var(--primary);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.faq-q:hover { color: var(--primary); }

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-light);
    transition: transform 0.25s ease;
}

.faq-q[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 0 0 1.25rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
}

.faq-q[aria-expanded="true"] + .faq-a {
    display: block;
}

.faq-contact {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
}

.faq-contact a {
    color: var(--primary);
    text-decoration: underline;
}

.why-us-section {
    padding: 6rem 0;
    background: #faf9ff;
    border-top: 1px solid var(--border);
}

.why-us-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.why-us-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-top: 0.75rem;
}

.why-us-title em {
    font-style: italic;
    color: var(--primary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.why-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.why-card:hover {
    box-shadow: 0 8px 28px rgba(124,58,237,0.09);
    transform: translateY(-2px);
    border-color: #c4b5fd;
}

.why-card--highlight {
    border-color: var(--primary);
    background: linear-gradient(145deg, #faf8ff, #f3f0ff);
}

.why-card--highlight:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(124,58,237,0.16);
}

.why-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f3f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.why-card--highlight .why-card-icon {
    background: var(--primary);
    color: white;
}

.why-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
}

.why-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    padding: 3rem 0 2rem;
    text-align: left;
    border-top: 1px solid var(--border);
}

.footer-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.footer-sub { font-size: 0.95rem; color: var(--text-light); margin-bottom: 2.5rem; }

.dl-row { display: flex; gap: 0.8rem; justify-content: center; margin-bottom: 5rem; }

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dl-primary { background: var(--primary); color: white; }
.dl-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109,40,217,0.2);
}

.dl-light { background: white; color: var(--text); border: 1px solid var(--border); }
.dl-light:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
}

.footer-brand { 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 0.6rem; 
}
.footer-logo-icon { 
    height: 26px; 
    width: auto; 
    filter: grayscale(100%); 
    opacity: 0.5; 
    transition: all 0.3s ease; 
}
.footer-copy { 
    font-size: 0.85rem; 
    color: var(--text-light); 
    font-weight: 500;
}

.footer-brand:hover .footer-logo-icon { 
    filter: grayscale(0%); 
    opacity: 1; 
}

.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.modal-backdrop.open { display: flex; }

.modal-box {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;
}
.modal-header h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: var(--text);
    margin: 0;
}
.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    padding: 0.25rem;
    line-height: 1;
    font-size: 1.25rem;
    transition: color 0.15s;
}
.modal-close:hover { color: #111; }

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    font-size: 0.82rem;
    line-height: 1.75;
    color: var(--text-mid, #555);
}
.modal-body h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.25rem 0 0.4rem;
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 0.6rem; }
.modal-body ul { padding-left: 1.2rem; margin-bottom: 0.6rem; }
.modal-body ul li { margin-bottom: 0.25rem; }
.modal-body a { color: var(--primary); }

.legal { display: flex; gap: 1.5rem; align-items: center; }
.legal a { color: var(--text-light); text-decoration: none; font-size: 0.78rem; }
.legal a:hover { color: var(--text); }

.legal-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.78rem;
    font-family: 'DM Sans', sans-serif;
    padding: 0;
    transition: color 0.2s;
}
.legal-btn:hover { color: var(--text); }

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
    align-items: start;
}

.footer-col--nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.footer-nav-link {
    text-decoration: none;
    font-size: 0.88rem;
    color: var(--text-mid);
    font-weight: 500;
    transition: color 0.2s;
}
.footer-nav-link:hover { color: var(--primary); }

.footer-nav-link--cta {
    color: var(--primary);
    font-weight: 600;
}
.footer-nav-link--cta:hover { color: var(--primary-dark); }

.footer-col-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-brand-top {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    margin-bottom: 0.6rem;
}

.footer-brand-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 1.1rem;
}

.footer-store-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-store-row--horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--text);
    color: white;
    text-decoration: none;
    padding: 0.65rem 1.2rem;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    transition: opacity 0.2s, transform 0.2s;
}

.footer-store-btn:hover { opacity: 0.82; transform: translateY(-1px); }

.fsb-sub {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    opacity: 0.75;
    line-height: 1.2;
}

.fsb-main {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--primary); }

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    transition: color 0.2s;
}
.footer-social-btn:hover { color: var(--primary); }

.footer-lang-wrap {
    display: flex;
    gap: 0.4rem;
}

.footer-lang-btn {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-light);
    transition: border-color 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.footer-lang-btn.active,
.footer-lang-btn:not(:disabled):hover {
    border-color: var(--primary);
    color: var(--primary);
}
.footer-lang-btn:disabled { cursor: default; opacity: 0.7; }

.lang-flag {
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-col--nav,
    .footer-col--right { border-top: 1px solid var(--border); padding-top: 1.5rem; }
    .footer-store-row--horizontal { flex-direction: column; }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.06s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; }
.d4 { transition-delay: 0.24s; }


.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px); 
    background: #1A1A1A; 
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    opacity: 0;
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@keyframes up { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .campaign-grid { grid-template-columns: 1fr; }
    .cafe-banner { grid-template-columns: 1fr; }
    .dual-campaigns-grid { grid-template-columns: 1fr; }
    .nearby-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .business-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .campaigns-header { flex-direction: column; align-items: start; }
    .campaigns-header p { text-align: left; }

    .scroll-stage { height: auto; }
    .scroll-sticky-wrap { position: relative; height: auto; overflow: visible; }
    .scroll-phone-anchor { display: none; }

    .scroll-panel { position: static; transform: none; width: 100% !important; max-width: 100% !important; left: auto !important; right: auto !important; padding: 2rem 1.5rem; opacity: 1 !important; pointer-events: auto !important; }
    .scroll-panel-hero { padding-top: 7rem; }
    .scroll-panel-how  { border-top: 1px solid var(--border); }

    .hero-title { font-size: clamp(2rem, 5vw, 3rem); }
    .hero-store-btns { flex-wrap: wrap; }
    .how-step { opacity: 1 !important; }
}

@media (max-width: 600px) {
    .footer-bottom { flex-direction: column; gap: 1rem; }
    .dl-row { flex-direction: column; align-items: center; }
}

