:root {
    --primary: #f97316;
    --primary-light: #fb923c;
    --primary-dark: #ea580c;
    --accent: #fdba74;
    --background: #fff7ed;
    --surface: #ffffff;
    --text: #1f2937;
    --text-secondary: #78716c;
    --border: #fed7aa;
    --info-bg: #ffedd5;
    --info-text: #c2410c;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(249, 115, 22, 0.2);
    --shadow: 0 8px 32px 0 rgba(234, 88, 12, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    background: rgba(255, 247, 237, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.lang-switch {
    font-size: 0.9rem;
    display: flex;
    gap: 0.5rem;
}

.lang-switch a {
    padding: 2px 8px;
    border-radius: 4px;
}

.lang-switch a.active {
    background: var(--primary);
    color: white;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text) !important;
    border: 2px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--info-bg);
    border-color: var(--primary);
}

.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Phone Mockup (Updated Colors) */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #444;
    /* Dark frame */
    border-radius: 40px;
    padding: 12px;
    margin: 0 auto;
    position: relative;
    border: 8px solid #222;
    box-shadow: 0 50px 100px -20px rgba(234, 88, 12, 0.2);
}

.phone-screen {
    background: var(--background);
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    background: var(--surface);
    padding: 2.5rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.phone-header .mock-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.search-bar-mock {
    background: var(--surface);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.phone-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.chat-item {
    display: flex;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.chat-item.active {
    background: var(--info-bg);
    border-color: var(--primary);
}

.chat-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 8px;
    flex-shrink: 0;
}

.chat-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    justify-content: center;
}

.line-1 {
    height: 6px;
    width: 80%;
    background: var(--text-secondary);
    border-radius: 4px;
    opacity: 0.4;
}

.line-2 {
    height: 6px;
    width: 60%;
    background: var(--text-secondary);
    border-radius: 4px;
    opacity: 0.2;
}

.chat-item.active .line-1 {
    background: var(--primary-dark);
    opacity: 0.8;
}

.phone-footer {
    padding: 1rem;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.export-btn-mock {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    padding: 10rem 5% 5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.store-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.store-badge {
    height: 48px;
    /* Slightly larger for better presence */
    width: auto;
    transition: transform 0.3s;
}

.gp-badge {
    height: 112px;
    /* Fine-tuned for perfect parity */
    margin-left: -21px;
    margin-top: -3.5px;
}

.store-badge:hover {
    transform: scale(1.05);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-element {
    position: absolute;
    background: var(--surface);
    padding: 0.75rem 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--border);
}

.badge-1 {
    top: -20px;
    left: -20px;
}

.badge-2 {
    bottom: 20px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Features */
.features {
    padding: 8rem 5%;
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--background);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper.orange {
    background: var(--info-bg);
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* How It Works */
.how-it-works {
    padding: 8rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* CTA */
.cta-banner {
    padding: 8rem 5%;
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 5rem 2rem;
    border-radius: 40px;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-primary.white {
    background: white;
    color: var(--primary-dark) !important;
}

.btn-primary.white:hover {
    background: var(--info-bg);
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 8rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    nav ul {
        display: none;
    }

    .hero-content p {
        max-width: 100%;
    }
}