/* Base Styles */
:root {
    --primary: #15b9c0;
    --primary-dark: #0d9ba2;
    --secondary: #142a44;
    --secondary-light: #203c5e;
    --text: #333333;
    --text-light: #ffffff;
    --bg: #f8f9fa;
    --bg-dark: #e9ecef;
    --accent: #f04668;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

.page-container {
    max-width: 100%;
    overflow: hidden;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--secondary);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

section {
    padding: 80px 5%;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn.large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Header Styles */
header {
    background-color: var(--text-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
}

.brand {
    color: var(--primary);
}

.domain {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--secondary);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

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

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

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

.menu-button {
    display: none;
    cursor: pointer;
}

.menu-button .bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: calc(100vh - 70px);
    padding: 80px 5%;
    background: linear-gradient(120deg, var(--bg) 50%, var(--bg-dark) 50%);
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text);
    max-width: 600px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image svg {
    max-width: 500px;
    height: auto;
}

/* Benefits Section */
.benefits {
    text-align: center;
    background-color: var(--text-light);
}

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

.benefit-card {
    background-color: var(--bg);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* How It Works Section */
.how-it-works {
    text-align: center;
    background-color: var(--bg);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--text-light);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--text-light);
    text-align: center;
}

.cta h2 {
    color: var(--text-light);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto 50px;
}

.testimonial {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    font-style: italic;
}

.testimonial p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.user {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 60px 5% 30px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-brand-text {
    margin-left: 15px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 5%;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 5%;
    }
    
    .menu-button {
        display: block;
        z-index: 101;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--text-light);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease-in-out;
        box-shadow: var(--shadow-md);
        z-index: 100;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .menu-button.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-button.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-button.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-brand {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .benefit-cards,
    .steps {
        gap: 20px;
    }
    
    .footer-links {
        gap: 30px;
    }
}
