/* Hero Section Styles */
.hero-section {
    position: relative;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    padding-top: 5rem;
    overflow: hidden;
}

/* .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
} */

.bg-blur-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: rgba(99, 102, 241, 0.1);
    filter: blur(120px);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.bg-blur-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: rgba(139, 92, 246, 0.1);
    filter: blur(120px);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite reverse;
}

.dot-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    flex: 1;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #4f46e5;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.sparkles-icon {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #0f172a;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
        line-height: 1.05;
        margin-bottom: 2rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 28rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        width: auto;
    }
}

.btn-primary {
    padding: 1rem 2rem;
    background: #4f46e5;
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 15px -3px rgba(79, 70, 229, 0.1),
        0 4px 6px -2px rgba(79, 70, 229, 0.1);
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .btn-primary {
        width: auto;
    }
}

.btn-primary:hover {
    background: #4338ca;
    transform: scale(1.05);
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(0.25rem);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: white;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
    width: 100%;
    display: inline-block;
}

@media (min-width: 768px) {
    .btn-secondary {
        width: auto;
    }
}

.btn-secondary:hover {
    background: #f8fafc;
}

.hero-image-container {
    position: relative;
    display: none;
}

@media (min-width: 768px) {
    .hero-image-container {
        display: block;
    }
}

.hero-image-wrapper {
    position: relative;
    z-index: 10;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: white;
}

.hero-image {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.7s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
}

.floating-card {
    position: absolute;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: -2.5rem;
    right: -2.5rem;
    animation-delay: 0s;
}

.card-2 {
    bottom: -2.5rem;
    left: -2.5rem;
    animation-delay: 1s;
}

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

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #4f46e5;
}

.card-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
}

/* Trusted Section */
.trusted-section {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    background: rgba(248, 250, 252, 0.5);
    padding: 4rem 0;
    overflow: hidden;
}

.trusted-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.trusted-label {
    text-align: center;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 3rem;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0.5;
    transition: opacity 0.7s ease;
}

.brand-logos:hover {
    opacity: 1;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
}

.brand-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #4f46e5;
    transition: transform 0.3s ease;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #0f172a;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 0;
        transform: translateY(0);
    }
}

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

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    color: #0f172a;
    background: #fdfdfd;
}

/* Dark Mode Overrides */
body.dark-mode .hero-title {
    color: var(--dark-heading);
}
body.dark-mode .hero-description {
    color: var(--dark-desc);
}
body.dark-mode .btn-secondary {
    background: var(--dark-bg-secondary);
    border-color: var(--dark-border);
    color: var(--dark-heading);
}
body.dark-mode .btn-secondary:hover {
    background: var(--dark-bg-tertiary);
}
body.dark-mode .hero-image-wrapper {
    background: var(--dark-bg-secondary);
    border-color: var(--dark-border);
}
body.dark-mode .floating-card {
    background: rgba(17, 24, 39, 0.9);
    border-color: var(--dark-border);
}
body.dark-mode .card-value {
    color: var(--dark-heading);
}
body.dark-mode .trusted-section {
    background: var(--dark-bg-tertiary);
    border-color: var(--dark-border);
}
body.dark-mode .brand-name {
    color: var(--dark-heading);
}

