:root {
    --primary-color: #00A3B4;
    --secondary-color: #008B99;
    --text-color: #2C3E50;
    --light-text: #5D6D7E;
    --background: #ffffff;
    --light-background: #F8F9FA;
    --border-color: #E5E7EB;
    --accent-color: #00A3B4;
    --hover-color: #008B99;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--background);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 88px;
}

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

.logo {
    display: flex;
    align-items: center;
    height: 72px;
}

.brand-link-block,
.w-nav-brand {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    text-decoration: none;
}

.milestone-logo {
    height: 120px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
}

/* Remove text logo styles if present */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: inherit;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.auth-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: #7DE2D1;
    color: #0B3C3B;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
    background: #B7E778;
    color: #0B3C3B;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

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

/* Hero section specific button styles */
.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: #0B3C3B;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .btn-secondary:hover {
    background-color: #fff;
    border-color: #fff;
}

/* Hero Section */
.top-gradient-bar {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #B7E778 0%, #7DE2D1 100%);
    text-align: center;
    color: #222;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.hero,
.hero.hero-split {
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
}

.hero {
    background: #0B3C3B;
    color: #fff;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero-title {
    font-family: 'Aleo', serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.5rem;
    color: #F3F3F3;
    margin-bottom: 2rem;
}

.accent {
    color: #E86A33;
    font-weight: 600;
}

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

.hero.hero-split {
    background: #0B3C3B;
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px; gap: 2rem; 
    margin: 0 auto;
    width: 100%;
    min-height: 520px;
    padding: 5rem 2rem 3rem 2rem;
    position: relative;
    z-index: 2;
}

.hero-content.left {
    flex: 1 1 44%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.hero-title {
    font-family: 'Aleo', serif;
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #F3F3F3;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.cta-buttons.left {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
}

.hero-illustration.right {
    flex: 1 1 56%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    z-index: 2;
    height: 100%;
    padding: 2rem;
}

.hero-bg-dots {
    position: absolute;
    left: -120px;
    top: 60px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(125, 226, 209, 0.18) 0%, rgba(11, 60, 59, 0.0) 80%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Features Section */
#how-it-works.features {
    background: #F7F5EF;
    padding: 4rem 2rem;
}

.features,
#features {
    background: #F7F5EF !important;
    margin-top: 0;
    position: relative;
    z-index: 2;
    padding-bottom: 6rem;
    margin-bottom: 4rem;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #F7F5EF;
    border: 2px solid #23423A;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(44, 66, 58, 0.04);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 340px;
    position: relative;
}

.feature-illustration {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    align-self: center;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E7EB;
}

.feature-card h3 {
    font-family: 'Aleo', serif;
    color: #23423A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #2C3E50;
    font-size: 1.08rem;
    line-height: 1.6;
}

.feature-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.feature-nav-btn {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(44, 66, 58, 0.10);
    transition: transform 0.15s;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-nav-btn:active {
    transform: scale(0.95);
}

.feature-nav-btn svg {
    display: block;
}

/* About Section */
.about {
    padding: 3rem 2rem 4rem;
    background-color: var(--background);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: -1rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44, 66, 58, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(44, 66, 58, 0.08);
}

.benefit h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--light-background);
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-section a {
    display: block;
    color: var(--light-text);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .feature-grid,
    .benefits {
        grid-template-columns: 1fr;
    }
}

.footer.ayble-footer {
    background: #0B3C3B;
    color: #fff;
    padding: 4rem 2rem 0;
    border-radius: 2rem 2rem 0 0;
    margin-top: 4rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 180px;
    margin-bottom: 2rem;
}

.logo-col .footer-logo {
    font-family: 'Aleo', serif;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
}

.nav-col a {
    display: block;
    color: #7DE2D1;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    transition: color 0.2s, text-decoration 0.2s;
}

.nav-col a:hover,
.footer-links a:hover {
    color: #B7E778;
    text-decoration: underline;
}

.contact-col {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-col a {
    color: #7DE2D1;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #7DE2D1;
    color: #0B3C3B;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
    background: #B7E778;
    color: #0B3C3B;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    color: #B7E778;
    font-size: 1rem;
    text-align: left;
}

.footer-bottom-bar {
    border-top: 1px solid #7DE2D1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.footer-links a {
    color: #7DE2D1;
    margin-right: 2rem;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

.footer-links a:last-child {
    margin-right: 0;
}

.footer-copyright {
    color: #fff;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 0;
    }

    .footer-col {
        margin-bottom: 1.5rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.faq-section {
    background: #F7F5EF;
    padding: 5rem 2rem 6rem 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-title {
    font-family: 'Aleo', serif;
    font-size: 2.8rem;
    color: #23423A;
    margin-bottom: 0.5rem;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-title {
    font-family: 'Aleo', serif;
    font-size: 2.8rem;
    color: #23423A;
    margin-bottom: 0.5rem;
}

.team-subtitle {
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 400;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #2C3E50;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #F7F5EF;
    border: 2px solid #23423A;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44, 66, 58, 0.04);
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
}

.faq-item.open {
    background: #D6E6F2;
    border-color: #23423A;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-family: 'Aleo', serif;
    font-size: 1.5rem;
    color: #23423A;
    text-align: left;
    padding: 2rem 4.5rem 2rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: color 0.2s;
}

.faq-icon {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    color: #23423A;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #23423A;
    border-radius: 50%;
    background: #F7F5EF;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.faq-item.open .faq-icon {
    background: #D6E6F2;
    color: #23423A;
}

.faq-answer {
    font-size: 1.1rem;
    color: #2C3E50;
    padding: 0 2rem 2rem 2rem;
    display: none;
    animation: fadeIn 0.3s;
}

.faq-item.open .faq-answer {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 1rem 2rem 1rem;
        min-height: 420px;
    }

    .hero-content.left,
    .hero-illustration.right {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-illustration.right {
        margin-top: 2rem;
        justify-content: center;
    }

    .hero-bg-dots {
        left: -80px;
        top: 40px;
        width: 260px;
        height: 260px;
    }
}

.how-we-work-hero {
    background: #0B3C3B;
    color: #fff;
    padding: 5rem 2rem 2rem 2rem;
    text-align: center;
}

.how-we-work-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.how-we-work-title {
    font-family: 'Aleo', serif;
    font-size: 2.5rem;
    color: #23423A;
    margin-bottom: 0.5rem;
}

.how-we-work-subtitle {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 2rem;
}

.how-we-work-section {
    background: #F7F5EF;
    padding: 5rem 2rem 6rem 2rem;
    text-align: center;
}

.how-we-work-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.how-step {
    background: #fff;
    border: 2px solid #23423A;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44, 66, 58, 0.04);
    padding: 2.5rem 2rem;
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.how-step-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #7DE2D1;
    margin-bottom: 1rem;
}

.how-step-title {
    font-family: 'Aleo', serif;
    color: #23423A;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.how-step-desc {
    color: #2C3E50;
    font-size: 1rem;
}

.how-we-work-closing {
    font-size: 1.3rem;
    color: #23423A;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .how-we-work-steps {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .how-step {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* Pricing Section */
.pricing-section {
    background: #F7F5EF;
    padding: 5rem 2rem 6rem 2rem;
    margin-top: 4rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-title {
    font-family: 'Aleo', serif;
    font-size: 2.8rem;
    color: #23423A;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1.3rem;
    color: #2C3E50;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.pricing-card {
    background: #fff;
    border: 2px solid #23423A;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(44, 66, 58, 0.08);
}

.pricing-card.popular {
    border-color: #7DE2D1;
    background: linear-gradient(to bottom, #fff, #F7F5EF);
}

.popular-badge, .coming-soon-badge {
    background: #7DE2D1;
    color: #0B3C3B;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    display: inline-block;
    position: absolute;
    top: -12px;
    right: 2rem;
    letter-spacing: 0.5px;
    z-index: 2;
}

.pricing-label {
    font-family: 'Aleo', serif;
    font-size: 1.8rem;
    color: #23423A;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: #2C3E50;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    min-height: 3.3rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #23423A;
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 1rem;
    color: #5D6D7E;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #2C3E50;
    font-size: 1.1rem;
}

.pricing-features li::before {
    content: "✓";
    color: #7DE2D1;
    font-weight: bold;
    margin-right: 0.75rem;
}

.pricing-cta {
    margin-top: auto;
    text-align: center;
}

.pricing-cta .btn {
    width: 100%;
    text-align: center;
}

.pricing-note {
    font-size: 0.9rem;
    color: #5D6D7E;
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

/* Feature Details Section */
.feature-details {
    background: #fff;
    padding: 4rem 2rem;
}

.feature-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-detail-card {
    background: #F7F5EF;
    border: 2px solid #23423A;
    border-radius: 18px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(44, 66, 58, 0.08);
}

.feature-detail-card h3 {
    font-family: 'Aleo', serif;
    color: #23423A;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-detail-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-detail-card li {
    color: #2C3E50;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-detail-card li::before {
    content: "•";
    color: #7DE2D1;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

@media (max-width: 900px) {
    .feature-details-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 8rem 2rem 4rem;
    background: #F7F5EF;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(44, 66, 58, 0.08);
}

.legal-container h1 {
    font-family: 'Aleo', serif;
    font-size: 2.5rem;
    color: #23423A;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #5D6D7E;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.legal-content {
    color: #2C3E50;
}

.legal-content h2 {
    font-family: 'Aleo', serif;
    font-size: 1.8rem;
    color: #23423A;
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #23423A;
    margin: 1.5rem 0 1rem;
}

.legal-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.legal-content li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-content li::before {
    content: "•";
    color: #7DE2D1;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

.legal-content a {
    color: #7DE2D1;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: #B7E778;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .legal-section {
        padding: 6rem 1rem 2rem;
    }

    .legal-container {
        padding: 2rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.6rem;
    }

    .legal-content h3 {
        font-size: 1.3rem;
    }
}

/* Offset for anchor links to account for fixed header */
#about,
#features,
#feature-details,
#pricing,
#faq,
#screenshots,
#team,
#demo {
    scroll-margin-top: 100px;
}

/* Alternating section backgrounds */
.alt-bg-light {
    background: #F7F5EF !important;
}

.alt-bg-white {
    background: #fff !important;
}


h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.pricing-title,
.faq-title,
.how-we-work-title,
.feature-card h3,
.feature-detail-card h3,
.legal-container h1,
.legal-content h2,
.legal-content h3 {
    font-family: 'Aleo', serif;
}

body,
.legal-content p,
.feature-card p,
.feature-detail-card li,
.pricing-description,
.pricing-features li,
.faq-answer,
.how-step-desc,
.about p,
.benefit p {
    font-family: 'Inter', sans-serif;
}

/* Feature Carousel Styles */
.feature-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.feature-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    scroll-behavior: smooth;
}

.feature-card {
    min-width: 48%;
    max-width: 48%;
    flex: 0 0 48%;
    margin: 0 1%;
    transition: transform 0.3s;
}

.feature-carousel-arrow {
    background: #23423A;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.feature-carousel-arrow:hover {
    background: #7DE2D1;
    color: #23423A;
}

@media (max-width: 900px) {
    .feature-carousel {
        max-width: 400px;
    }

    .feature-card {
        min-width: 96%;
        max-width: 96%;
        flex: 0 0 96%;
        margin: 0 2%;
    }
}

/* Screenshot Carousel Styles */
.screenshot-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
    overflow: hidden;   
}

.screenshot-carousel {
    display: flex;
    gap: 0;                 /* ensure no column gap */
    width: 100%;
    transition: transform 450ms ease;
    will-change: transform;
    backface-visibility: hidden;
  }

.screenshot-slide {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    box-sizing: border-box;
    position: relative;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

.screenshot-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #23423A;
    color: #fff;
    border: 0;
    width: 48px; 
    height: 48px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(44,66,58,0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.2s ease;
  }
  
  .screenshot-carousel-arrow.left { left: 8px; }
  .screenshot-carousel-arrow.right { right: 8px; }
  

.screenshot-carousel-arrow:hover {
    background: #7DE2D1;
    color: #23423A;
    transform: translateY(-50%) scale(1.05);
}

.screenshot-slide img {
    display: block;         /* removes inline-image baseline gap */
    width: 100%;
    height: auto;
  }  

@media (max-width: 900px) {
    .screenshot-carousel-container {
        gap: 1rem;
    }
    
    .screenshot-carousel-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.8rem;
    }
    
    .screenshot-slide {
        padding: 0 0.5rem;
    }
}

.section-gap-top {
    margin-top: clamp(2rem, 6vw, 6rem);
    padding-top: clamp(2rem, 5vw, 5rem);
}

.section-gap-bottom {
    margin-bottom: clamp(2rem, 6vw, 6rem);
    padding-bottom: clamp(2rem, 5vw, 5rem);
}



.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 20px;
        background: white;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
        border: 1px solid #ccc;
        border-radius: 12px;
        display: none;
    }

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

.hero-image {
    width: auto;
    max-width: 400px;
    height: 100%;
    max-height: 600px;
    object-fit: contain;
    transform-origin: center;
}

@media (max-width: 900px) {
    .hero-image {
        max-width: 100%;
        max-height: 400px;
    }
}

/* Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-animate-delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
    transition-delay: 0.4s;
}

.scroll-animate-delay-5 {
    transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        transition: none;
    }
}

/* Mobile Nav Overlay */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .nav-links.show {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .nav-links.show a {
        font-size: 1.5rem;
        margin: 1rem 0;
        opacity: 0;
        animation: fadeInUp 0.5s ease forwards;
    }

    .nav-links.show a:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.show a:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.show a:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links.show a:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-links.show a:nth-child(5) {
        animation-delay: 0.5s;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === MOBILE HEADER FIX === */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links,
    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: block;
        font-size: 1.8rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--text-color);
        z-index: 1001;
    }

    .nav-container.open .nav-links,
    .nav-container.open .auth-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: fixed;
        top: 88px;
        left: 0;
        background: white;
        padding: 2rem 1rem;
        gap: 1.5rem;
        z-index: 1000;
    }

    .nav-container.open {
        flex-direction: column;
        align-items: flex-start;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* === FULLY RESPONSIVE HEADER (MOBILE + TABLET) === */
@media (max-width: 1024px) {
    .hamburger {
        display: block;
        font-size: 1.8rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--text-color);
        z-index: 1001;
    }

    .nav-links {
        display: none;
    }

    .nav-container.open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 88px;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem 1rem;
        z-index: 1000;
        gap: 1.5rem;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links a {
        font-size: 1.2rem;
        text-decoration: none;
        color: var(--text-color);
        padding: 0.5rem 0;
        transition: color 0.2s;
    }

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

/* Remove button styling from login/signup in hamburger menu */
@media (max-width: 1024px) {
    .nav-links a {
        all: unset;
        display: block;
        font-size: 1.2rem;
        color: var(--text-color);
        text-decoration: none;
        cursor: pointer;
        padding: 0.5rem 1rem;
        text-align: center;
    }

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

/* Coming Soon Badge */
.coming-soon-badge {
    background: #E86A33;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* Waitlist Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal-content {
    background: #fff;
    border-radius: 18px;
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 350px;
    width: 90vw;
    box-shadow: 0 8px 32px rgba(44,66,58,0.12);
    position: relative;
    text-align: center;
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}
.modal-close:hover {
    color: #E86A33;
}

/* Contact Page Modern Styles */
.contact {
    background: #fff;
    padding: 5rem 2rem 4rem 2rem;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.contact h2 {
    font-family: 'Aleo', serif;
    font-size: 2.2rem;
    color: #23423A;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-subtext {
    color: #2C3E50;
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
    text-align: center;
    max-width: 500px;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 2.5rem auto;
    background: #F7F5EF;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44, 66, 58, 0.06);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
}

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

.contact-form label {
    font-family: 'Aleo', serif;
    color: #23423A;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.7rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7DE2D1;
    box-shadow: 0 0 0 2px rgba(125, 226, 209, 0.12);
}

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

.button.primary, .contact-form button[type="submit"] {
    background: #5DC9B3;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.7rem 2.2rem;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 0.5rem;
    align-self: flex-end;
    box-shadow: 0 2px 8px rgba(44, 66, 58, 0.08);
}
.button.primary:hover, .contact-form button[type="submit"]:hover {
    background: #23423A;
    color: #fff;
}

.contact-details {
    margin-top: 1.5rem;
    text-align: center;
    color: #23423A;
    font-size: 1.08rem;
    line-height: 1.7;
}

.contact-details a {
    color: #5DC9B3;
    text-decoration: none;
    font-weight: 500;
}
.contact-details a:hover {
    text-decoration: underline;
    color: #23423A;
}

@media (max-width: 600px) {
    .contact {
        padding: 3rem 0.5rem 2rem 0.5rem;
    }
    .contact-form-wrapper {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .contact h2 {
        font-size: 1.4rem;
    }
    .contact-subtext {
        font-size: 0.98rem;
    }
}

.pricing-price {
    margin: 10px 0;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  .toggle-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .toggle-btn {
    padding: 8px 12px;
    border: 1px solid #ccc;
    background-color: white;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    min-width: 60px;
  }

  .toggle-btn.active {
    background-color: #006400;
    color: white;
    border-color: #006400;
  }

  /* Currency slider toggle */
  .pricing-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .currency-slider-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
  }

  .currency-label {
    min-width: 30px;
    text-align: center;
  }

  .currency-slider {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    cursor: pointer;
  }

  .currency-slider input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .currency-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #006400;
    border-radius: 12px;
    transition: 0.3s;
  }

  .currency-slider-track:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  }

  .currency-slider input:checked + .currency-slider-track {
    background-color: #4CAF50;
  }

  .currency-slider input:checked + .currency-slider-track:before {
    transform: translateX(26px);
  }
/* --- Hero media wrapper (video/image) --- */
.media-16x9 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid #23423A;
    background: #F7F5EF;
    box-shadow: 0 18px 48px rgba(44,66,58,.18); /* a little more presence */
    width: 100%;
    max-width: clamp(520px, 50vw, 900px); /* was 560px */

  }
  
  .media-16x9 iframe,
  .media-16x9 img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
  }
  
  /* Clickable fallback text shown before JS swaps in the iframe */
  .media-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-decoration: none;
    font-weight: 600;
    color: #23423A;
  }
  .media-fallback:hover { text-decoration: underline; }
  

  /* Founder section */
.founder-card.simple{
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 2rem;
    align-items: center;
  }
  
  .founder-media{
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f5f5;
  }
  .founder-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .founder-name{
    font-family: 'Aleo', serif;
    color: #23423A;
    font-size: 1.6rem;
    margin: 0;
  }
  .founder-title{
    color: #2C3E50;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .founder-bio{
    color: #2C3E50;
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
  }
  
  @media(max-width: 768px){
    .founder-card.simple{
      grid-template-columns: 1fr;
      text-align: center;
    }
    .founder-media{ max-width: 240px; margin: 0 auto; }
  }
    