/* ============================================
   Buzz com - Clean & Minimal Design
   ============================================ */

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

:root {
    --color-primary: #2563eb;
    --color-primary-light: #3b82f6;
    --color-primary-dark: #1d4ed8;
    --color-secondary: #f97316;
    --color-accent: #f59e0b;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    --color-border: #e5e7eb;
    --gradient-btn: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    --gradient-btn-blue: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-color: 0 4px 20px rgba(249,115,22,0.25);
    --shadow-blue: 0 4px 20px rgba(37,99,235,0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 9999px;
    --font-en: 'Poppins', sans-serif;
    --font-ja: 'Noto Sans JP', sans-serif;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-ja);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-only { display: none; }

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-logo-white { display: block; }
.nav-logo-dark { display: none; }

.navbar.scrolled .nav-logo-white { display: none; }
.navbar.scrolled .nav-logo-dark { display: block; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    position: fixed;
    top: 0;
    right: 20px;
    z-index: 1001;
    padding-top: 20px;
    transition: var(--transition);
}

.navbar.scrolled ~ .nav-menu {
    padding-top: 14px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.navbar.scrolled .nav-menu a {
    color: var(--color-text-light);
}

.nav-menu a:hover {
    color: var(--color-secondary);
}

.nav-cta {
    background: var(--gradient-btn) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: var(--transition);
}

.navbar.scrolled .nav-cta {
    background: var(--gradient-btn) !important;
    color: white !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-color);
}

.nav-overlay {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-text);
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero-bg.jpg') center center / cover no-repeat;
    overflow: hidden;
    padding: 120px 20px 140px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.60) 100%);
    z-index: 1;
}

.hero-bg { display: none; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge { display: none; }

.hero-label {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 4px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(32px, 7vw, 52px);
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title-accent {
    font-style: italic;
}

.hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.8;
    letter-spacing: 1px;
    font-weight: 300;
}

/* --- Reassurance Pills --- */
.hero-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.reassurance-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 300;
    padding: 0;
    letter-spacing: 0.5px;
}

.reassurance-pill svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats { display: none; }

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249,115,22,0.35);
}

.btn-blue {
    background: var(--gradient-btn-blue);
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,99,235,0.3);
}

.btn-white {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-white:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-line {
    background: #06C755;
    color: white;
    border: none;
}
.btn-line:hover {
    background: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(6,199,85,0.3);
}

.btn-outline-color {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-border);
}

.btn-outline-color:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 44px;
    font-size: 15px;
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    padding: 12px 28px;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(131,58,180,0.25);
}

/* ========== Section Common ========== */
.section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.section-title::after { display: none; }

.section-sub {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* ========== Mid CTA Banner ========== */
.mid-cta {
    background: var(--color-bg-alt);
    padding: 32px 0;
    text-align: center;
}

.mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mid-cta-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-light);
}

.mid-cta .btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: var(--shadow-color);
    padding: 10px 24px;
    font-size: 13px;
}

.mid-cta .btn-primary:hover {
    transform: translateY(-2px);
}

/* ========== About ========== */
.about {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.about-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    border: none;
    border-left: none;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-icon {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.about-card:nth-child(1) .about-icon { color: var(--color-primary); }
.about-card:nth-child(2) .about-icon { color: var(--color-secondary); }
.about-card:nth-child(3) .about-icon { color: #10b981; }

.about-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.about-card p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.9;
    font-weight: 400;
}

.about-message {
    max-width: 800px;
    margin: 0 auto;
}

.about-photo {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* ========== Event ========== */
.event {
    background: var(--color-bg-alt);
}

.event-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-top: none;
}

.event-label {
    background: var(--color-text);
    color: white;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
    padding: 10px;
}

.event-body {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.event-date-area { min-width: 180px; }

.event-date-box {
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-year {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.event-coming {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.event-note {
    font-size: 12px;
    color: var(--color-text-muted);
}

.event-info { flex: 1; }

.event-info-row {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    align-items: baseline;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    min-width: 60px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
}

.info-value small {
    color: var(--color-text-muted);
    font-size: 12px;
}

.event-info .btn {
    margin-top: 28px;
    width: 100%;
}

/* ========== Flow ========== */
.flow {
    background: var(--color-bg);
}

.flow-steps-3 {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.flow-step-3 {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 4px 0;
}

.flow-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-text);
    color: white;
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-step-3:nth-child(1) .flow-step-num { background: var(--color-secondary); }
.flow-step-3:nth-child(3) .flow-step-num { background: var(--color-primary); }
.flow-step-3:nth-child(5) .flow-step-num { background: #10b981; }

.flow-step-body {
    padding-top: 4px;
}

.flow-step-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.flow-step-body p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.8;
    font-weight: 400;
}

.flow-step-line {
    width: 2px;
    height: 32px;
    background: var(--color-border);
    margin-left: 23px;
}

/* ========== Past Events (Instagram Embed) ========== */
.past-events {
    background: var(--color-bg-alt);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.insta-embed-item { min-width: 0; }

.insta-embed-item iframe {
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm) !important;
}

.insta-embed-item .instagram-media {
    margin: 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm) !important;
}

.insta-more { text-align: center; }

/* ========== Voice (unused but kept) ========== */
.voice { background: var(--color-bg); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: var(--transition); }
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.voice-emoji { font-size: 40px; margin-bottom: 16px; }
.voice-text { font-size: 14px; line-height: 2; color: var(--color-text); margin-bottom: 20px; }
.voice-author { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--color-text-muted); }
.voice-tag { background: var(--color-bg-alt); color: var(--color-text-light); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-full); }

/* ========== FAQ ========== */
.faq {
    background: var(--color-bg);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--color-text-muted);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-text-light);
}

.faq-icon {
    font-size: 16px;
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 200px; }

.faq-answer p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 2;
    padding: 0 24px 18px;
    font-weight: 400;
}

/* ========== Contact ========== */
.contact {
    background: var(--color-bg-alt);
    padding: 96px 0;
}

.contact-inner {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group label .required {
    color: var(--color-secondary);
    font-size: 11px;
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-ja);
    font-size: 14px;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--color-text);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn {
    align-self: center;
    min-width: 240px;
}

.contact-note {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* ========== Entry ========== */
.entry {
    position: relative;
    text-align: center;
    padding: 96px 0;
    overflow: hidden;
}

.entry-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('images/cta-bg.png') center center / cover no-repeat;
}

.entry-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.60) 100%);
}

.entry-inner {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: 0 auto;
}

.entry-title {
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.5;
}

.entry-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    line-height: 1.8;
    font-weight: 300;
}

.entry .btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}

.entry .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249,115,22,0.4);
}

.entry-note {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
}

.entry-or {
    font-family: var(--font-en);
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin: 24px 0;
}

.entry-sns-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-weight: 300;
}

.entry .btn-instagram {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 13px;
}

/* ========== Fixed Mobile CTA ========== */
.fixed-cta { display: none; }

/* ========== Footer ========== */
.footer {
    background: var(--color-text);
    padding: 36px 0 20px;
    color: rgba(255,255,255,0.5);
    position: relative;
}

.footer::before { display: none; }

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-logo {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-brand p {
    font-size: 11px;
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    transition: var(--transition);
}

.footer-links a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-en);
    font-size: 11px;
}

/* ========== Fade-in ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .sp-only { display: inline; }
    .nav-toggle { display: flex; }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        z-index: 1001;
        padding: 80px 32px 40px;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        transition: right 0.35s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar.scrolled ~ .nav-menu {
        padding-top: 80px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 16px;
    }

    .nav-menu a {
        font-size: 15px;
        color: var(--color-text) !important;
        font-weight: 600;
        display: block;
        padding: 16px 0;
    }

    .nav-cta {
        background: var(--gradient-btn) !important;
        color: white !important;
        text-align: center !important;
        width: 100%;
        display: block !important;
        padding: 14px 20px !important;
        border-radius: var(--radius-sm) !important;
    }

    /* Overlay behind menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Toggle button stays above overlay */
    .nav-toggle {
        z-index: 1002;
    }

    /* X animation for toggle when active */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--color-text);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background: var(--color-text);
    }

    .hero { padding: 100px 20px 120px; }

    .hero-reassurance { gap: 12px; }

    .section { padding: 64px 0; }
    .section-header { margin-bottom: 36px; }

    .about-grid { grid-template-columns: 1fr; gap: 12px; }
    .about-card { padding: 28px 20px; }

    .event-body { flex-direction: column; gap: 24px; padding: 24px; }
    .event-date-area { min-width: auto; }

    .flow-step-3 { gap: 16px; }
    .flow-step-num { width: 40px; height: 40px; font-size: 18px; }
    .flow-step-line { margin-left: 19px; height: 24px; }

    .insta-grid { grid-template-columns: 1fr; gap: 16px; }
    .voice-grid { grid-template-columns: 1fr; gap: 16px; }

    .mid-cta { padding: 24px 0; }
    .mid-cta-inner { flex-direction: column; gap: 12px; }
    .mid-cta-text { font-size: 14px; }

    .contact { padding: 64px 0; }

    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }

    .fixed-cta {
        display: block;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 998;
        background: white;
        padding: 12px 16px;
        box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .fixed-cta.visible { transform: translateY(0); }

    .fixed-cta .btn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }

    body.has-fixed-cta { padding-bottom: 72px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
}
