:root {
    --primary-color: #00c292;
    --secondary-color: #02a8f3;
    --gradient-start: #02a8f3;
    --gradient-end: #00c292;
    --dark-bg: #0a1929;
    --medium-bg: #102a43;
    --light-bg: #1b4058;
    --text-light: #ffffff;
    --text-medium: rgba(255, 255, 255, 0.8);
    --text-dark: rgba(255, 255, 255, 0.6);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75em;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5em;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1em;
}

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

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

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: rgba(10, 25, 41, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
}

.logo-svg {
    fill: var(--text-light);
}

.logo-text {
    fill: var(--text-light);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* Main Content */
main {
    padding-top: 80px;
}

.hero {
    position: relative;
    padding: 100px 0 160px;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--medium-bg) 100%);
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero h1 span {
    display: block;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-medium);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: #fff;
    box-shadow: 0 5px 15px rgba(2, 168, 243, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 168, 243, 0.6);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: rgba(2, 168, 243, 0.1);
    transform: translateY(-3px);
    color: var(--text-light);
}

.wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.wave {
    fill: var(--medium-bg);
    opacity: 0.8;
}

.wave1 {
    fill: rgba(2, 168, 243, 0.2);
}

.wave2 {
    fill: rgba(2, 168, 243, 0.15);
}

.wave3 {
    fill: rgba(0, 194, 146, 0.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--medium-bg);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-bg {
    fill: var(--secondary-color);
    opacity: 0.15;
}

.feature-icon-path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.step-card {
    flex: 1;
    max-width: 300px;
    min-width: 250px;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.step-connector {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-path {
    stroke: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(2, 168, 243, 0.3);
}

.step-card h3 {
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.step-icon {
    margin: 0 auto;
}

.step-icon-bg {
    fill: var(--secondary-color);
    opacity: 0.15;
}

.step-icon-path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--medium-bg);
    position: relative;
    overflow: hidden;
}

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

.testimonial-card {
    position: absolute;
    width: 100%;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    justify-content: center;
}

.star-icon {
    fill: #ffc107;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    transition: var(--transition);
}

.accordion-icon-path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 20px 20px;
}

.accordion-content p {
    color: var(--text-dark);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

.decoration-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 1;
    opacity: 0.2;
}

.circle1 { animation: float 8s infinite ease-in-out; }
.circle2 { animation: float 12s infinite ease-in-out; }
.circle3 { animation: float 9s infinite ease-in-out; }
.circle4 { animation: float 11s infinite ease-in-out; }

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

/* Footer */
footer {
    background-color: var(--medium-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-branding {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-branding p {
    max-width: 300px;
    color: var(--text-dark);
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-logo-svg {
    fill: var(--text-light);
}

.footer-logo-text {
    fill: var(--text-light);
    font-size: 20px;
    font-weight: bold;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 160px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
    font-size: 0.9rem;
    position: relative;
}

.footer-favicon {
    margin: 15px auto 0;
}

.footer-icon {
    width: 32px;
    height: 32px;
}

.disclaimer {
    font-size: 0.8rem;
    max-width: 700px;
    margin: 15px auto 15px;
    opacity: 0.7;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .hero h1 span {
        font-size: 2.7rem;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: var(--medium-bg);
        flex-direction: column;
        transition: var(--transition);
        padding: 20px 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav li {
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 15px 30px;
    }
    
    nav a::after {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding: 80px 0 120px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .hero h1 span {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}
