/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll Animation Classes */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.scroll-fade-in-delay-1 {
    transition-delay: 0.15s;
}

.scroll-fade-in-delay-2 {
    transition-delay: 0.3s;
}

.scroll-fade-in-delay-3 {
    transition-delay: 0.45s;
}

/* Prevent animation on initial hero sections */
.hero,
.about-hero,
.host-page-hero,
.legal-hero,
.page-header,
.apps-hero {
    opacity: 1 !important;
    transform: none !important;
}

*:focus,
*:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

/* Remove highlights and outlines from all interactive elements */
a,
button,
.nav-link,
.btn,
.btn-contact,
.btn-primary,
.btn-secondary,
.faq-question,
.nav-toggle,
.footer-icon,
.footer-social-icon,
.social-link {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    text-decoration: none;
    transition: var(--transition);
}

a:focus,
a:active,
a:focus-visible,
button:focus,
button:active,
button:focus-visible,
.nav-link:focus,
.nav-link:active,
.nav-link:focus-visible,
.btn:focus,
.btn:active,
.btn:focus-visible,
.btn-contact:focus,
.btn-contact:active,
.btn-contact:focus-visible,
.faq-question:focus,
.faq-question:active,
.faq-question:focus-visible,
.nav-toggle:focus,
.nav-toggle:active,
.nav-toggle:focus-visible,
.nav-more-toggle:focus,
.nav-more-toggle:active,
.nav-more-toggle:focus-visible,
.footer-icon:focus,
.footer-icon:active,
.footer-icon:focus-visible,
.footer-social-icon:focus,
.footer-social-icon:active,
.footer-social-icon:focus-visible,
.footer-store-icon:focus,
.footer-store-icon:active,
.footer-store-icon:focus-visible,
.social-link:focus,
.social-link:active,
.social-link:focus-visible {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none !important;
}

/* Prevent text selection on buttons and interactive elements */
button,
.btn,
.btn-contact,
.nav-toggle {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

:root {
    --primary-color: #1e293b;
    --primary-dark: #0f172a;
    --accent-green: #8AE13C;
    --cream: #F5F0E8;
    --cream-dark: #E8E2D8;
    --secondary-color: #64748b;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --background: #ffffff;
    --background-light: #f8fafc;
    --border-color: #e2e8f0;
    --success: #10b981;
    --error: #ef4444;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    font-size: 16px;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header and Navigation - same bar and logo on every page */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    width: 100%;
    padding: 0;
}

.header.scrolled {
    top: 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: none;
    margin: 0;
}

.nav-brand {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    visibility: visible;
    min-width: 0;
}

.nav-brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand-link:hover {
    opacity: 0.85;
}

.nav-logo {
    display: block !important;
    height: 48px;
    min-height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: invert(1);
    visibility: visible;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    color: rgba(30, 41, 59, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.nav-link:hover {
    color: rgba(30, 41, 59, 1);
}

.nav-link.active {
    color: rgba(30, 41, 59, 1);
    position: relative;
}

.nav-link.active::after {
    content: '●';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 0.5rem;
    line-height: 1;
    display: block;
}

.nav-link--cta {
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 0.5rem 1rem;
}

.nav-link--cta:hover {
    background: rgba(30, 41, 59, 0.06);
}

/* Hide mobile-only items (About, Team) from desktop main bar; they're in More dropdown */
.nav-menu-item--mobile-only {
    display: none;
}

.btn-contact {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: rgba(30, 41, 59, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    cursor: pointer;
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: rgba(30, 41, 59, 1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: rgba(30, 41, 59, 0.9);
    transition: var(--transition);
}

/* More menu (hamburger: About, Team, Applications, Help) */
.nav-more-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-more-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-more-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(30, 41, 59, 0.9);
    transition: var(--transition);
}

.nav-more-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-more-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-more-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.nav-more-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    min-width: 180px;
    padding: 0.5rem 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1000;
}

.nav-more-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-more-link {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.15s, color 0.15s;
}

.nav-more-link:hover {
    background: rgba(30, 41, 59, 0.06);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 0;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #1a1a1a;
}

.hero-picture .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    image-rendering: auto;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.hero-image.loaded {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 45%, transparent 70%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}

.hero-content {
    max-width: 600px;
    margin: 0;
    padding: 2rem 0;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn.btn-hero-cta {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    padding: 0.75rem 2rem;
}

.btn.btn-hero-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 1);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Internal testing modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    background: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    padding-right: 2.5rem;
}

.modal-note {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.modal-input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    background: var(--background);
    box-sizing: border-box;
}

.modal-input::placeholder {
    color: var(--text-light);
}

.modal-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.modal-submit {
    margin-top: 0.25rem;
    width: 100%;
    border-radius: 4px;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Features Section - two columns: intro left, points right (green only here) */
.features {
    padding: 5rem 0;
    background: var(--background-light);
}

.features-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.features-intro {
    position: sticky;
    top: 120px;
}

.features-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.features-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.feature-card:hover {
    transform: none;
    box-shadow: none;
}

.features .feature-number {
    font-size: 4rem;
    font-weight: 600;
    color: var(--border-color);
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.features .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.features .feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
    margin: 0;
}

.feature-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Safety & Trust Section - minimal, cream background, two columns */
.safety-trust {
    padding: 5rem 0;
    background: var(--cream);
}

.safety-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.safety-intro {
    position: sticky;
    top: 120px;
}

.safety-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.safety-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.safety-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.safety-list {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.safety-trust .trust-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid var(--cream-dark);
}

.safety-trust .trust-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.trust-marker {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.35;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
    line-height: 1.35;
}

.trust-description {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.95rem;
    margin: 0;
}

/* Legacy trust-grid (if used elsewhere) */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.trust-item:hover {
    transform: none;
    box-shadow: none;
}

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

/* Become a Host Section - full-width two-column: content left, carowner.svg right */
.become-host {
    padding: 5rem 0;
    background: var(--cream);
    width: 100%;
    box-sizing: border-box;
}

.become-host-container {
    max-width: 100%;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.become-host-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.become-host-content {
    min-width: 0;
}

.become-host-title {
    text-align: left;
    margin-bottom: 1rem;
}

.become-host-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
}

.become-host-svg {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.host-intro-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 100%;
    margin: 0 0 2rem;
    text-align: left;
}

.become-host .host-cta-container {
    text-align: left;
    margin-top: 0;
}

.host-benefits {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.host-benefit-card {
    flex: 1;
    max-width: 300px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
    box-shadow: none;
}

.host-benefit-card:hover {
    transform: none;
    box-shadow: none;
}

.host-benefit-card:nth-child(1) .benefit-number,
.host-benefit-card:nth-child(2) .benefit-number,
.host-benefit-card:nth-child(3) .benefit-number {
    background: var(--primary-color);
    color: #ffffff;
}

.host-benefit-card .benefit-decoration {
    display: none;
}

.benefit-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.benefit-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: 0;
}

.benefit-content {
    position: relative;
    z-index: 1;
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.host-cta-container {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

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

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    text-align: center;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    text-align: left;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: nowrap;
    width: 100%;
}

.cta-left {
    flex: 0 1 auto;
    max-width: 420px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cta-image-wrap {
    flex: 0 0 auto;
    background: #ffffff;
}

.cta-image {
    display: block;
    max-width: 420px;
    height: auto;
}

.cta-qr-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.cta-qr-codes {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-qr-img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    flex-shrink: 0;
}

.cta-qr-desc {
    max-width: 280px;
    text-align: left;
}

.qr-block-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.qr-block-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-icon {
    flex-shrink: 0;
}

/* Page Header */
.page-header {
    background: #f5f5f5;
    padding: 4rem 0;
    text-align: center;
    margin-top: 70px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    opacity: 0.95;
}

/* Content Section */
    .content-section {
        padding: 4rem 0;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .content-section .container {
        width: 100%;
        box-sizing: border-box;
    }

/* About Hero */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    background-image: 
        radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(0, 0, 0, 0.1) 24px, rgba(0, 0, 0, 0.1) 25px),
        repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(0, 0, 0, 0.1) 24px, rgba(0, 0, 0, 0.1) 25px);
    background-size: 100% 100%, 25px 25px, 25px 25px;
    margin-top: 0;
    padding-top: 100px;
}

.about-hero .container {
    width: 100%;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    max-width: 700px;
}

.about-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

.content-wrapper {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-list,
.commitment-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li,
.commitment-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list li::before,
.commitment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Problems We're Fixing - dark section, three straight-edged white cards */
.problems-section {
    background: var(--primary-color);
    padding: 5rem 0;
    width: 100%;
    box-sizing: border-box;
}

.problems-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.problem-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 0;
    box-sizing: border-box;
    text-align: left;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.problem-card:last-child {
    border-right: none;
}

.problem-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.problem-card-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* Legacy problem-item/circle/text (kept for any other use) */
.problem-item {
    flex: 1 1 100%;
    max-width: 300px;
    min-width: 0;
    text-align: center;
    box-sizing: border-box;
}

.problem-circle {
    width: 140px;
    height: 140px;
    max-width: 100%;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 auto 1.5rem;
    background: white;
    text-align: center;
    padding: 1rem;
    line-height: 1.3;
    box-sizing: border-box;
}

.problem-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* How Ardena Is Different - cute two-column, no SVGs, cream background */
.differentiators-section {
    padding: 5rem 0;
    background: var(--cream);
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
}

.differentiators-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.differentiators-intro {
    position: sticky;
    top: 120px;
}

.differentiators-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.differentiators-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.differentiators-tagline {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.differentiators-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.differentiator-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--cream-dark);
    text-align: left;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.differentiator-item:last-child {
    border-bottom: none;
}

.differentiator-item:hover {
    transform: none;
    box-shadow: none;
}

.differentiator-marker {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.4;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.differentiator-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.differentiator-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Legacy grid (if used elsewhere) */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.differentiator-icon {
    width: 96px;
    height: 96px;
    max-width: 100%;
    margin-bottom: 1.5rem;
    box-sizing: border-box;
}

/* Our Story Section */
.story-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    background-image: 
        radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(0, 0, 0, 0.1) 24px, rgba(0, 0, 0, 0.1) 25px),
        repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(0, 0, 0, 0.1) 24px, rgba(0, 0, 0, 0.1) 25px);
    background-size: 100% 100%, 25px 25px, 25px 25px;
    padding: 4rem 0;
}

.story-content {
    max-width: 600px;
}

.story-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Help Section */
.help-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.help-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: start;
}

.help-text {
    text-align: left;
}

.help-text .section-title {
    margin-bottom: 1rem;
    text-align: left;
}

.help-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    text-align: left;
    margin: 0;
}

.help-form-box {
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.5rem;
    background: #fff;
}

.help-form-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-align: left;
}

.help-contact-form .form-group {
    margin-bottom: 1rem;
}

.help-contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.help-contact-form input[type="text"],
.help-contact-form input[type="email"],
.help-contact-form textarea {
    width: 100%;
    padding: 0.5rem 0.65rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    background: #fff;
    box-sizing: border-box;
}

.help-contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.help-contact-form .btn {
    margin-top: 0.25rem;
}

/* Team section – uniform cards, circular photos, clean grid */
.team-section {
    padding: 4rem 0;
    background: #fafafa;
}

.team-section .container--team {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.team-section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 2rem;
    letter-spacing: -0.02em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}

.team-card--horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    min-height: 320px;
    padding: 1.35rem 1.25rem 1.25rem;
    transition: box-shadow 0.2s ease;
    position: relative;
}

.team-card--horizontal:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-card-photo {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.75rem;
    background: #e8e8e8;
}

.team-card-photo .team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.team-card-photo--placeholder {
    background: linear-gradient(145deg, #d0d0d0 0%, #b0b0b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.team-card-photo--placeholder .team-card-placeholder-text {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
    padding: 0 0.5rem;
    text-align: center;
}

.team-card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    min-width: 0;
}

.team-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.3;
}

.team-card-role {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0 0 0.35rem;
    line-height: 1.4;
}

.team-card-bio {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0 0 0.75rem;
    flex: 1;
}

.team-card-socials {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.team-card-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: color 0.2s;
}

.team-card-social:hover {
    color: var(--primary-color);
}

.team-card-social svg {
    width: 18px;
    height: 18px;
}

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

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .team-card--horizontal {
        min-height: 300px;
    }
    .team-hero {
        min-height: 100vh;
        padding: 4rem 1rem 3rem;
    }
    .team-hero-title {
        font-size: 2rem;
    }
}

.join-team {
    padding: 4rem 0;
    background: #eaeaea;
}

.join-team-card {
    max-width: 880px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--cream);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.join-team-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at 100% 50%, rgba(30, 41, 59, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.join-team-content {
    flex: 1;
    min-width: 0;
}

.join-team-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    letter-spacing: -0.03em;
}

.join-team-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.join-team-cta {
    flex-shrink: 0;
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: white;
    background: var(--primary-color);
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.join-team-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .join-team-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .join-team-cta {
        align-self: center;
    }
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-detail-item .contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.contact-detail-item .contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.contact-detail-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-detail-content p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-detail-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}


/* Host Page */
.host-page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    background-image: 
        radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(0, 0, 0, 0.1) 24px, rgba(0, 0, 0, 0.1) 25px),
        repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(0, 0, 0, 0.1) 24px, rgba(0, 0, 0, 0.1) 25px);
    background-size: 100% 100%, 25px 25px, 25px 25px;
    margin-top: 0;
    padding-top: 100px;
}

.host-page-hero .container {
    width: 100%;
}

.host-page-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    max-width: 800px;
}

.host-page-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
}

/* How to Host Your Car - cute, minimal, cream section, two columns */
.host-steps-section {
    padding: 5rem 0;
    background: var(--cream);
    width: 100%;
    box-sizing: border-box;
}

.host-steps-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.host-steps-intro {
    position: sticky;
    top: 120px;
}

.host-steps-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.host-steps-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.host-steps-tagline {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.host-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.host-step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--cream-dark);
    text-align: left;
}

.host-step-item:last-child {
    border-bottom: none;
}

.host-step-marker {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.4;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.host-step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.host-step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.host-content-section {
    padding: 4rem 0;
    background: white;
}

.host-content-wrapper {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.host-section-block {
    margin-bottom: 5rem;
}

.host-section-block h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.host-section-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
}

.host-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.host-step-card {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.host-step-card:hover {
    transform: none;
    box-shadow: none;
}

.host-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: none;
}

.host-step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.host-step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Finances & Earnings / Pricing - black section, 4 straight-edged white cards, not connected */
.finances-pricing-section {
    background: #000000;
    padding: 5rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.finances-pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.finances-pricing-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.finances-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.finances-pricing-section .finance-info-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 0;
    text-align: left;
    border: none;
    box-shadow: none;
}

.finances-pricing-section .finance-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.finances-pricing-section .finance-info-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.finance-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.finance-info-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.finance-info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.host-earnings-note {
    background: transparent;
    padding: 2rem 0;
}

.host-earnings-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 3.5rem 0;
}

.host-earnings-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
}

.host-earnings-item {
    flex: 1;
    min-width: 160px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.host-earnings-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: block;
}

.host-earnings-point {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Support section (host) - full-width left to right, two-column: content left, SVG right */
.bookings-section {
    padding: 5rem 0;
    background: #fafafa;
    width: 100%;
    box-sizing: border-box;
}

.bookings-section .container {
    max-width: 100%;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.bookings-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.bookings-content {
    min-width: 0;
}

.bookings-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
}

.bookings-svg {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.bookings-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.bookings-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.booking-item {
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 0;
    background: transparent;
    border-radius: 0;
}

.booking-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.booking-item p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.bookings-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.booking-feature-item {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
}

.booking-feature-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.booking-feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Tips for Successful Hosting - white section, 4 sharp black cards */
.host-tips-section {
    background: #fafafa;
    padding: 5rem 0;
    width: 100%;
    box-sizing: border-box;
}

.host-tips-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.host-tips-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.host-tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.host-tip-card {
    background: #000000;
    padding: 2.5rem 2rem;
    border-radius: 0;
    text-align: left;
    border: none;
    box-shadow: none;
}

.host-tip-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.host-tip-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.host-download-section {
    background: #f5f5f5;
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: left;
    margin-top: 3rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.host-download-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.host-download-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 2rem 0;
    max-width: 560px;
}

.host-qr-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.host-qr-img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    flex-shrink: 0;
}

.host-qr-desc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.host-qr-copy {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.host-contact-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.host-contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.host-contact-text a:hover {
    text-decoration: underline;
}

.host-download-buttons {
    margin-bottom: 2rem;
}

.host-contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.host-contact-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.host-contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.host-contact-info a:hover {
    text-decoration: underline;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-card {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-detail-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-detail-card > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-content p {
    color: var(--text-secondary);
}

.contact-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-media {
    margin-top: 2rem;
}

.social-media h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--background-light);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.15);
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid var(--success);
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid var(--error);
    display: block;
}

/* Legal Pages */
/* Legal Hero */
.legal-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    background-image: 
        radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(0, 0, 0, 0.1) 24px, rgba(0, 0, 0, 0.1) 25px),
        repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(0, 0, 0, 0.1) 24px, rgba(0, 0, 0, 0.1) 25px);
    background-size: 100% 100%, 25px 25px, 25px 25px;
    margin-top: 0;
    padding-top: 70px;
    text-align: center;
}

.legal-hero .container {
    width: 100%;
    text-align: center;
}

.legal-hero-box {
    display: inline-block;
    border: 3px solid var(--text-primary);
    padding: 2.5rem 3.5rem;
    max-width: 90%;
    box-sizing: border-box;
}

.legal-hero .page-title {
    font-size: 3rem;
    font-weight: 400;
}

.legal-hero .legal-hero-box .page-subtitle {
    font-size: 1.25rem;
    max-width: 480px;
    margin: 0.75rem auto 0;
}

/* Team page hero – pure cream background, no SVG, no boxes/grid */
.team-hero {
    min-height: 100vh;
    padding: 5rem 1.5rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)), url('assets/team/teeam.jpg') center 30%/cover no-repeat;
}

.team-hero .container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.team-hero-content {
    text-align: left;
}

.team-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.team-hero-subtitle {
    font-size: 1.125rem;
    color: #fff;
    margin: 0.5rem 0 0;
    max-width: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Reset password page – no navbar/footer; cream background, card with form only */
.reset-password-page {
    min-height: 100vh;
    background: var(--cream);
}

.reset-password-section {
    min-height: 100vh;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    background-image: none;
}

.reset-password-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.reset-password-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.reset-password-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.35rem 0;
    letter-spacing: -0.02em;
}

.reset-password-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
    line-height: 1.45;
}

.reset-password-form .form-group {
    margin-bottom: 1rem;
}

.reset-password-form label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.reset-password-form input[type="password"] {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.reset-password-form input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.reset-password-form input::placeholder {
    color: var(--text-light);
}

.reset-form-message {
    font-size: 0.9rem;
    padding: 0.6rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.reset-form-message--error {
    background: #fee2e2;
    color: #991b1b;
}

.reset-form-message--success {
    background: #d1fae5;
    color: #065f46;
}

.reset-password-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    margin-top: 0.25rem;
    border-radius: 6px;
}

/* Help page hero – help.jpg background */
.help-hero {
    background: #0f172a;
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.5) 100%),
                      url('assets/help.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 6rem;
    text-align: left;
}

.help-hero .container,
.help-hero-container {
    width: 100%;
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: left;
    display: block;
}

.help-hero-content {
    display: block;
    width: 100%;
}

.help-hero .page-title {
    color: #fff;
    margin: 0 0 0.35rem 0;
    text-align: left;
}

.help-hero .page-subtitle {
    color: #fff;
    margin: 0;
    max-width: none;
    white-space: nowrap;
    text-align: left;
}

.legal-content {
    max-width: 100%;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-section ol.steps-list {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-section ol.steps-list li {
    margin-bottom: 0.75rem;
}

/* Help page: toggle, panels, cards, socials */
.help-toggle-section {
    padding: 2rem 0 2rem;
    background: #ffffff;
}

.help-toggle-section .container {
    text-align: center;
}

.help-toggle {
    display: inline-flex;
    background: #f0f0f0;
    border-radius: 0;
    padding: 4px;
    gap: 0;
    border: 1px solid #e0e0e0;
}

.help-toggle-btn {
    padding: 0.6rem 1.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.help-toggle-btn:hover {
    color: var(--text-primary);
}

.help-toggle-btn.is-active {
    background: #ffffff;
    color: var(--text-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.help-panels {
    background: #fafafa;
}

.help-panel {
    display: none;
    padding: 0 0 3rem;
}

.help-panel.is-active {
    display: block;
}

.help-content-section {
    padding: 2rem 0 0;
}

.help-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 720px;
    margin: 0 auto;
}

.help-card {
    background: #ffffff;
    padding: 1.5rem 1.75rem;
    border-radius: 0;
    border: 1px solid #ebebeb;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.help-card:hover {
    border-color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.help-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.help-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 0.5rem;
}

.help-card p:last-of-type {
    margin-bottom: 0;
}

.help-card ul {
    margin: 0.5rem 0 0 1.25rem;
    padding: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.help-card ul li {
    margin-bottom: 0.35rem;
}

.help-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.help-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.help-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1rem 0 0.4rem;
    line-height: 1.3;
}

.help-card h3:first-of-type {
    margin-top: 0.75rem;
}

/* Policy/legal pages: same card layout as help */
.policy-page-content {
    background: #fafafa;
    padding: 2rem 0 3rem;
}

.policy-page-content .help-content-section {
    padding-top: 0;
}

.policy-updated,
.help-card--muted .policy-updated {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 0;
}

/* Help socials - same sharp-edged card style as Finances & Earnings */
.help-socials-section {
    background: #000000;
    padding: 5rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.help-socials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.help-socials-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.help-socials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.help-social-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 0;
    text-align: center;
    border: none;
    box-shadow: none;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.2s ease, background 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.help-social-card:hover {
    transform: translateY(-2px);
    background: #f8f8f8;
}

.help-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--text-primary);
}

.help-social-icon svg {
    width: 28px;
    height: 28px;
}

.help-social-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Help page newsletter section */
.help-newsletter-section {
    background: #fafafa;
    padding: 4rem 0;
    border-top: 1px solid #ebebeb;
}

.help-newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 0.5rem;
}

.help-newsletter-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.help-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    max-width: 440px;
    margin: 0 auto;
}

.help-newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background: #fff;
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.help-newsletter-input::placeholder {
    color: #999;
}

.help-newsletter-input:hover {
    border-color: #ccc;
}

.help-newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
}

.help-newsletter-submit {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
    white-space: nowrap;
}

.help-newsletter-message {
    text-align: center;
    font-size: 0.95rem;
    margin: 1rem auto 0;
    max-width: 440px;
}

.help-newsletter-message.success {
    color: #0d8050;
}

.help-newsletter-message.error {
    color: #c00;
}

.help-newsletter-unsubscribe-link-wrap {
    margin: 0.75rem auto 0;
    max-width: 440px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
}

.help-newsletter-unsubscribe-link {
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
}

.help-newsletter-unsubscribe-link:hover {
    color: var(--primary-hover);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.delete-section {
    padding: 3rem 0;
}

.delete-section-right {
    background: #fafafa;
}

.delete-section-right .container.container--wide {
    max-width: 960px;
}

.delete-right-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: start;
}

.delete-right-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.delete-right-text p,
.delete-right-text li {
    font-size: 1rem;
    line-height: 1.7;
}

.delete-right-text ul {
    margin: 1rem 0;
}

.delete-right-text ul li {
    margin-bottom: 0.5rem;
}

/* Right section image block – tilted “card” effect */
.delete-right-image-block {
    position: relative;
    max-width: 420px;
}

.delete-right-shape {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 122, 255, 0.12);
    border-radius: 12px;
    transform: translate(-12px, 12px);
    z-index: 0;
}

.delete-right-image {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
}

.delete-right-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .delete-right-layout {
        grid-template-columns: 1fr;
    }
    .delete-right-image-block {
        max-width: 100%;
    }
    .delete-right-shape {
        transform: translate(-8px, 8px);
    }
}

.delete-section-app {
    background: #f0f0f0;
}

.delete-section-app .container--wide {
    max-width: 960px;
}

.delete-app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: start;
}

.delete-app-image-block {
    position: relative;
    max-width: 380px;
}

/* Protruding shape: blue block behind the image, extends out for layered effect */
.delete-app-shape {
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: rgba(0, 122, 255, 0.12);
    border-radius: 16px;
    transform: translate(20px, 20px);
    z-index: 0;
}

.delete-app-illustration {
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.delete-illustration-img {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 12px;
}

.delete-app-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.delete-app-text p,
.delete-app-text li {
    font-size: 1rem;
    line-height: 1.7;
}

.delete-app-text .steps-list {
    margin: 1rem 0;
}

.delete-app-text .steps-list li {
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .delete-app-layout {
        grid-template-columns: 1fr;
    }
    .delete-app-image-block {
        max-width: 100%;
    }
    .delete-app-shape {
        transform: translate(12px, 12px);
        min-height: 160px;
    }
}

.delete-section .container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.delete-section-app .container.container--wide {
    max-width: 960px;
}

.delete-section .legal-section {
    margin-bottom: 0;
}

.delete-section .legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.delete-section .legal-section p,
.delete-section .legal-section li {
    font-size: 1rem;
    line-height: 1.7;
}

.delete-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: start;
    margin-top: 1.5rem;
}

.delete-form-text {
    text-align: left;
}

.delete-form-text h2 {
    margin-top: 0;
}

.delete-form-text p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.delete-form-text .form-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.delete-account-form {
    max-width: 100%;
    margin-top: 0;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.25rem;
    background: #fff;
}

@media (max-width: 768px) {
    .delete-form-layout {
        grid-template-columns: 1fr;
    }
}

.delete-account-form .form-group {
    margin-bottom: 0.75rem;
}

.delete-account-form .form-group:last-of-type {
    margin-bottom: 0.6rem;
}

.delete-account-form label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.delete-account-form input[type="text"],
.delete-account-form input[type="email"],
.delete-account-form input[type="password"],
.delete-account-form textarea {
    width: 100%;
    padding: 0.4rem 0.6rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    background: #fff;
    box-sizing: border-box;
}

.delete-account-form textarea {
    resize: vertical;
    min-height: 52px;
}

.delete-account-form .form-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.delete-account-form .btn {
    margin-top: 0.25rem;
}

/* Footer - premium white card with rounded corners, inspired by modern footer design */
.footer {
    background: linear-gradient(180deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 0;
    margin-top: 0;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px 3rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.25rem;
}

.footer-logo {
    height: 128px;
    width: auto;
    object-fit: contain;
    filter: invert(1);
}

.footer-tagline {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    max-width: 400px;
}

.footer-divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 2rem 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 3rem;
    align-items: start;
}

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

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-primary);
}

.footer-contact li {
    color: #555;
    font-size: 0.95rem;
}

.footer-contact-icon {
    display: inline-block;
    margin-right: 0.5rem;
    opacity: 0.7;
}

.footer-contact-icon svg {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #555;
    transition: color 0.2s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.footer-social-icon:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-store-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: color 0.2s, opacity 0.2s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.footer-store-icon:hover {
    color: var(--text-primary);
    opacity: 0.9;
}

.footer-store-icon svg {
    width: 24px;
    height: 24px;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #999;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Apps Page Styles */
.apps-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fafafa;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 39px,
            rgba(0, 0, 0, 0.03) 39px,
            rgba(0, 0, 0, 0.03) 40px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 39px,
            rgba(0, 0, 0, 0.03) 39px,
            rgba(0, 0, 0, 0.03) 40px
        );
    background-size: 40px 40px;
    position: relative;
}

.apps-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, #fafafa 70%);
    pointer-events: none;
}

.apps-hero .container {
    position: relative;
    z-index: 1;
}

.apps-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.apps-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.client-section {
    background: white;
}

.host-section {
    background: #f5f5f5;
}

.app-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.app-content.reverse {
    flex-direction: row-reverse;
}

.app-info {
    flex: 1;
}

.app-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.app-badge.host-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.app-name {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.app-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.feature-check {
    color: #10b981;
    font-weight: 600;
}

.app-screenshots {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
}

.phone-mockup {
    width: 220px;
    height: 450px;
    background: #1a1a1a;
    border-radius: 2.5rem;
    padding: 0.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.phone-mockup.phone-secondary {
    transform: translateY(30px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 2rem;
    overflow: hidden;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.screenshot-placeholder span {
    color: #6366f1;
    font-size: 0.875rem;
    font-weight: 500;
}

.screenshot-placeholder.host-placeholder {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.screenshot-placeholder.host-placeholder span {
    color: #059669;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .header {
        top: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        max-width: 100vw;
    }

    .nav {
        padding: 0.75rem 1rem;
        border-radius: 0;
        flex-wrap: nowrap;
        gap: 0;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .nav-brand {
        order: 1;
        display: flex !important;
        flex-shrink: 0;
        margin-right: auto;
    }

    .nav-logo {
        height: 44px;
        min-height: 36px;
    }

    .btn-contact {
        order: 2;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Single hamburger on mobile: hide the "More" dropdown hamburger */
    .nav-more-wrap {
        display: none !important;
    }

    /* Mobile menu shows only Home, Host, About, Team; hide "Join internal app testing" */
    .nav-menu-item--desktop-only {
        display: none !important;
    }

    .nav-menu-item--mobile-only {
        display: list-item !important;
    }

    .nav-toggle {
        order: 2;
        display: flex;
        flex-shrink: 0;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        width: calc(100% - 40px);
        max-width: 400px;
        margin: 0 20px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        padding: 1.5rem 1rem;
        gap: 0.75rem;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

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

    .nav-menu li {
        width: 100%;
        padding: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .become-host-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .become-host-visual {
        justify-content: center;
        order: 1;
    }

    .become-host-content {
        order: 0;
    }

    .become-host-title {
        text-align: center;
    }

    .become-host .host-intro-text {
        text-align: center;
    }

    .become-host .host-cta-container {
        text-align: center;
    }

    .features-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-intro {
        position: static;
    }

    .features-heading {
        font-size: 2rem;
    }

    .features .feature-number {
        font-size: 3rem;
    }

    .features-list {
        gap: 2rem;
    }

    .safety-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .safety-intro {
        position: static;
    }

    .safety-heading {
        font-size: 2rem;
    }

    .safety-list {
        gap: 1.75rem;
    }

    .safety-trust .trust-item {
        padding-bottom: 1.75rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons,
    .cta-qr-codes {
        flex-direction: column;
        width: 100%;
    }

    .cta-content {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .cta-left {
        max-width: 100%;
    }

    .cta-image-wrap {
        margin: 0 auto;
    }

    .cta-qr-block {
        flex-direction: column;
    }

    .cta-qr-desc {
        max-width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
    
    .btn-download {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* Footer responsive */
    .footer {
        padding: 2.5rem 0 2rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

    /* Apps page responsive */
    .app-content,
    .app-content.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .app-screenshots {
        order: -1;
    }

    .phone-mockup {
        width: 160px;
        height: 330px;
    }

    .app-name {
        font-size: 2rem;
    }

    .apps-title {
        font-size: 2rem;
    }

    .host-benefits {
        flex-direction: column;
    }

    .host-benefit-card {
        max-width: 100%;
    }

    /* About page responsive */
    .about-hero,
    .host-page-hero {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 0;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .about-hero .container,
    .host-page-hero .container {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .about-title,
    .host-page-title {
        font-size: 1.75rem;
        line-height: 1.4;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .about-subtitle,
    .host-page-subtitle {
        font-size: 1rem;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .host-content-section {
        padding: 3rem 0;
    }
    
    .host-section-block {
        margin-bottom: 3rem;
    }
    
    .host-section-block h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .host-earnings-row {
        flex-direction: column;
        align-items: center;
    }
    
    .host-earnings-item {
        max-width: 220px;
    }
    
    .host-section-intro {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .host-steps-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .host-steps-intro {
        position: static;
    }

    .host-steps-heading {
        font-size: 2rem;
    }

    .host-steps-list {
        gap: 0;
    }

    .host-step-item {
        padding: 1.25rem 0;
    }

    .host-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .finances-pricing-section .finances-info-grid,
    .help-socials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .host-tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .host-tips-title {
        font-size: 2rem;
    }

    .host-tips-intro {
        margin-bottom: 2rem;
    }

    .host-tip-card {
        padding: 2rem 1.5rem;
    }

    .finances-pricing-title {
        font-size: 2rem;
    }

    .finances-pricing-intro {
        margin-bottom: 2rem;
    }

    .finances-pricing-section .finance-info-card {
        padding: 2rem 1.5rem;
    }

    .bookings-section {
        padding: 3rem 0;
    }

    .bookings-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bookings-visual {
        justify-content: center;
        order: 1;
    }

    .bookings-content {
        order: 0;
    }

    .bookings-title {
        font-size: 1.75rem;
    }

    .bookings-intro {
        margin-bottom: 2rem;
    }

    .bookings-list {
        gap: 2rem;
    }

    .booking-item {
        padding-left: 1.25rem;
    }

    .finances-info-grid,
    .bookings-features-grid,
    .help-socials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-socials-title {
        font-size: 2rem;
    }
    
    .help-social-card {
        padding: 2rem 1.5rem;
    }
    
    .help-newsletter-section {
        padding: 3rem 1.5rem;
    }
    
    .help-newsletter-title {
        font-size: 1.5rem;
    }
    
    .help-newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .help-newsletter-input {
        min-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .help-newsletter-submit {
        width: 100%;
    }
    
    .help-hero .page-subtitle {
        white-space: normal;
    }
    
    .host-download-section {
        padding: 3rem 1.5rem;
    }
    
    .host-download-title {
        font-size: 1.5rem;
    }
    
    .host-qr-block {
        flex-direction: column;
    }

    .problems-section {
        min-height: 100vh;
        padding: 4rem 0;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .problems-section {
        padding: 3rem 0;
    }

    .problems-section .container {
        width: 100%;
        box-sizing: border-box;
    }

    .problems-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .problem-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 2rem 1.5rem;
    }

    .problem-card:last-child {
        border-bottom: none;
    }

    .problem-card-title {
        font-size: 1.25rem;
    }

    .problem-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .problem-circle {
        width: 100px;
        height: 100px;
        font-size: 0.85rem;
    }

    .problem-text {
        font-size: 0.95rem;
    }

    .differentiators-section {
        padding: 3rem 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .differentiators-section .container {
        width: 100%;
        box-sizing: border-box;
    }

    .differentiators-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .differentiators-intro {
        position: static;
    }

    .differentiators-heading {
        font-size: 2rem;
    }

    .differentiators-list {
        gap: 0;
    }

    .differentiator-item {
        padding: 1.25rem 0;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        box-sizing: border-box;
    }

    .story-section {
        min-height: 100vh;
        padding: 4rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .help-section {
        padding: 4rem 0;
    }
    
    .help-layout {
        grid-template-columns: 1fr;
    }
    
    .help-form-box {
        padding: 1.25rem;
    }

    .content-block {
        padding: 2rem 0;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    /* Apps page additional responsive */
    .apps-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .apps-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .app-section {
        padding: 3rem 0;
    }

    .app-description {
        font-size: 1rem;
    }

    .app-features {
        gap: 0.5rem;
    }

    .app-feature {
        font-size: 0.9rem;
    }

    .phone-mockup.phone-secondary {
        transform: translateY(20px);
    }

    /* Legal page responsive */
    .legal-hero,
    .page-header {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 0;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }
    
    .legal-hero .container,
    .page-header .container {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .help-hero .container,
    .help-hero .help-hero-container {
        display: block;
        align-items: stretch;
        justify-content: flex-start;
        text-align: left;
    }
    
    .help-hero .page-title,
    .help-hero .page-subtitle {
        text-align: left;
        margin-left: 0;
        margin-right: auto;
    }
    
    .legal-hero .page-title,
    .page-header .page-title {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .legal-hero .page-subtitle,
    .page-header .page-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .legal-hero-box {
        padding: 1.5rem 2rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    
    .differentiator-icon,
    .problem-circle {
        max-width: 100%;
        box-sizing: border-box;
    }

    .finances-pricing-section .finances-info-grid,
    .host-tips-grid,
    .help-socials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ensure full viewport sections on very small screens */
    .about-hero,
    .host-page-hero,
    .legal-hero,
    .page-header,
    .problems-section,
    .differentiators-section,
    .story-section,
    .content-section {
        min-height: 100vh;
    }

    .team-hero {
        min-height: 100vh;
    }

    .hero {
        min-height: 100vh;
        background-attachment: scroll;
        image-rendering: auto;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .content-section {
        padding: 4rem 0;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    
    .content-section .container {
        width: 100%;
        box-sizing: border-box;
    }
}
