@charset "UTF-8";

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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #5D7052;
    --secondary-color: #7D8C72;
    --accent-color: #6B8E5F;
    --tan-color: #C9B99B;
    --tan-light: #E8DCC8;
    --text-dark: #3A4035;
    --text-light: #7D8C72;
    --bg-light: #F5F1EA;
    --bg-white: #FFFFFF;
    --border-color: #D9CDB8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
header {
    background: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
}

header.hidden {
    transform: translateY(-100%);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s;
}

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

/* Hamburger Menu */
#hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

#hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

#hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#hamburger.active span:nth-child(2) {
    opacity: 0;
}

#hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
#mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--bg-white);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
}

#mobile-nav.active {
    right: 0;
}

#mobile-nav .nav-links {
    display: flex;
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 0;
    list-style: none;
}

#mobile-nav .nav-links li {
    border-bottom: 1px solid var(--border-color);
}

#mobile-nav .nav-links li:last-child {
    border-bottom: none;
}

#mobile-nav .nav-links a {
    display: block;
    padding: 16px 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

#mobile-nav .nav-links a:hover {
    color: var(--accent-color);
    background: rgba(72, 187, 120, 0.05);
    padding-left: 20px;
}

/* Navigation Overlay */
#nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

#nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    padding: 4rem 20px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #4a7c3f 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(107, 142, 95, 0.3);
    animation: pulse-subtle 2s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-trust {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 1.25rem 2rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: 500;
    min-height: 48px;
}

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

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Phone Mockup */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: clamp(320px, 30vw, 420px);
    min-height: 600px;
    background: #F2F2F7;
    border-radius: 30px;
    padding: clamp(20px, 2vw, 30px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
                0 10px 20px rgba(0, 0, 0, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    opacity: 0;
    animation: phoneAppear 0.6s ease-out 0.1s forwards;
}

@keyframes phoneAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* iPhone-style notch/status bar area */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.message-bubble {
    background: #E8E8ED;
    padding: clamp(12px, 1.5vw, 16px) clamp(14px, 1.5vw, 18px);
    border-radius: 18px;
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    line-height: 1.5;
    color: var(--text-dark);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08),
                0 2px 4px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    max-width: 85%;
    position: relative;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: messageSlideIn 0.4s ease-out forwards;
}

/* Typing Indicator */
.typing-indicator {
    background: #E8E8ED;
    padding: 12px 16px;
    margin: 8px 0 2px 0;
    border-radius: 18px;
    display: inline-flex;
    gap: 4px;
    align-items: center;
    align-self: flex-start;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 4px;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
    will-change: transform, opacity;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8E8E93;
    animation: typingDotBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDotBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

/* Typing indicator appears and disappears before each message */
.typing-indicator[data-message="1"] {
    animation: typingAppear 0.4s ease-out 1s forwards,
               typingDisappear 0.3s ease-in 2.5s forwards;
}

.typing-indicator[data-message="2"] {
    animation: typingAppear 0.4s ease-out 3.5s forwards,
               typingDisappear 0.3s ease-in 5.2s forwards;
}

.typing-indicator[data-message="3"] {
    animation: typingAppear 0.4s ease-out 6.2s forwards,
               typingDisappear 0.3s ease-in 7.9s forwards;
}

.typing-indicator[data-message="4"] {
    animation: typingAppear 0.4s ease-out 8.9s forwards,
               typingDisappear 0.3s ease-in 10.6s forwards;
}

@keyframes typingAppear {
    0% {
        visibility: visible;
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        visibility: visible;
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes typingDisappear {
    0% {
        visibility: visible;
        opacity: 1;
        transform: scale(1);
    }
    99% {
        visibility: visible;
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        visibility: hidden;
        opacity: 0;
        transform: scale(0.8);
    }
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    .typing-indicator span {
        animation: none;
    }

    @keyframes typingAppear {
        0% {
            visibility: hidden;
            opacity: 0;
        }
        100% {
            visibility: visible;
            opacity: 1;
        }
    }

    @keyframes typingDisappear {
        0% {
            visibility: visible;
            opacity: 1;
        }
        100% {
            visibility: hidden;
            opacity: 0;
        }
    }
}

/* Staggered animation delays for each message - slowed down */
.message-bubble:nth-child(2) {
    animation-delay: 3s;
}

.message-bubble:nth-child(4) {
    animation-delay: 5.5s;
}

.message-bubble:nth-child(6) {
    animation-delay: 8.2s;
}

.message-bubble:nth-child(8) {
    animation-delay: 11s;
}

@keyframes messageSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    60% {
        transform: translateY(-2px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* First message gets extra top margin for notch */
.message-bubble:first-child {
    margin-top: 15px;
}

/* iMessage tail effect */
.message-bubble.received::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    width: 20px;
    height: 20px;
    background: #E8E8ED;
    border-bottom-right-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.message-bubble.received::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 10px;
    height: 20px;
    background: #F2F2F7;
    border-bottom-right-radius: 10px;
}

.message-bubble strong {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--accent-color), #5a7a4f);
    color: white;
    font-size: clamp(0.7rem, 0.8vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(107, 142, 95, 0.2);
}

.message-bubble.received {
    background: #E8E8ED;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* How It Works */
.how-it-works {
    background: var(--bg-light);
    padding: 4rem 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Features */
.features {
    padding: 4rem 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.feature-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
}

/* Coming Soon Timeline */
.coming-soon {
    background: var(--bg-light);
    padding: 4rem 0;
}

.coming-soon h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--bg-light);
}

.timeline-item.completed .timeline-marker {
    background: #4CAF50;
}

.timeline-item.active .timeline-marker {
    background: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 123, 255, 0.1);
    }
}

.timeline-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-item.completed h3 {
    color: #4CAF50;
}

.timeline-item.active h3 {
    color: var(--accent-color);
    font-weight: 600;
}

.timeline-item p {
    color: var(--text-light);
}

.timeline-item.completed p {
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Signup Form */
.signup-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.form-group input[type="tel"],
.form-group input[type="text"] {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input[type="tel"]:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-group input[type="tel"].invalid,
.form-group input[type="text"].invalid {
    border-color: #FC8181;
    background: #FFF5F5;
}

.form-group input[type="tel"]:disabled,
.form-group input[type="text"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.7);
}

/* OTP input specific styling */
#otp-code {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    text-align: center;
    font-weight: bold;
}

.consent-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.consent-checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.consent-checkbox input[type="checkbox"].invalid {
    outline: 2px solid #FC8181;
}

.consent-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

.consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.consent-text a:hover {
    color: var(--accent-color);
}

.error-message {
    display: block;
    color: #FC8181;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.success-message {
    display: none;
    padding: 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    margin-top: 1rem;
}

.success-message.visible {
    display: block;
    background: rgba(107, 142, 95, 0.2);
    color: white;
    border: 2px solid rgba(107, 142, 95, 0.5);
}

.success-message.error {
    background: rgba(252, 129, 129, 0.2);
    border-color: rgba(252, 129, 129, 0.5);
}

.signup-form .btn-primary {
    width: 100%;
    background: white;
    color: var(--primary-color);
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
    min-height: 52px;
}

.signup-form .btn-primary:hover:not(:disabled) {
    background: var(--bg-light);
}

.signup-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links .separator {
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    opacity: 0.7;
}

/* Responsive Design - Tablets */
@media (max-width: 1024px) {
    .hero {
        gap: 2rem;
    }

    .phone-mockup {
        width: clamp(300px, 35vw, 380px);
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

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

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-visual {
    width: 280px;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-radius: 30px;
    padding: 50px 20px 20px;
    position: relative;
}

.notification-bar {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.message-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.message-text strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.message-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.mission-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
}

.mission-highlight .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.6;
}

.mission-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.stat-icon {
    font-size: 2rem;
}

.stat-text {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.125rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

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

.value-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.value-card:nth-child(2) .value-icon {
    animation-delay: 0.5s;
}

.value-card:nth-child(3) .value-icon {
    animation-delay: 1s;
}

.value-card:nth-child(4) .value-icon {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.member-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.member-info h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.member-role {
    color: var(--accent-color);
    font-size: 1.125rem;
    font-weight: 600;
}

.member-bio p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
}

.member-bio p:last-child {
    margin-bottom: 0;
}

/* Journey Section */
.journey-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

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

.journey-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.journey-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    /* Mobile Navigation */
    header {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0.5rem 20px;
    }

    .logo {
        font-size: 1.25rem;
    }

    /* Show hamburger, hide desktop nav on mobile */
    #hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    /* Show mobile nav drawer */
    #mobile-nav {
        display: block;
    }

    #nav-overlay {
        display: block;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 2rem 20px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Buttons - Larger touch targets on mobile */
    .btn-primary, .btn-secondary {
        padding: 1.25rem 2rem;
        font-size: 1.0625rem;
    }

    .email-signup {
        flex-direction: column;
    }

    .phone-mockup {
        width: min(90vw, 320px);
        min-height: 500px;
        padding: 15px;
        gap: 2px;
    }

    .phone-mockup::before {
        top: 8px;
        width: 100px;
        height: 4px;
    }

    .message-bubble {
        font-size: 0.75rem;
        padding: 10px 12px;
        line-height: 1.45;
        max-width: 90%;
    }

    .message-bubble:first-child {
        margin-top: 12px;
    }

    .message-bubble strong {
        font-size: 0.65rem;
        margin-bottom: 6px;
        padding: 3px 8px;
    }

    .typing-indicator {
        padding: 10px 14px;
        margin: 6px 0 2px 0;
    }

    .typing-indicator span {
        width: 6px;
        height: 6px;
    }

    .about-section p {
        font-size: 1rem;
    }

    .cta-container {
        padding: 2rem 1.5rem;
    }

    /* About Page Mobile Styles */
    .about-hero {
        padding: 4rem 0 3rem;
    }

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

    .phone-visual {
        width: 240px;
        height: 420px;
    }

    .mission-content h2 {
        font-size: 2rem;
    }

    .mission-highlight .lead {
        font-size: 1.125rem;
    }

    .mission-content p {
        font-size: 1rem;
    }

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

    .values-section h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

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

    .team-section h2 {
        font-size: 2rem;
    }

    .team-grid {
        gap: 2rem;
        margin-top: 2rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .member-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .member-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .member-info h3 {
        font-size: 1.5rem;
    }

    .member-role {
        font-size: 1rem;
    }

    .member-bio p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

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

    .journey-content h2 {
        font-size: 2rem;
    }

    .journey-content p {
        font-size: 1.125rem;
    }

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

/* Landing Page Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(93, 112, 82, 0.03) 0%, rgba(232, 220, 200, 0.15) 100%);
}

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

.pricing-section .pricing-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.pricing-section .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-section .pricing-card {
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-section .pricing-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(107, 142, 95, 0.2);
}

.pricing-section .pricing-card.selected {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(107, 142, 95, 0.05) 0%, rgba(107, 142, 95, 0.1) 100%);
    box-shadow: 0 8px 20px rgba(107, 142, 95, 0.3);
    transform: translateY(-4px);
}

.pricing-section .pricing-card.recommended {
    border-color: var(--accent-color);
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(107, 142, 95, 0.15);
}

.btn-pricing {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-pricing:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.btn-pricing.primary:hover {
    background: #38a169;
    border-color: #38a169;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 12px rgba(107, 142, 95, 0.3);
}

.progress-step.completed .step-circle {
    background: white;
    border: 2px solid var(--primary-color);
    color: transparent;
    position: relative;
}

.progress-step.completed .step-circle::after {
    content: '✓';
    position: absolute;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--accent-color);
}

.progress-step.completed .step-label {
    color: var(--primary-color);
}

.progress-line {
    width: 80px;
    height: 3px;
    background: #e2e8f0;
    margin: 0 1rem;
}

.progress-step.active ~ .progress-line {
    background: #e2e8f0;
}

.progress-step.completed ~ .progress-line,
.progress-step.completed + .progress-line {
    background: var(--primary-color);
}

/* Selected Plan Summary */
.selected-plan-summary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--accent-color);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin: 0 auto 2rem;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.plan-summary-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.plan-summary-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.plan-summary-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.plan-summary-text strong {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-summary-text span {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-change-plan {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-change-plan:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Responsive Progress Indicator */
@media (max-width: 768px) {
    .progress-indicator {
        padding: 1rem 0;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.875rem;
    }

    .progress-line {
        width: 40px;
        margin: 0 0.5rem;
    }

    /* Selected Plan Summary Mobile */
    .selected-plan-summary {
        padding: 1rem;
        margin: 0 1rem 1.5rem;
    }

    .plan-summary-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .plan-summary-text {
        gap: 0.125rem;
    }

    .plan-summary-text span {
        font-size: 1rem;
    }

    .btn-change-plan {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    /* Footer Mobile Optimization */
    footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-links a {
        display: block;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        text-align: center;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 500;
    }

    .footer-links .separator {
        display: none;
    }

    .pricing-section .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-section .pricing-card {
        padding: 2rem;
    }

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

    .pricing-section .pricing-subtitle {
        font-size: 1rem;
    }
}

/* Pricing Selection Styles (for signup flow modal) */
.pricing-container {
    display: none;
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pricing-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(107, 142, 95, 0.2);
}

.pricing-card.selected {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(107, 142, 95, 0.05) 0%, rgba(107, 142, 95, 0.1) 100%);
    box-shadow: 0 8px 20px rgba(107, 142, 95, 0.3);
}

.pricing-card.recommended {
    border-color: var(--accent-color);
    border-width: 3px;
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(107, 142, 95, 0.3);
}

.trial-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.price-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-guarantee {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.plan-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.plan-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.savings-badge {
    text-align: center;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: rgba(107, 142, 95, 0.1);
    border-radius: 0.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features li::before {
    content: '\2713';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.125rem;
}

.select-plan-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.select-plan-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.select-plan-btn.primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.select-plan-btn.primary:hover:not(:disabled) {
    background: #38a169;
    border-color: #38a169;
}

.select-plan-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Pricing Mobile Responsive */
@media (max-width: 768px) {
    .pricing-container {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .plan-name {
        font-size: 1.25rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .recommended-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.875rem;
    }

    .savings-badge {
        font-size: 0.9rem;
    }

    .plan-features li {
        font-size: 0.875rem;
        padding: 0.625rem 0;
    }

    .select-plan-btn {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
}