/* Base Styles */
:root {
    --primary: #22c55e;       /* Green-500 */
    --primary-dark: #16a34a;  /* Green-600 */
    --primary-light: #4ade80; /* Green-400 */
    --secondary: #10b981;     /* Emerald-500 */
    --background: #ffffff;
    --background-alt: #f0fdf4; /* Green-50 */
    --text: #0f172a;          /* Slate-900 */
    --text-light: #475569;    /* Slate-600 */
    --text-lighter: #94a3b8;  /* Slate-400 */
    --border: #e2e8f0;        /* Slate-200 */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px rgba(34, 197, 94, 0.1);
    --shadow-lg: 0 10px 15px rgba(34, 197, 94, 0.1);
    --radius: 0.5rem;
    --radius-lg: 1rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--primary);
    display: block;
}

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

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Button Styles */
.primary-button, .secondary-button, .cta-button, .nav-button, .mobile-button {
    display: inline-block;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.primary-button {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

.primary-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: calc(0.875rem - 2px) calc(1.75rem - 2px);
}

.secondary-button:hover {
    background-color: var(--primary);
    color: white;
}

.nav-button {
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.nav-button:hover {
    background-color: var(--primary-dark);
    color: white;
}

.cta-button {
    background-color: white;
    color: var(--primary);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.2);
}

.mobile-button {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

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

.logo a {
    display: block;
}

.site-logo {
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

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

.desktop-nav ul li {
    margin-right: 2rem;
}

.desktop-nav ul li a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

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

.desktop-nav ul li a:hover {
    color: var(--primary);
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:first-child {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:last-child {
    bottom: 0;
}

.menu-toggle.active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    padding: 2rem 0;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0 1.5rem;
}

.mobile-nav ul li {
    margin-bottom: 1.5rem;
}

.mobile-nav ul li a {
    color: var(--text);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-color: var(--background-alt);
    z-index: 1;
    border-top-left-radius: 100% 40%;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.features h2 {
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.features h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 1px;
}

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

.feature-card {
    background-color: var(--background);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 0;
}

/* Advantages Section */
.advantages {
    padding: 5rem 0;
    background-color: var(--background);
}

.advantages .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.advantages-content {
    flex: 1;
}

.advantages-content h2 {
    margin-bottom: 2rem;
    text-align: left;
}

.advantages-list {
    list-style: none;
    margin-bottom: 2rem;
}

.advantages-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.advantages-list li svg {
    margin-right: 1rem;
    flex-shrink: 0;
}

.advantages-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
footer {
    background-color: var(--background);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 250px;
}

.footer-nav {
    display: flex;
    gap: 4rem;
}

.footer-links h3 {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-lighter);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero::before {
        width: 100%;
        border-top-left-radius: 0;
        height: 50%;
        top: auto;
        bottom: 0;
    }
    
    .advantages .container {
        flex-direction: column-reverse;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}
