/* Base Styles */
:root {
    --primary-color: #4361EE;
    --primary-dark: #3A56D4;
    --secondary-color: #4CC9F0;
    --accent-color: #F72585;
    --bg-color: #FFFFFF;
    --text-color: #333333;
    --text-light: #666666;
    --gray-light: #F5F7FA;
    --gray: #EAEDF2;
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #F44336;
    --border-radius: 1rem;
    --border-radius-lg: 1.5rem;
    --box-shadow: 0 10px 30px rgba(67, 97, 238, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
}

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

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Navigation */
header {
    background-color: var(--bg-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.25rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    max-width: 1400px;
    margin: 0 auto;
    transition: padding 0.3s ease;
}

header.scrolled nav {
    padding: 1.2rem 0;
}

.logo img {
    height: 48px;
}

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.cta-buttons {
    display: flex;
    gap: 1.25rem;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 64px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
    color: #ffffff;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-section .hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section h1 .highlight {
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.hero-section h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
}

.hero-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-section .hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-section .btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    color: var(--primary-color);
}

.hero-section .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #ffffff;
}

.hero-section .hero-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
    animation: float 6s ease-in-out infinite;
}

.hero-section .hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.hero-section .blob-animation {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: blobFloat 8s ease-in-out infinite;
    z-index: 0;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, -50%) scale(1);
    }
    50% {
        transform: translate(30px, -40%) scale(1.1);
    }
}

.hero-section .wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-section .wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.hero-section .wave-divider path {
    fill: var(--bg-color);
}

/* Responsive Hero Section */
@media (max-width: 992px) {
    .hero-section {
        padding: 64px 0 60px;
    }

    .hero-section .hero-image {
        width: 45%;
    }

    .hero-section .blob-animation {
        width: 400px;
        height: 400px;
        right: -100px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 48px 0 40px;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-section .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-section .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .hero-section .blob-animation {
        width: 300px;
        height: 300px;
        right: 50%;
        transform: translateX(50%) translateY(-50%);
    }

    .hero-section .wave-divider svg {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0 30px;
    }

    .hero-section .hero-image {
        max-width: 300px;
    }

    .hero-section .blob-animation {
        width: 200px;
        height: 200px;
    }

    .hero-section .wave-divider svg {
        height: 30px;
    }
}

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

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

.feature-card {
    padding: 2rem;
    background-color: var(--bg-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

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

.feature-card:nth-child(1) {
    --animation-order: 1;
}

.feature-card:nth-child(2) {
    --animation-order: 2;
}

.feature-card:nth-child(3) {
    --animation-order: 3;
}

.feature-card:nth-child(4) {
    --animation-order: 4;
}

.feature-card:nth-child(5) {
    --animation-order: 5;
}

.feature-card:nth-child(6) {
    --animation-order: 6;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--gray-light);
    border-radius: 50%;
    color: var(--primary-color);
}

.feature-icon i {
    font-size: 2rem;
}

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

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

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

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.step.animate {
    opacity: 1;
    transform: translateX(0);
}

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

.step-content {
    flex: 1;
}

.step-image {
    flex: 1;
    text-align: center;
}

.step-image img {
    max-width: 300px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

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

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    padding: 2rem;
    margin: 0 auto;
    background-color: var(--gray-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: opacity 0.5s ease;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-color);
    color: var(--primary-color);
    border: 1px solid var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Demo Request Section */
.demo-request {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.demo-request .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.demo-content h2 {
    margin-bottom: 1.5rem;
}

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

.demo-form {
    background-color: var(--bg-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.demo-form.animate {
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-success {
    text-align: center;
    padding: 2rem 0;
}

.form-success i {
    color: var(--success);
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Free Trial Section */
.free-trial {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.free-trial h2 {
    margin-bottom: 1.5rem;
}

.free-trial p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

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

.free-trial .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: #333333;
    color: white;
    padding-top: 4rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: white;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

/* Animation Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links,
    .cta-buttons {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-links.active,
    .cta-buttons.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section .container,
    .demo-request .container {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-section .hero-content {
        order: 1;
    }
    
    .hero-section .hero-image {
        order: 0;
        margin-bottom: 2rem;
    }
    
    .hero-section .hero-buttons {
        justify-content: center;
    }
    
    .step:nth-child(even),
    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Header CTA Buttons Specific Styles */
header .btn {
    font-size: 0.95rem;
    border-radius: calc(var(--border-radius) * 1.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

header .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

header .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.45);
}

header .btn-secondary {
    background-color: rgba(67, 97, 238, 0.05);
}

header .btn i {
    font-size: 0.9rem;
} 