:root {
    --primary: #F8843F;
    --primary-dark: #e07335;
    --secondary: #7EACB5;
    --bg: #FFFFFF;
    --text: #1A1A1A;
    --text-muted: #555555;
    --white: #FFFFFF;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html,
body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #FFFFFF;
    overflow-x: hidden;
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.1;
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(248, 132, 63, 0.2);
}

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

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

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    left: 0;
}

.navbar .container {
    max-width: 100%;
    padding: 0 4rem;
}

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

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1.5px;
}

.logo-text span {
    color: var(--primary);
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

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

.nav-desktop-btn {
    display: block;
}

.mobile-only-btn {
    display: none;
    margin-top: 1rem;
    text-align: center;
}

.mobile-menu-close {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10003;
    /* Higher than .nav-links plus buffer */
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hamburger to X Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 1;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px);
}

/* Hero Section */
.hero {
    padding: 8rem 0 0rem;
    background-color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 1400px;
    width: 100%;
}

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

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    letter-spacing: -3px;
    line-height: 1;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.app-btn img {
    height: 52px;
    transition: var(--transition);
}

.app-btn:hover img {
    transform: translateY(-3px);
}

/* Marquee */
.marquee-container {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.chat-card {
    background: #FFFFFF;
    padding: 1.2rem 1.8rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    min-width: 360px;
    border: 1px solid #EAEAEA;
    box-shadow: none !important;
}

.avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: var(--primary);
}

.chat-text p {
    font-size: 1rem;
    margin: 0;
    color: #444;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.image-bg-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(248, 132, 63, 0.08) 0%, rgba(255, 255, 255, 0) 75%);
    z-index: -1;
    border-radius: 50%;
}

.hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: none;
    display: block;
}

/* Features Section */
.features {
    padding: 2rem 0;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    padding: 4rem 3rem;
    border-radius: 32px;
    background: #FFFFFF;
    transition: var(--transition);
    border: 1px solid #F0F0F0;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.feature-icon {
    margin-bottom: 2rem;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    filter: invert(58%) sepia(54%) saturate(702%) hue-rotate(344deg) brightness(99%) contrast(96%);
}

.feature-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

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

/* Detailed Features Section */
.features-detail {
    padding: 2rem 0;
    background: #fdfdfd;
}

.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-card h4::before {
    content: '✦';
    color: var(--primary);
}

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

/* Journey Section */
.journey {
    padding: 2rem 0;
    background-color: #fcfcfc;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 6rem;
    position: relative;
}

.journey-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(to right, #f8843f 0, #f8843f 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

.journey-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    border: 8px solid #fcfcfc;
}

.journey-step h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Trust Section */
.trust {
    padding: 7rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.trust-image img {
    width: 100%;
    border-radius: 40px;
}

.trust-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.trust-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.trust-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 800;
}

/* FAQ Section */
.faq {
    padding: 2rem 0;
    background: #fdfdfd;
}

/* Community & Notifications Layout Helper */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.community {
    padding: 2rem 0;
    background: white;
}

.notifications {
    padding: 2rem 0;
    background: #fcfcfc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #f0f0f0;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.faq-item p {
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    background: #111111;
    color: white;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    margin-top: 1rem;
    color: #888;
}

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

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    color: #444;
    font-size: 1rem;
    border-top: 1px solid #222;
    padding-top: 3rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 4rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-grid,
    .trust-grid,
    .section-split {
        gap: 4rem;
    }

    .trust-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .navbar .container {
        padding: 0 2rem;
    }

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

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

    .journey-grid {
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .container {
        padding: 0 1.5rem !important;
    }

    .hero-grid,
    .trust-grid,
    .section-split,
    .feature-grid,
    .features-detail-grid,
    .journey-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 3rem !important;
    }

    .hero-content,
    .hero-image-wrapper,
    .trust-content,
    .trust-image {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 2rem !important;
    }

    .hero-actions {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.2rem !important;
        margin-bottom: 4rem !important;
    }

    .app-btn img {
        height: 48px !important;
    }

    .mobile-hidden {
        display: none !important;
    }

    .marquee-container {
        margin: 0 auto !important;
        max-width: 100% !important;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 2rem;
        right: -100%;
        width: 90%;
        max-width: 320px;
        height: auto;
        min-height: auto;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 3.5rem 2rem 2.5rem;
        gap: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 10001;
    }

    .nav-links.active {
        right: 5%;
    }

    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: #f5f5f7;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
        color: var(--text);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .mobile-menu-close:hover {
        background: #e5e5e7;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-desktop-btn {
        display: none !important;
    }

    .mobile-only-btn {
        display: inline-block !important;
    }

    .logo-text {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .app-btn img {
        height: 44px !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }
}