/* General Styles */
:root {
    --primary-color: #4f46e5;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --dark-text: #0f172a;
    --light-text: #f8fafc;
    --muted-text: #475569;
    --background-light: #f8fafc;
    --card-background: #ffffff;
    --shadow-light: rgba(15, 23, 42, 0.08);
    --shadow-medium: rgba(15, 23, 42, 0.16);
    --shadow-deep: rgba(15, 23, 42, 0.3);
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--background-light);
    color: var(--dark-text);
    line-height: 1.7;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.08), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(6, 182, 212, 0.1), transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #eef2ff 55%, #f8fafc 100%);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1300px;
    margin: 0 auto;
    transition: padding 0.4s ease;
}

.main-header.scrolled .header-container {
    padding: 10px 24px;
}

.logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--light-text);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo span {
    font-size: 0.55em;
    vertical-align: super;
    margin-left: 2px;
    color: var(--secondary-color);
}

.header-cta .contact-btn {
    background: transparent;
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cta .contact-btn i {
    font-size: 1.1rem;
}

.header-cta .contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

/* Responsive Header */
@media (max-width: 600px) {
    .contact-text {
        display: none;
    }

    .header-cta .contact-btn {
        padding: 10px;
        width: 42px;
        height: 42px;
        justify-content: center;
        border-radius: 50%;
    }

    .header-cta .contact-btn i {
        margin: 0;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .header-container {
        padding: 12px 16px;
    }
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.25), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.4), transparent 45%),
        linear-gradient(135deg, #0f172a 0%, #111827 55%, #0b1120 100%);
    color: var(--light-text);
    padding: 140px 20px 120px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(0px);
    opacity: 0.5;
}

.hero-section::before {
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.35), transparent 70%);
}

.hero-section::after {
    bottom: -160px;
    left: -100px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.45), transparent 70%);
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95em;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.7);
}

.hero-section h1 {
    font-size: 4.8em;
    margin: 0;
    font-weight: 800;
    color: var(--light-text);
    animation: fadeIn 1s ease-out;
}

.hero-subtitle {
    font-size: 1.35em;
    margin: 0;
    color: rgba(248, 250, 252, 0.82);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(120deg, #f59e0b 0%, #f97316 100%);
    color: #0b1120;
    padding: 16px 34px;
    border: none;
    border-radius: 999px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.45);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.6);
}

.ghost-button {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.35);
    transition: all 0.3s ease;
}

.ghost-button:hover {
    background-color: rgba(248, 250, 252, 0.15);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.stat {
    background: rgba(248, 250, 252, 0.08);
    border: 1px solid rgba(248, 250, 252, 0.15);
    border-radius: 16px;
    padding: 18px 20px;
}

.stat-value {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--light-text);
}

.stat-label {
    font-size: 0.95em;
    color: rgba(248, 250, 252, 0.7);
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(14px);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.15);
    color: rgba(248, 250, 252, 0.8);
    font-weight: 600;
    font-size: 0.85em;
    margin-bottom: 20px;
}

.hero-card h2 {
    font-size: 2.2em;
    margin: 0 0 20px;
    color: var(--light-text);
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
    color: rgba(248, 250, 252, 0.85);
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05em;
}

.card-list i {
    color: #22d3ee;
}

.card-footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(248, 250, 252, 0.2);
}

.card-highlight {
    font-weight: 600;
    color: rgba(248, 250, 252, 0.75);
}

/* Features Section */
.features-section {
    padding: 110px 20px;
    text-align: center;
    background-color: var(--card-background);
}

.section-header {
    max-width: 720px;
    margin: 0 auto 60px;
}

.features-section h3 {
    font-size: 3.2em;
    margin: 0 0 16px;
    color: var(--dark-text);
}

.section-subtitle {
    margin: 0;
    color: var(--muted-text);
    font-size: 1.1em;
}

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

.feature-item {
    background: linear-gradient(160deg, #ffffff 0%, #f1f5ff 100%);
    padding: 34px;
    border-radius: 20px;
    box-shadow: 0 18px 40px var(--shadow-light);
    border: 1px solid rgba(79, 70, 229, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px var(--shadow-medium);
}

.feature-item .icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.6em;
    margin-bottom: 12px;
    color: var(--dark-text);
    font-weight: 700;
}

.feature-item p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--muted-text);
}

/* Call to Action Section */
.cta-section {
    padding: 110px 20px 120px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-radius: 28px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 25px 50px var(--shadow-light);
}

.cta-content {
    max-width: 620px;
}

.cta-section h2 {
    font-size: 2.6em;
    margin: 0 0 16px;
    font-weight: 800;
    color: var(--dark-text);
}

.cta-section p {
    margin: 0;
    color: var(--muted-text);
    font-size: 1.1em;
}

/* Footer */
footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    text-align: center;
    padding: 30px;
    font-size: 1em;
    box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: 4.2em;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 110px 20px 100px;
    }

    .hero-section h1 {
        font-size: 3.5em;
    }

    .hero-subtitle {
        font-size: 1.15em;
    }

    .features-section {
        padding: 90px 20px;
    }

    .features-section h3 {
        font-size: 2.8em;
    }

    .feature-item {
        padding: 28px;
    }

    .feature-item .icon {
        font-size: 2.6em;
    }

    .feature-item h4 {
        font-size: 1.4em;
    }

    .cta-section {
        padding: 90px 20px 100px;
    }

    .cta-card {
        padding: 40px 32px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.8em;
    }

    .hero-subtitle {
        font-size: 1.05em;
    }

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

    .features-section h3 {
        font-size: 2.4em;
    }

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

    .feature-item {
        padding: 24px;
    }

    .feature-item h4 {
        font-size: 1.3em;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .cta-card {
        align-items: stretch;
    }
}