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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111827;
    background: #ffffff;
}

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

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

h2 {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.5;
}

h3 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
}

p {
    line-height: 1.6;
}

/* Button Styles */
.btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none !important;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:visited {
    text-decoration: none !important;
}

.btn-primary {
    background-color: #ff6b4a;
    color: white;
}

.btn-primary:hover {
    background-color: #ff5533;
}

.btn-secondary {
    background-color: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #f9fafb;
}

.btn-outline {
    background-color: transparent;
    color: #ff6b4a;
    border: 1px solid #ff6b4a;
}

.btn-outline:hover {
    background-color: #ff6b4a;
    color: white;
}

.btn-sm {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
}

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

.btn-arrow {
    position: relative;
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s;
}

.btn-arrow:hover .arrow-icon {
    transform: translateX(4px);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f3f4f6;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo h1 {
    font-size: 1.25rem;
    color: #ff6b4a;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ff6b4a;
}

.nav-mobile {
    display: flex;
    gap: 0.5rem;
}

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

    .nav-mobile {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #ffffff, rgba(255, 237, 213, 0.3));
    padding: 5rem 1rem;
}

.hero-container {
    max-width: 1000px;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item .icon {
    width: 1rem;
    height: 1rem;
    color: #ff6b4a;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* Problem Section */
.problem-section {
    padding: 5rem 1rem;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(254, 242, 242, 0.5);
    border: 1px solid rgba(254, 226, 226, 1);
    border-radius: 0.75rem;
}

.problem-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #ff6b4a;
    flex-shrink: 0;
}

.problem-card p {
    color: #374151;
}

@media (min-width: 640px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Solution Section */
.solution-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, rgba(255, 237, 213, 0.3), #ffffff);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #ff6b4a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 237, 213, 1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #ff6b4a;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: #111827;
}

.feature-card p {
    color: #4b5563;
}

@media (min-width: 640px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 1rem;
    background: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    position: relative;
    background: white;
    padding: 1.5rem;
    border: 2px solid rgba(255, 237, 213, 1);
    border-radius: 0.75rem;
    text-align: center;
}

.step-connector {
    display: none;
}

.step-number {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 237, 213, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b4a;
    font-weight: 600;
}

.step-icon-circle {
    width: 4rem;
    height: 4rem;
    background-color: #ff6b4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.step-card h3 {
    margin-bottom: 0.75rem;
    color: #111827;
}

.step-card p {
    color: #4b5563;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-connector {
        display: block;
        position: absolute;
        top: 3rem;
        left: 60%;
        width: 80%;
        height: 2px;
        background-color: rgba(255, 237, 213, 1);
    }

    .step-card:last-child .step-connector {
        display: none;
    }
}

/* Target Audience Section */
.target-audience-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 237, 213, 0.3));
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s;
}

.audience-card:hover {
    border-color: #ff6b4a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.audience-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 237, 213, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.audience-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #ff6b4a;
}

.audience-card h3 {
    color: #111827;
}

@media (min-width: 640px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 4rem 1rem;
    background: #ffffff;
}

.coming-soon-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(to right, rgba(255, 237, 213, 1), rgba(254, 242, 242, 1));
    border: 1px solid rgba(255, 237, 213, 1);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
}

.sparkle-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: #ff6b4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.sparkle-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.coming-soon-card h2 {
    margin-bottom: 1rem;
    color: #111827;
}

.coming-soon-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.btn-vision {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
}

.vision-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: currentColor;
}

.vision-caption {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
    text-align: center;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, rgba(255, 237, 213, 0.3), #ffffff);
}

.cta-container {
    max-width: 900px;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 3rem;
    }

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

/* Footer */
.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-left h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: #9ca3af;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #ff6b4a;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-bottom span {
    color: #9ca3af;
}

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

/* Icon Base Styles */
svg {
    display: block;
}