/* ━━━ BARK — Antigravity-inspired styles ━━━ */
:root {
    --green: #00E676;
    --green2: #69F0AE;
    --green-dim: #00C853;
    --green-bg: rgba(0, 230, 118, 0.07);
    --bg: #f5f5f7;
    --bg2: #ffffff;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.06);
    --text: #1a1a2e;
    --text2: #6b7280;
    --text3: #9ca3af;
    --dark: #111827;
    --radius: 24px;
    --max-w: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
}

/* ━━━ PAWS CANVAS ━━━ */
#pawCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ━━━ NAV ━━━ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    background: rgba(245, 245, 247, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: var(--text2);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.btn-nav {
    background: var(--dark);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 22px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text);
}

/* ━━━ SECTION UTILITIES ━━━ */
.section {
    padding: 120px 24px;
    position: relative;
    z-index: 1;
}

.section-light {
    background: var(--bg2);
}

.label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green-dim);
    text-align: center;
    margin-bottom: 12px;
}

.title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.title-left {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.05rem;
    color: var(--text2);
    text-align: center;
    max-width: 580px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.desc {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--green), var(--green2), #00BFA5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.muted-center {
    text-align: center;
    color: var(--text3);
    font-size: 0.8rem;
    margin-top: 24px;
}

/* ━━━ HERO ━━━ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 120px 24px 60px;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08), transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 550px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-bg);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-dim);
    margin-bottom: 28px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--card-border);
}

.btn-ghost:hover {
    border-color: var(--text2);
    background: rgba(0, 0, 0, 0.02);
}

.paw-icon {
    font-size: 1.1rem;
}

.hero-visual {
    position: relative;
}

/* ━━━ PHONE MOCKUP ━━━ */
.hero-phone {
    width: 300px;
    height: 610px;
    background: var(--dark);
    border-radius: 44px;
    border: 4px solid rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.hero-phone.small-phone {
    width: 260px;
    height: 530px;
    margin: 0 auto;
}

.phone-notch {
    width: 110px;
    height: 28px;
    background: #000;
    border-radius: 0 0 18px 18px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 42px 10px 10px;
    overflow: hidden;
}

/* Map mockup */
.mock-map-hero {
    width: 100%;
    flex: 1;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c2340, #0a1628, #0d1f35);
}

.glow-pin {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--green), var(--green-dim));
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.glow-pin:nth-child(2) {
    animation-delay: 0.5s;
}

.glow-pin:nth-child(3) {
    animation-delay: 1s;
}

.glow-pin:nth-child(4) {
    animation-delay: 1.5s;
}

.map-card {
    position: absolute;
    bottom: 12px;
    left: 8px;
    right: 8px;
    background: rgba(17, 24, 39, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
}

.map-card strong {
    font-size: 0.75rem;
}

.map-card-sub {
    font-size: 0.58rem;
    color: #8b95a5;
    display: block;
    margin-top: 2px;
}

.map-card-live {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--green);
}

.live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.5s infinite;
}

.bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-top: 5px;
}

.bar-fill {
    height: 100%;
    background: var(--green);
    border-radius: 2px;
    transition: width 1s;
}

.bar-fill.moderate {
    background: #fbbf24;
}

/* Discover mockup */
.mock-discover {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    gap: 8px;
    background: #111827;
    border-radius: 16px;
    overflow: hidden;
}

.profile-card {
    width: 100%;
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #1a2332;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-photo {
    width: 100%;
    height: 62%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #2d4a3e, #1a3a30);
}

.profile-info {
    padding: 10px 12px;
    color: #fff;
}

.profile-name {
    font-size: 0.95rem;
    font-weight: 800;
}

.profile-breed {
    font-size: 0.6rem;
    color: #8b95a5;
    margin-top: 2px;
}

.profile-tags {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.profile-tags span {
    font-size: 0.5rem;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 20px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--green);
}

.swipe-btns {
    display: flex;
    gap: 14px;
}

.swipe-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.swipe-btn.no {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

.swipe-btn.yes {
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.25);
    color: var(--green);
}

.swipe-btn.yes:hover {
    transform: scale(1.15);
    background: rgba(0, 230, 118, 0.2);
}

.swipe-btn.yes.liked {
    animation: pawBounce 0.6s ease;
    background: var(--green);
    color: #000;
}

@keyframes pawBounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.4) rotate(-10deg);
    }

    50% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(1.15) rotate(5deg);
    }

    100% {
        transform: scale(1);
    }
}

/* Chat mockup */
.mock-chat {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #111827;
    display: flex;
    flex-direction: column;
    padding: 10px;
    color: #fff;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 6px;
}

.chat-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.chat-header strong {
    font-size: 0.75rem;
}

.chat-msgs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: flex-end;
}

.bubble {
    max-width: 78%;
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 0.58rem;
    line-height: 1.4;
}

.bubble.them {
    background: rgba(255, 255, 255, 0.06);
    color: #d1d5db;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.bubble.me {
    background: var(--green-dim);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-input {
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 0.58rem;
    color: #4a5568;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ━━━ STATS ━━━ */
.stats-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 40px 24px 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    background: linear-gradient(135deg, var(--green-dim), var(--green2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-lbl {
    font-size: 0.78rem;
    color: var(--text2);
    margin-top: 2px;
}

/* ━━━ CARDS ━━━ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 16px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.4s;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.card:hover {
    border-color: rgba(0, 230, 118, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.card p {
    font-size: 0.88rem;
    color: var(--text2);
    line-height: 1.6;
}

.tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green-dim);
    background: var(--green-bg);
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 12px;
}

/* ━━━ SPLIT ━━━ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split.reverse {
    direction: rtl;
}

.split.reverse>* {
    direction: ltr;
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text2);
    padding: 7px 0;
    line-height: 1.5;
}

.check-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ━━━ PARKS ━━━ */
.parks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 14px;
}

.park-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 22px;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.park-card:hover {
    border-color: rgba(0, 230, 118, 0.15);
    transform: translateY(-2px);
}

.park-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.92rem;
}

.park-stars {
    font-size: 0.75rem;
    color: #eab308;
    flex-shrink: 0;
}

.park-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.ptag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.03);
    color: var(--text2);
}

.ptag.green {
    background: var(--green-bg);
    color: var(--green-dim);
}

.park-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--green-dim);
}

/* ━━━ SERVICES ━━━ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.svc-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.svc-card:hover {
    border-color: rgba(0, 230, 118, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.svc-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.svc-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.svc-card p {
    font-size: 0.82rem;
    color: var(--text2);
    line-height: 1.5;
}

/* ━━━ SAFETY ━━━ */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 16px;
}

/* ━━━ STEPS ━━━ */
.steps {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green-bg);
    border: 2px solid rgba(0, 230, 118, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--green-dim);
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.step p {
    font-size: 0.88rem;
    color: var(--text2);
    line-height: 1.6;
}

/* ━━━ FAQ ━━━ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px 0;
    cursor: pointer;
}

.faq-q {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q span {
    font-size: 0.8rem;
    color: var(--text3);
    transition: transform 0.3s;
}

.faq-a {
    font-size: 0.9rem;
    color: var(--text2);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    padding-top: 0;
}

.faq.open .faq-a {
    max-height: 300px;
    padding-top: 12px;
}

.faq.open .faq-q span {
    transform: rotate(180deg);
}

/* ━━━ CTA ━━━ */
.cta-section {
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 230, 118, 0.05), transparent 70%);
    pointer-events: none;
}

.waitlist-form {
    display: flex;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist-form input {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.waitlist-form input:focus {
    border-color: var(--green);
}

.waitlist-form input::placeholder {
    color: var(--text3);
}

.waitlist-form button {
    padding: 15px 28px;
    border-radius: 50px;
    border: none;
    background: var(--dark);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.waitlist-form button:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.form-note {
    font-size: 0.72rem;
    color: var(--text3);
    margin-top: 12px;
    text-align: center;
}

/* ━━━ FOOTER ━━━ */
footer {
    padding: 60px 24px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background: var(--bg2);
    position: relative;
    z-index: 1;
}

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

.footer-brand p {
    font-size: 0.82rem;
    color: var(--text2);
    line-height: 1.6;
    max-width: 280px;
    margin-top: 8px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text3);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text2);
    padding: 4px 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text3);
}

/* ━━━ ANIMATIONS ━━━ */
.anim-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ━━━ RESPONSIVE ━━━ */
@media (max-width: 960px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-phone {
        width: 240px;
        height: 490px;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split.reverse {
        direction: ltr;
    }

    .split-text {
        text-align: center;
    }

    .checklist {
        display: inline-block;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 12px 16px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #f5f5f7;
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 20px 40px;
        gap: 14px;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        z-index: 99;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: block;
        z-index: 101;
    }

    .section {
        padding: 80px 16px;
    }

    .stats-strip {
        gap: 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 16px 40px;
        gap: 30px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-phone {
        width: 220px;
        height: 450px;
    }

    .hero-phone.small-phone {
        width: 220px;
        height: 450px;
    }

    .split {
        gap: 30px;
    }

    .title {
        font-size: 1.8rem;
    }

    .title-left {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
}

/* ━━━ EVENT SECTION ━━━ */
.event-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s;
}

.event-card:hover {
    border-color: rgba(0, 230, 118, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text2);
}

.event-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.event-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.event-cat {
    padding: 6px 14px;
    background: var(--green-bg);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--green-dim);
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-cat:hover {
    border-color: rgba(0, 230, 118, 0.4);
    background: rgba(0, 230, 118, 0.12);
}

.event-btn {
    margin-bottom: 16px;
    font-size: 1rem;
}

.event-note {
    font-size: 0.78rem;
    color: var(--text3);
    margin-top: 8px;
}

@media (max-width: 640px) {
    .event-card {
        padding: 28px 20px;
    }

    .event-categories {
        gap: 6px;
    }

    .event-cat {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}