@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --primary-color: #ff6a42;
    --primary-hover: #e0552f;
    --bg-color: #f5f2eb;
    --card-bg: #ffffff;
    --text-main: #1c1c1e;
    --text-muted: #8e8e93;
    --element-bg: #e9e5d9;
    --border-radius: 28px;
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: transparent;
    padding: 2.5rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 50px; /* Tighter logo, smaller height needed */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.2s;
}

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

.btn {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(255, 106, 66, 0.4);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 66, 0.5);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
    display: inline-block;
    margin-top: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 14rem 0 10rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 600;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Phone Mockup */
.phone-mockup {
    width: 440px;
    height: 900px;
    background-color: var(--bg-color);
    border: 18px solid #1c1c1e;
    border-radius: 58px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    padding: 0;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 35px;
    background-color: #1c1c1e;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: var(--card-bg);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.feature-card {
    padding: 3.5rem 3rem;
    background-color: var(--bg-color);
    border-radius: 36px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 12px 28px rgba(255, 106, 66, 0.3);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 600;
}

footer {
    background-color: #1c1c1e;
    color: #fff;
    text-align: center;
    padding: 4rem 0;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text p {
        margin: 0 auto 2.5rem;
    }
    nav ul {
        display: none;
    }
    .phone-mockup {
        width: 320px;
        height: 650px;
    }
}

/* Legal Pages */
.legal-content {
    padding: 12rem 0 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.legal-content > p:first-of-type {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content p, .legal-content ul {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-btn {
    background-color: #1c1c1e;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.store-btn:hover {
    transform: translateY(-2px);
    background-color: #000;
}

.store-btn .icon {
    font-size: 1.8rem;
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-text small {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    color: #ccc;
}

.store-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Steps Section */
.steps-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.steps-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    font-weight: 800;
}

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

.step-card {
    text-align: center;
    padding: 2rem;
}

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

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background-color: var(--element-bg);
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    font-weight: 800;
}

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

.testimonial-card {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background-color: var(--card-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    font-weight: 800;
}

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

.faq-item {
    background-color: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    padding: 8rem 0;
    text-align: center;
    color: white;
}

.cta-banner h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-banner p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}
