/* ============================================
   OverBiscuits Website Styles
   Modern, conversion-focused design
   ============================================ */

/* Color Palette (matching iOS app) */
:root {
    --navy: #2C3E50;
    --sky-blue: #5DADE2;
    --sky-blue-dark: #4A9CD6;
    --warm-gold: #F39C12;
    --coral: #E74C3C;
    --cream: #FDF5E6;
    --warm-white: #FAF8F3;
    --light-gray: #F5F5F5;
    --medium-gray: #7F8C8D;
    --dark-gray: #34495E;
    --success-green: #27AE60;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background-color: var(--warm-white);
}

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

/* Navigation */
.nav {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo img {
    height: 40px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-small {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary-small {
    padding: 10px 24px;
    font-size: 14px;
    background: var(--sky-blue);
    color: white !important;
}

.btn-primary-small:hover {
    background: var(--sky-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(93, 173, 226, 0.3);
    color: white !important;
}

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

.btn-primary:hover {
    background: var(--sky-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(93, 173, 226, 0.3);
}

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

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

/* Hero Section - Redesigned */
.hero {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    padding: 40px 0 60px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

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

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--dark-gray);
}

.hero-feature-icon {
    font-size: 20px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: var(--success-green);
    font-weight: 500;
}

.trust-icon {
    font-size: 16px;
}

/* Early Bird Badge - Hero */
.early-bird-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border: 2px solid var(--warm-gold);
    border-radius: 12px;
    margin-bottom: 20px;
}

.early-bird-icon {
    font-size: 28px;
}

.early-bird-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.early-bird-tier {
    font-size: 14px;
    font-weight: 700;
    color: var(--warm-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.early-bird-offer {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.early-bird-spots {
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Early Bird Card - Waitlist Section */
.early-bird-card {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border: 2px solid var(--warm-gold);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.early-bird-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.early-bird-card-icon {
    font-size: 24px;
}

.early-bird-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--warm-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.early-bird-card-offer {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.early-bird-card-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--warm-gold) 0%, #e6a700 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 500;
    text-align: center;
}

/* Hero Visual - Lifestyle Image with Phone Overlay */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 580px;
}

.hero-lifestyle-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.hero-phone-front,
.hero-phone-back {
    position: absolute;
    width: 180px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 6px solid #1a1a1a;
    transition: all 0.4s ease;
}

.hero-phone-front {
    bottom: -30px;
    right: -40px;
    z-index: 2;
}

.hero-phone-back {
    bottom: 10px;
    right: -15px;
    z-index: 1;
    opacity: 0.85;
}

.hero-phone-front img,
.hero-phone-back img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-container:hover .hero-phone-front {
    transform: translateX(-20px) translateY(-5px);
}

.hero-image-container:hover .hero-phone-back {
    transform: translateX(40px) translateY(-10px) rotate(5deg);
    opacity: 1;
}

/* Stats Section */
.stats {
    background: white;
    padding: 48px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--sky-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats 4-column variant */
.stats-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Moments Section */
.moments {
    padding: 60px 0;
    background: white;
}

.moments .section-header p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.6;
}

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

.moments-highlight {
    background: var(--warm-white);
    border-radius: 16px;
    padding: 32px;
}

.moments-highlight-header h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
}

.moments-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.moments-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.moments-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--sky-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.moments-step strong {
    display: block;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 4px;
}

.moments-step p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}

.moments-topics {
    background: var(--warm-white);
    border-radius: 16px;
    padding: 32px;
}

.moments-topics h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 20px;
}

.moments-topic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.moments-topic-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border-radius: 24px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
}

.moments-topic-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.moments-topic-icon {
    font-size: 18px;
}

.moments-topic-custom {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border-color: var(--warm-gold);
    color: var(--navy);
    font-weight: 600;
}

.moments-topic-count {
    font-size: 13px;
    color: var(--medium-gray);
    font-weight: 500;
    margin: 0;
}

/* Moments Examples */
.moments-examples {
    margin-bottom: 40px;
    text-align: center;
}

.moments-examples h3 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 8px;
}

.moments-examples-subtitle {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 28px;
}

.moments-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.moments-example-card {
    background: var(--warm-white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.moments-example-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.moments-example-topic {
    font-size: 15px;
    font-weight: 600;
    color: var(--sky-blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.moments-example-topic span {
    font-size: 20px;
}

.moments-example-snippet {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.moments-example-label {
    font-size: 12px;
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.moments-callout {
    background: linear-gradient(135deg, var(--cream) 0%, #fef0d5 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.moments-callout h3 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 12px;
}

.moments-callout p {
    font-size: 17px;
    color: var(--dark-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 24px;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(93, 173, 226, 0.1);
    color: var(--sky-blue);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Products Section */
.products {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
}

.product-image {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.product-featured {
    border-color: var(--warm-gold);
    position: relative;
}

.product-featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warm-gold);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 16px;
    color: var(--sky-blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.product-description {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 40px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--medium-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--warm-white);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* How It Works Section */
.how-it-works {
    padding: 40px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 24px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--sky-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(93, 173, 226, 0.3);
}

.step h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
}

.step p {
    color: var(--dark-gray);
    line-height: 1.5;
    font-size: 14px;
}

/* Why Section */
.why-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.why-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.why-content h2 {
    font-size: 38px;
    color: var(--navy);
    margin-bottom: 32px;
}

.why-lead {
    font-size: 20px;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 500;
}

.why-text {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-text:last-child {
    margin-bottom: 0;
}

.why-text strong {
    color: var(--navy);
}

/* Family Project Section */
.family-project {
    padding: 40px 0;
    background: white;
}

.family-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 24px;
}

.family-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.family-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.family-feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.family-feature h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
}

.family-feature p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.family-notification {
    display: flex;
    justify-content: center;
}

.notification-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    padding: 20px 24px;
    max-width: 340px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.notification-app {
    font-weight: 600;
    color: var(--navy);
    font-size: 14px;
}

.notification-time {
    font-size: 12px;
    color: var(--medium-gray);
}

.notification-body strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    margin-bottom: 6px;
}

.notification-body p {
    color: var(--sky-blue);
    font-size: 16px;
    font-style: italic;
    margin: 0;
}

/* Gift Section */
.gift-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.gift-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gift-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 32px;
}

.gift-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

.gift-step-number {
    width: 48px;
    height: 48px;
    background: var(--warm-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.gift-step h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
}

.gift-step p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 40px 0;
    background: var(--navy);
}

.testimonials .section-header {
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--warm-gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
    font-size: 16px;
    color: white;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-name {
    font-weight: 600;
    color: white;
    font-size: 15px;
}

.testimonial-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Our Story Section */
.our-story-section {
    padding: 40px 0;
    background: white;
}

.our-story-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.our-story-content h2 {
    font-size: 38px;
    color: var(--navy);
    margin-bottom: 24px;
}

.our-story-text {
    font-size: 19px;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Value Prop Section */
.value-prop {
    padding: 40px 0;
    background: white;
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.value-content h2 {
    font-size: 38px;
    color: var(--navy);
    margin-bottom: 24px;
}

.value-text {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.value-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.value-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(39, 174, 96, 0.05);
    border-radius: 8px;
    font-size: 15px;
    color: var(--dark-gray);
}

.check-icon {
    color: var(--success-green);
    font-weight: 700;
    font-size: 18px;
}

/* Waitlist Section */
.waitlist {
    padding: 40px 0;
    background: var(--navy);
    text-align: center;
}

.waitlist-content {
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
}

.waitlist-content > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    width: 100%;
}

.waitlist-form input[type="email"],
.waitlist-form textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: white;
    color: var(--navy);
    font-family: inherit;
    transition: all 0.2s;
}

.waitlist-form input[type="email"]:focus,
.waitlist-form textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 4px rgba(93, 173, 226, 0.2);
}

.waitlist-form input[type="email"]::placeholder,
.waitlist-form textarea::placeholder {
    color: var(--medium-gray);
}

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    margin-top: 8px;
}

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

.success-message {
    background: rgba(39, 174, 96, 0.15);
    border: 2px solid var(--success-green);
    border-radius: 16px;
    padding: 32px;
    animation: fadeIn 0.3s ease;
}

.success-message .success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--success-green);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.success-message h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 8px;
}

.success-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 0;
}

.error-message {
    background: rgba(231, 76, 60, 0.15);
    border: 2px solid var(--coral);
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
}

.error-message p {
    color: var(--coral);
    font-size: 14px;
    margin: 0;
}

.waitlist-subtext {
    margin-top: 24px !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    margin-bottom: 16px;
    color: var(--warm-gold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

/* Language Switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: var(--navy);
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.lang-switch:hover {
    background: var(--sky-blue);
    color: white;
    border-color: var(--sky-blue);
    transform: translateY(-1px);
}

.lang-switch-globe {
    font-size: 15px;
    line-height: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

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

    .hero-features {
        align-items: center;
    }

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

    .trust-badge {
        justify-content: center;
    }

    .hero-image-container {
        max-width: 400px;
    }

    .hero-phone-front,
    .hero-phone-back {
        width: 120px;
    }

    .hero-phone-front {
        right: -20px;
        bottom: -15px;
    }

    .hero-phone-back {
        right: 0px;
        bottom: 5px;
    }

    .stats-grid,
    .stats-grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-links li:last-child a {
        border-bottom: none;
        margin-top: 8px;
    }

    .nav-content {
        position: relative;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Early Bird Badge Mobile */
    .early-bird-badge {
        padding: 12px 16px;
        gap: 10px;
        margin-top: 12px;
    }

    .early-bird-icon {
        font-size: 24px;
    }

    .early-bird-offer {
        font-size: 16px;
    }

    .early-bird-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .early-bird-card-offer {
        font-size: 18px;
    }

    /* Hero visual mobile adjustments */
    .hero-image-container {
        max-width: 320px;
    }

    .hero-lifestyle-img {
        border-radius: 16px;
    }

    .hero-phone-front,
    .hero-phone-back {
        width: 100px;
        border-width: 4px;
        border-radius: 16px;
    }

    .hero-phone-front {
        right: -15px;
        bottom: -10px;
    }

    .hero-phone-back {
        right: 5px;
        bottom: 5px;
    }

    .stats-grid,
    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Moments Mobile */
    .moments {
        padding: 40px 0;
    }

    .moments-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .moments-highlight,
    .moments-topics {
        padding: 24px;
    }

    .moments-examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .moments-example-card {
        padding: 24px;
    }

    .moments-examples h3 {
        font-size: 22px;
    }

    .moments-callout {
        padding: 28px 20px;
    }

    .moments-callout h3 {
        font-size: 22px;
    }

    .moments-callout p {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .features,
    .how-it-works,
    .why-section,
    .our-story-section,
    .products,
    .family-project,
    .gift-section,
    .testimonials,
    .value-prop {
        padding: 40px 0;
    }

    /* Family Project Mobile */
    .family-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .family-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .notification-card {
        max-width: 100%;
    }

    /* Gift Section Mobile */
    .gift-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gift-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

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

    .product-card {
        padding: 24px;
    }

    .product-featured {
        order: -1;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .product-tagline {
        font-size: 15px;
    }

    .product-description {
        font-size: 14px;
    }

    .our-story-content h2 {
        font-size: 26px;
    }

    .our-story-text {
        font-size: 16px;
    }

    .features-grid,
    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .why-content h2,
    .value-content h2 {
        font-size: 26px;
    }

    .why-lead {
        font-size: 17px;
    }

    .why-text {
        font-size: 16px;
    }

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

    .value-feature {
        font-size: 14px;
    }

    .waitlist {
        padding: 40px 0;
    }

    .waitlist-content h2 {
        font-size: 28px;
    }

    .waitlist-content > p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .waitlist-form input[type="email"],
    .waitlist-form textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    .btn-submit {
        padding: 14px 24px;
        font-size: 16px;
    }

    .success-message {
        padding: 24px;
    }

    .success-message h3 {
        font-size: 20px;
    }

    .footer {
        padding: 48px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        text-align: left;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-feature {
        font-size: 14px;
    }

    .hero-image-container {
        max-width: 280px;
    }

    .hero-phone-front,
    .hero-phone-back {
        width: 80px;
    }

    .hero-phone-front {
        right: -10px;
        bottom: -8px;
    }

    .hero-phone-back {
        right: 5px;
        bottom: 5px;
    }

    .stats-grid,
    .stats-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat {
        padding: 16px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .step h3 {
        font-size: 18px;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .footer-section:first-child {
        grid-column: auto;
    }
}
