﻿

:root {
    --dark: #0f172a;
    --teal: #14b8a6;
    --emerald: #10b981;
    --sky: #0ea5e9;
    --amber: #f59e0b;
    --rose: #f43f5e;
    --text: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
}

/* Animated Background */
@keyframes float {
    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Hero with Floating Cards */
.hero-wrapper {
    padding: 70px 40px 70px;
    background: linear-gradient(180deg,#fff 0%,#f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

    .hero-wrapper::before {
        content: '';
        position: absolute;
        top: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,rgba(20,184,166,0.08),transparent);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .hero-wrapper::after {
        content: '';
        position: absolute;
        bottom: -150px;
        right: -150px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,rgba(14,165,233,0.08),transparent);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite reverse;
    }

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.hero-main-title {
    font-family: 'Inter',serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 28px;
}

.gradient-word {
    background: linear-gradient(135deg,#14b8a6,#0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 48px;
}

.hero-action-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn-large-primary {
    padding: 18px 48px;
    background: linear-gradient(135deg,#14b8a6,#0ea5e9);
    color: #fff;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(20,184,166,0.3);
}

    .btn-large-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(20,184,166,0.4);
    }

.btn-large-secondary {
    padding: 16px 44px;
    background: #fff;
    color: var(--dark);
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid var(--border);
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

    .btn-large-secondary:hover {
        border-color: var(--teal);
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }

/* Floating Feature Cards */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.floating-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

    .floating-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }

.card-emoji {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Info Section with Asymmetric Grid */
.info-section {
    padding: 50px 40px;
    background: #fff;
}

.info-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: center;
}

.info-left {
    position: sticky;
    top: 120px;
}

.label-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg,#fed7aa,#fbbf24);
    color: #78350f;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.big-title {
    font-family: 'Inter',serif;
    font-size: 35px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 28px;
}

.lead-text {
    font-size: 18px;
    color: var(--text);
    line-height: 1.75;
}

.info-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-block {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    transition: 0.3s;
}

    .info-block:hover {
        background: #fff;
        box-shadow: 0 8px 32px rgba(0,0,0,0.06);
        transform: translateX(10px);
    }

    .info-block h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 16px;
    }

    .info-block p {
        font-size: 15px;
        color: var(--text);
        line-height: 1.75;
    }

/* Benefits with Icons */
.benefits-area {
    padding: 50px 40px;
    background: linear-gradient(180deg,#f0f9ff,#fff);
}

.benefits-wrap {
    max-width: 1300px;
    margin: 0 auto;
}

.center-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.benefit-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 32px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

    .benefit-box::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,#14b8a6,#0ea5e9,#10b981);
        transform: scaleX(0);
        transform-origin: left;
        transition: 0.4s;
    }

    .benefit-box:hover::after {
        transform: scaleX(1);
    }

    .benefit-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    }

.benefit-emoji {
    font-size: 52px;
    margin-bottom: 24px;
    display: block;
}

.benefit-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.benefit-copy {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

/* Steps Section - Horizontal */
.steps-section {
    padding: 50px 0px 50px;
    background: #0a3a5a;
    position: relative;
}

.steps-container {
    max-width: 1400px;
    margin: 0 auto;
}

.steps-section .center-header {
    margin-bottom: 80px;
}

.steps-section .label-tag {
    background: rgba(251,191,36,0.2);
    color: #fbbf24;
}

.steps-section .big-title {
    color: #fff;
}

.horizontal-steps {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 0;
    position: relative;
    padding: 0 20px;
}

    .horizontal-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 80px;
        right: 80px;
        height: 2px;
        background: rgba(251,191,36,0.3);
        z-index: 0;
    }

.step-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter',serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 32px;
    transition: 0.3s;
}

.step-column:hover .step-circle {
    background: #fbbf24;
    color: #0a3a5a;
    transform: scale(1.1);
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.step-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 200px;
}

/* Final CTA */
.final-cta {
    padding: 120px 40px;
    background: linear-gradient(135deg,#1e2a44,#2d3e5f);
    position: relative;
    overflow: hidden;
}

    .final-cta::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle,rgba(20,184,166,0.15),transparent);
        border-radius: 50%;
    }

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

    .cta-content h2 {
        font-family: 'Inter',serif;
        font-size: 3.6rem;
        font-weight: 900;
        color: #fff;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .cta-content p {
        font-size: 19px;
        color: rgba(255,255,255,0.9);
        margin-bottom: 40px;
        line-height: 1.7;
    }

.btn-cta-white {
    padding: 18px 48px;
    background: #fff;
    color: #1e2a44;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

    .btn-cta-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        background: #f8fafc;
    }


/* FAQ Section */
.faq-section {
    padding: 100px 40px;
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-family: 'Inter',serif;
    font-size: 3rem;
    font-weight: 900;
    color: #0a3a5a;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 17px;
    color: var(--text-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

    .faq-item:first-child {
        border-top: 1px solid var(--border);
    }

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: 0.2s;
}

    .faq-question-btn:hover {
        color: #14b8a6;
    }

.faq-q-text {
    font-size: 17px;
    font-weight: 600;
    color: #0a3a5a;
    flex: 1;
}

.faq-question-btn:hover .faq-q-text {
    color: #14b8a6;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-toggle-icon svg {
    width: 20px;
    height: 20px;
    fill: #0a3a5a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    padding: 0 0 28px 0;
}


/* Responsive */
@media(max-width:1024px) {
    .feature-cards-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .info-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .info-left {
        position: static;
    }

    .benefits-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {
    .horizontal-steps {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0;
    }

        .horizontal-steps::before {
            display: none;
        }

    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .big-title {
        font-size: 30px;
    }

    .feature-cards-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-steps {
        grid-template-columns: repeat(3,1fr);
        gap: 35px;
        padding: 5px;
    }

        .horizontal-steps::before {
            display: none;
        }

    .step-circle {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .step-desc {
        max-width: 100%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
