/* offlead Website Styles - Mobile-First Professional Design */
:root {
    --spruce-green: #3B7C64;
    --spruce-green-light: #4A8B72;
    --spruce-green-dark: #2E6151;
    --spruce-green-darker: #265244;
    --white: #ffffff;
    --light-grey: #f8f9fa;
    --dark-grey: #1a1a1a;
    --text-grey: #4B5563;
    --text-grey-light: #6B7280;
    --border-grey: #e5e7eb;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --mobile-padding: 20px;
    --tablet-padding: 32px;
    --desktop-padding: 24px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--tablet-padding);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--desktop-padding);
    }
}

/* Navigation - Mobile First */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-grey);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0 var(--tablet-padding);
        height: 80px;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 var(--desktop-padding);
    }
}

.nav-logo .logo {
    height: 32px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(15%) saturate(1234%) hue-rotate(118deg) brightness(95%) contrast(87%);
}

@media (min-width: 768px) {
    .nav-logo .logo {
        height: 40px;
    }
}

.nav-links {
    display: none;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 40px;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--spruce-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-grey);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: var(--light-grey);
    color: var(--spruce-green);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-grey);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

@media (min-width: 768px) {
    .mobile-menu {
        top: 80px;
    }
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px var(--mobile-padding);
}

@media (min-width: 768px) {
    .mobile-menu .nav-links {
        padding: 24px var(--tablet-padding);
    }
}

.mobile-menu .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-grey);
    font-size: 1.125rem;
}

.mobile-menu .nav-links a:last-child {
    border-bottom: none;
}

/* Hero Section - Mobile First */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--spruce-green) 0%, var(--spruce-green-light) 100%);
    padding-top: 70px;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 80px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 124, 100, 0.9) 0%, rgba(74, 139, 114, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 var(--tablet-padding);
        gap: 60px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 var(--desktop-padding);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        text-align: left;
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    white-space: pre-line;
}

@media (min-width: 768px) {
    .hero-text h1 {
        margin-bottom: 32px;
    }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 4vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin-bottom: 48px;
    }
}

/* Hero Visual - Mobile Optimized */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    order: -1;
}

@media (min-width: 1024px) {
    .hero-visual {
        order: 0;
    }
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: var(--dark-grey);
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .phone-mockup {
        width: 320px;
        height: 640px;
        border-radius: 36px;
        padding: 10px;
        transform: perspective(1000px) rotateY(-10deg) rotateX(3deg);
    }
}

@media (min-width: 1024px) {
    .phone-mockup {
        width: 320px;
        height: 680px;
        border-radius: 40px;
        padding: 12px;
        transform: perspective(1000px) rotateY(-12deg) rotateX(3deg);
    }
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-6deg) rotateX(2deg) scale(1.02);
}

@media (min-width: 768px) {
    .phone-mockup:hover {
        transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) scale(1.02);
    }
}

@media (min-width: 1024px) {
    .phone-mockup:hover {
        transform: perspective(1000px) rotateY(-10deg) rotateX(3deg) scale(1.02);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .phone-screen {
        border-radius: 24px;
    }
}

@media (min-width: 1024px) {
    .phone-screen {
        border-radius: 28px;
    }
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* Features Section - Mobile First */
.features {
    padding: 80px 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .features {
        padding: 100px 0;
    }
}

@media (min-width: 1024px) {
    .features {
        padding: 120px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 var(--mobile-padding);
}

@media (min-width: 768px) {
    .section-header {
        padding: 0 var(--tablet-padding);
        margin-bottom: 80px;
    }
}

@media (min-width: 1024px) {
    .section-header {
        padding: 0 var(--desktop-padding);
    }
}

.section-header h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 var(--mobile-padding);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 0 var(--tablet-padding);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 0 var(--desktop-padding);
    }
}

.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid var(--border-grey);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .feature-card {
        padding: 40px 32px;
        border-radius: 24px;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--spruce-green) 0%, var(--spruce-green-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--spruce-green);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--spruce-green) 0%, var(--spruce-green-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
}

.feature-card h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 1rem;
}

/* Partner Section - Mobile First */
.partner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

@media (min-width: 768px) {
    .partner-section {
        padding: 100px 0;
    }
}

@media (min-width: 1024px) {
    .partner-section {
        padding: 120px 0;
    }
}

.partner-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .partner-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }
}

.partner-text {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .partner-text {
        text-align: center; /* center the block on desktop */
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
}

.partner-text h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.partner-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: var(--text-grey);
    margin-bottom: 40px;
    line-height: 1.6;
}

.partner-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    text-align: left; /* keep bullets left-aligned within centered block */
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-text p {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.5;
}

.partner-cta {
    background: var(--spruce-green);
    color: var(--white);
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--spruce-green);
    min-height: 56px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-cta:hover {
    background: var(--spruce-green-dark);
    border-color: var(--spruce-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 124, 100, 0.3);
}

.owner-dashboard-question {
    background: #F8FAFB;
    border: 1px solid #E5EFE9;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.owner-dashboard-question h3 {
    color: var(--spruce-green);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.owner-dashboard-question p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Partner Visual - Mobile Optimized */
.partner-visual {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}

@media (min-width: 1024px) {
    .partner-visual {
        max-width: none;
    }
}

.partner-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-grey);
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .partner-card {
        padding: 40px 32px;
        border-radius: 28px;
    }
}

.card-header {
    text-align: center;
    margin-bottom: 32px;
}

.card-header h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-header p {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.5;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .card-stats {
        gap: 24px;
    }
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--light-grey);
    border-radius: 16px;
}

@media (min-width: 768px) {
    .stat-item {
        padding: 28px 20px;
        border-radius: 20px;
    }
}

.stat-value {
    display: block;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    color: var(--spruce-green);
    margin-bottom: 8px;
    line-height: 1;
}

.partner-card .stat-label {
    font-size: 0.875rem;
    color: var(--dark-grey);
    font-weight: 500;
    line-height: 1.3;
}

/* Footer - Mobile First */
.footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 60px 0 40px;
}

@media (min-width: 768px) {
    .footer {
        padding: 80px 0 40px;
    }
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 80px;
    }
}

.footer-logo .logo {
    height: 32px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .footer-logo .logo {
        height: 40px;
        margin-bottom: 24px;
    }
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 1rem;
    padding: 4px 0;
}

.footer-section a:hover {
    color: var(--white);
}

/* Footer Download Buttons */
.footer-download-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-download-button {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    gap: 8px;
    min-width: 120px;
}

.footer-download-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-download-button .store-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

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

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 8px 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Page Content Styles - Mobile First */
.page-content {
    padding: 90px 0 120px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

@media (min-width: 768px) {
    .page-content {
        padding: 100px 0 140px 0;
    }
}

.content-card {
    background: var(--white);
    padding: 32px 24px 24px 24px;
    border-radius: 20px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    margin: 20px 0 60px 0;
    border: 1px solid var(--border-grey);
}

@media (min-width: 768px) {
    .content-card {
        padding: 48px 40px 32px 40px;
        border-radius: 24px;
        margin: 40px 0 80px 0;
    }
}

@media (min-width: 1024px) {
    .content-card {
        padding: 60px 60px 40px 60px;
        border-radius: 28px;
        margin: 40px 0 100px 0;
    }
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .page-header {
        margin-bottom: 60px;
    }
}

.page-header h1 {
    color: var(--dark-grey);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.subtitle {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: var(--text-grey);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Partnership Benefits */
.partnership-benefits {
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .partnership-benefits {
        margin-bottom: 60px;
    }
}

.partnership-benefits h2 {
    color: var(--dark-grey);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .partnership-benefits h2 {
        margin-bottom: 32px;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.benefits-grid .benefit-item {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: left;
    border-left: 4px solid var(--spruce-green);
    border-right: 1px solid #E5EFE9;
    border-top: 1px solid #E5EFE9;
    border-bottom: 1px solid #E5EFE9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.benefits-grid .benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--spruce-green) 0%, rgba(59, 124, 100, 0.3) 100%);
    border-radius: 12px 12px 0 0;
}

@media (min-width: 768px) {
    .benefits-grid .benefit-item {
        padding: 36px 28px;
        border-radius: 16px;
    }
}

.benefits-grid .benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 124, 100, 0.15);
    border-left-color: var(--spruce-green-dark);
}

.benefits-grid .benefit-item h3 {
    color: var(--spruce-green);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.benefits-grid .benefit-item p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

/* Signup Form */
.signup-form {
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .signup-form {
        margin-bottom: 60px;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #F3F8F5;
}

.form-header h2 {
    color: var(--dark-grey);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.form-header p {
    color: var(--text-grey);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.form-section {
    background: #FFFFFF;
    border: 1px solid #E5EFE9;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.form-section:last-of-type {
    margin-bottom: 0;
}

.form-section h3 {
    color: var(--spruce-green);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #F3F8F5;
}

.section-description {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

.form {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.content-card {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .content-card {
        margin: 0 16px;
        width: calc(100% - 32px);
    }
    
    .form-section {
        padding: 24px 20px;
        margin-bottom: 20px;
    }
    
    .form-header {
        margin-bottom: 32px;
        padding-bottom: 20px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .checkbox-item {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .content-card {
        margin: 0 12px;
        width: calc(100% - 24px);
    }
    
    .form-section {
        padding: 20px 16px;
        margin-bottom: 16px;
    }
    
    .form-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .form-header h2 {
        font-size: 1.25rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-grey);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-grey);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    min-height: 56px;
    font-family: inherit;
}

@media (min-width: 768px) {
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 18px 24px;
        border-radius: 16px;
    }
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--spruce-green);
    box-shadow: 0 0 0 3px rgba(59, 124, 100, 0.1);
    transform: translateY(-1px);
}

.input-with-symbol {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-symbol .symbol {
    position: absolute;
    left: 20px;
    color: var(--text-grey);
    font-weight: 600;
    z-index: 1;
    font-size: 1rem;
}

.input-with-symbol input {
    padding-left: 40px;
}

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

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--dark-grey);
    padding: 12px 16px;
    background: #F8FAFB;
    border: 1px solid #E5EFE9;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* Align terms consent block checkbox/text */
.terms-consent .checkbox-item {
    background: #F8FAFB;
    border: 1px solid #E5EFE9;
    border-radius: 10px;
    padding: 14px 16px;
}

.checkbox-item:hover {
    background: #F3F8F5;
    border-color: var(--spruce-green);
    transform: translateY(-1px);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--spruce-green);
    cursor: pointer;
}

.checkbox-item .checkmark {
    display: none;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.975rem;
    line-height: 1.2;
    color: var(--dark-grey);
    padding: 8px 0;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    vertical-align: middle;
    accent-color: var(--spruce-green);
}

.checkbox-label a {
    color: var(--spruce-green);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 24px;
    padding: 16px 0 8px 0;
    border-top: 2px solid #F3F8F5;
}

.submit-btn {
    background: linear-gradient(135deg, var(--spruce-green) 0%, var(--spruce-green-dark) 100%);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(59, 124, 100, 0.2);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

@media (min-width: 768px) {
    .submit-btn {
        padding: 20px 48px;
        border-radius: 20px;
        font-size: 1.25rem;
    }
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--spruce-green-dark) 0%, var(--spruce-green-darker) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 124, 100, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 124, 100, 0.3);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Touch-friendly improvements */
button, a, input, select, textarea {
    touch-action: manipulation;
}

/* Focus states for accessibility */
button:focus, a:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--spruce-green);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-grey: #374151;
        --text-grey-light: #4B5563;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 

/* Coming Soon Section - Mobile First */
.coming-soon-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

@media (min-width: 768px) {
    .coming-soon-section {
        padding: 100px 0;
    }
}

@media (min-width: 1024px) {
    .coming-soon-section {
        padding: 120px 0;
    }
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

.coming-soon-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-grey);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .coming-soon-card {
        padding: 40px 32px;
        border-radius: 24px;
    }
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--spruce-green) 0%, var(--spruce-green-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.coming-soon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--spruce-green);
}

.coming-soon-card:hover::before {
    transform: scaleX(1);
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.coming-soon-card h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 16px;
    line-height: 1.3;
}

.coming-soon-card p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
}

.coming-soon-badge {
    background: linear-gradient(135deg, var(--spruce-green) 0%, var(--spruce-green-light) 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon-cta {
    text-align: center;
    background: var(--white);
    padding: 40px 24px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-grey);
}

@media (min-width: 768px) {
    .coming-soon-cta {
        padding: 60px 40px;
        border-radius: 28px;
    }
}

.coming-soon-cta h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 16px;
    line-height: 1.2;
}

.coming-soon-cta p {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: var(--text-grey);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-cta .download-buttons {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .download-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .download-buttons {
        justify-content: flex-start;
    }
}

.download-button {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    width: 100%;
}

@media (min-width: 768px) {
    .download-button {
        width: auto;
        min-width: 200px;
        padding: 18px 24px;
    }
}

.download-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.download-button.app-store {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.download-button.app-store:hover {
    background: rgba(255, 255, 255, 0.25);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.store-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

@media (min-width: 768px) {
    .store-icon {
        width: 32px;
        height: 32px;
    }
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.store-name {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.store-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

@media (min-width: 768px) {
    .store-name {
        font-size: 0.875rem;
    }
    
    .store-label {
        font-size: 1.25rem;
    }
}

.coming-soon-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Update hero stats for 3 items */
.hero-quote {
    margin-top: 24px;
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-quote blockquote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--white);
    margin: 0 0 8px 0;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.9;
}

.hero-quote cite {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-quote blockquote { font-size: 1rem; }
    .hero-quote cite { font-size: 0.85rem; }
}

/* Official store badges layout */
.download-badges {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center; /* Center items on mobile */
}

.store-badge-wrapper {
    height: 48px;
    width: 145px; /* Fixed width to make them visually similar */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent shrinking in flex containers */
}

.store-badge {
    height: 48px;
    width: auto; /* Allow width to adjust proportionally based on intrinsic image aspect ratio */
    display: block;
    object-fit: contain;
}

.store-badge-link { display: inline-flex; line-height: 0; }

.hero-quote.below-badges { margin-top: 16px; }

/* Quote refinements: Option 1 + 2 */
.hero-quote.below-badges {
    padding-top: 12px;
    margin-bottom: 8px;
    position: relative;
}
.hero-quote.below-badges::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.45);
}
.hero-quote.below-badges blockquote {
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 10px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.06);
}
.hero-quote.below-badges cite { display: block; margin-top: 6px; }

/* Footer badges align with hero */
.footer-download-badges { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.footer-download-badges .store-badge.apple { height: 48px; }
.footer-download-badges .store-badge.google { height: 48px; }

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 32px;
        margin-bottom: 48px;
    }
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
        margin-bottom: 56px;
        gap: 40px;
    }
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    text-align: center;
}

@media (min-width: 1024px) {
    .stat {
        align-items: flex-start;
        min-width: 80px;
        text-align: left;
    }
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .stat-number {
        min-height: 50px;
    }
}

.stat-label {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .stat-label {
        text-align: left;
    }
} 

.stat-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

@media (min-width: 768px) {
    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
}

@media (min-width: 1024px) {
    .stat-icon {
        align-self: flex-start;
    }
}

.stat-icon svg {
    width: 100%;
    height: 100%;
} 