:root {
    /* Color Palette - Same as app for consistency */
    --primary-color: #2596be;
    --primary-dark: #1e7a9c;
    --primary-light: #5dbbdd;
    --secondary-color: #e6f4f8;
    --text-color: #2c5f72;
    --text-light: #6c9caf;
    --white: #ffffff;
    --bg-light: #f7fbfc;

    /* Design Tokens */
    --font-main: 'Roboto', sans-serif;
    --font-title: 'Outfit', sans-serif;
    --radius-md: 20px;
    --radius-pill: 50px;
    --shadow-soft: 0 10px 30px rgba(37, 150, 190, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.05);
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-title);
    color: var(--primary-dark);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(37, 150, 190, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 150, 190, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

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

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.badge {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(37, 150, 190, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-family: var(--font-title);
}

.logo img {
    height: 40px;
}

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

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, #e6f7ff 0%, #f7fbfc 50%);
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

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

.floating-img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(37, 150, 190, 0.15);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: var(--shadow-soft);
    border-color: var(--secondary-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

/* How it works */
.how-it-works {
    padding: 100px 0;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Improved Feature Showcase */
.phone-showcase {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-frame {
    background: #000;
    border: 8px solid #1a1a1a;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 250px;
    height: 520px;
    position: relative;
    transition: var(--transition);
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-frame:hover {
    transform: translateY(-15px) rotateY(-5deg);
    box-shadow: 20px 40px 80px rgba(37, 150, 190, 0.2);
}

@media (max-width: 768px) {
    .phone-showcase {
        flex-direction: column;
    }

    .phone-frame {
        width: 220px;
        height: 460px;
    }
}

.steps {
    list-style: none;
    margin-top: 2rem;
}

.steps li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-num {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.steps h4 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.steps p {
    color: var(--text-light);
}

/* CTA */
.cta {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5rem;
    border-radius: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(37, 150, 190, 0.3);
}

.cta-box h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-box .btn-primary {
    background: var(--primary-dark);
    color: white;
    border: 2px solid white;
}

.cta-box .btn-primary:hover {
    background: white;
    color: var(--primary-dark);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #0d2b38;
    color: white;
}

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

.footer-info {
    max-width: 300px;
}

.footer-info .logo {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-content,
    .content-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        order: 1;
    }

    .how-it-works .image-box {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        gap: 0.5rem;
    }

    .nav-links .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hide-mobile {
        display: none;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .footer-info {
        max-width: 100%;
    }

    .footer-links {
        justify-content: center;
    }
}