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

:root {
    --primary-color: #1B5A96;
    --primary-dark: #0F3E6B;
    --primary-light: #5CAAD7;
    --secondary-color: #5CAAD7;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --gradient-primary: linear-gradient(135deg, #5CAAD7 0%, #1B5A96 100%);
    --gradient-secondary: linear-gradient(135deg, #1B5A96 0%, #5CAAD7 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease-in;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
    font-weight: 600;
}

.btn-primary:hover {
    background: #0A2E50;
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: white;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.125rem;
    height: 4.5rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0 8rem 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(92, 170, 215, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(27, 90, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(92, 170, 215, 0.06) 0%, transparent 65%),
        linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(241, 245, 249, 1) 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background:
        radial-gradient(circle at 70% 20%, rgba(92, 170, 215, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 30% 60%, rgba(27, 90, 150, 0.08) 0%, transparent 45%);
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(27, 90, 150, 0.1) 20%,
        rgba(92, 170, 215, 0.2) 50%,
        rgba(27, 90, 150, 0.1) 80%,
        transparent 100%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -15px) rotate(1deg); }
    50% { transform: translate(-10px, 10px) rotate(-1deg); }
    75% { transform: translate(10px, -5px) rotate(0.5deg); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-logo {
    animation: fadeInUp 0.8s ease;
    margin-bottom: 0;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    max-width: 540px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease 0.1s both;
    text-align: center;
    letter-spacing: -0.02em;
    max-width: 900px;
}

.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin: -0.5rem 0 0 0;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
    animation: fadeInUp 0.8s ease 0.5s both;
    text-align: left;
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    width: 100%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Form */
.hero-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 700px;
    box-shadow: var(--shadow-xl);
}

.hero-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    text-align: center;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-form-row {
    display: flex;
    gap: 1rem;
}

.hero-form-input {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.hero-form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 90, 150, 0.1);
}

.hero-form .btn-primary {
    flex: 0 0 auto;
    min-width: 180px;
    background: var(--primary-dark);
    color: white;
    font-weight: 700;
}

.hero-form .btn-primary:hover {
    background: #0A2E50;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    animation: fadeInUp 0.8s ease 0.4s both;
    margin-top: -1rem;
}

.cta-note {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Removed floating cards for cleaner design */

/* Video Player */
.video-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    animation: fadeInUp 0.8s ease 0.3s both;
    transition: transform 0.1s ease-out;
    will-change: transform;
    width: 100%;
    max-width: 900px;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    border-radius: 20px;
}

.video-player:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Screenshots Section */
.screenshots-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.screenshot-showcase {
    margin-top: 3rem;
}

.screenshot-main {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 3rem;
}

.screenshot-main .screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    padding: 2rem;
}

.screenshot-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.screenshot-caption p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.screenshot-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.screenshot-item .screenshot-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
}

.screenshot-item h4 {
    font-size: 1.125rem;
    margin: 1.5rem 1.5rem 0.75rem;
    color: var(--primary-dark);
}

.screenshot-item p {
    color: var(--text-light);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 10rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.15s ease-in;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Benefits Section */
.benefits {
    padding: 10rem 0;
    background: var(--text-dark);
}

.benefits .section-title {
    color: white;
}

.benefits .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-item {
    text-align: left;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-light);
    background: rgba(92, 170, 215, 0.15);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 1rem;
    flex-grow: 1;
}

/* How It Works Section */
.how-it-works {
    padding: 10rem 0;
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4rem;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -32px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: white;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(27, 90, 150, 0.25);
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.15s ease-in;
}

.step-content:hover {
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

.step-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.process-connector {
    display: none;
}

/* CTA Section */
.cta-section {
    padding: 10rem 0;
    background: var(--primary-dark);
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-button-wrapper {
    margin: 3rem 0 2rem;
}

.cta-button-wrapper .btn-primary {
    background: white;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.cta-button-wrapper .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.cta-form .btn-primary {
    background: white;
    color: var(--primary-dark);
    font-weight: 700;
}

.cta-form .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

/* Extended Form */
.cta-form-extended {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-input {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
}

.form-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    border-color: white;
}

.cta-form-extended .btn-primary {
    flex: 0 0 auto;
    min-width: 150px;
    background: white;
    color: var(--primary-dark);
    font-weight: 700;
}

.cta-form-extended .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.email-input {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.email-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0F3E6B 0%, #1B5A96 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 75px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    opacity: 0.95;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
        max-width: 150px;
    }

    .footer-logo-img {
        height: 50px;
        max-width: 160px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 4rem 0 5rem 0;
        min-height: auto;
    }

    .features,
    .benefits,
    .how-it-works,
    .cta-section {
        padding: 5rem 0;
    }

    .hero-content {
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .hero-logo-img {
        height: 80px;
        max-width: 360px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .hero-tagline {
        font-size: 1rem;
        margin-top: -0.25rem;
    }

    .video-wrapper {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        max-width: 100%;
    }


    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        grid-auto-rows: auto;
    }

    .benefit-item {
        padding: 2rem;
        max-width: 100%;
    }


    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }

    .process-step:not(:last-child)::after {
        left: 28px;
        top: 72px;
    }

    .step-content {
        padding: 1.5rem;
        max-width: 100%;
    }

    .step-content h3 {
        font-size: 1.25rem;
        word-wrap: break-word;
    }


    .cta-content {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .form-row {
        flex-direction: column;
    }

    .form-input {
        padding: 0.75rem 1rem;
    }

    .cta-form-extended .btn-primary {
        width: 100%;
    }

    .hero-form-row {
        flex-direction: column;
    }

    .hero-form-input {
        padding: 0.75rem 1rem;
    }

    .hero-form .btn-primary {
        width: 100%;
    }

    .hero-form-wrapper {
        margin: 1.5rem 0;
        padding: 1rem;
        max-width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Devices (320px - 380px) */
@media (max-width: 380px) {
    .container {
        padding: 0 16px;
    }

    .hero-logo-img {
        height: 60px;
        max-width: 280px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7vw, 1.75rem);
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 1.75rem);
    }

    .hero-form-wrapper {
        padding: 0.875rem;
    }

    .hero-form-input,
    .form-input {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }

    .benefit-item,
    .step-content {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }
}