:root {
    --primary-color: #1E293B;
    --primary-light: #334155;
    --accent-color: #D97706;
    --accent-hover: #B45309;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-dark: #0F172A;
    --text-muted: #475569;
    --border-color: #E2E8F0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
}

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

body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Header */
header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

nav a {
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-heading);
}

.nav-cta {
    background: var(--accent-color);
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Sections */
section {
    padding: 5rem 2rem;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98)), url('images/hero.jpg') no-repeat center center/cover;
    color: white;
    padding: 8rem 2rem;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: white;
}

/* Stats Section */
.stats {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.process-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    text-align: center;
}

.process-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Features (Asymmetric) */
.features-split {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.features-image {
    flex: 1 1 450px;
}

.features-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.features-content {
    flex: 1 1 450px;
}

.features-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.features-list i {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-top: 5px;
}

/* Pricing Card Component */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.recommended {
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: bold;
    border-radius: 20px;
}

.price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--accent-color);
}

/* Form Section */
.form-section {
    background: var(--primary-color);
    color: white;
}

.form-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--primary-light);
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    margin-top: 5px;
}

.form-checkbox a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Trust Layer (Global) */
.trust-layer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 2rem;
}

.trust-box {
    max-width: 1000px;
    margin: 0 auto;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

.trust-box h4 {
    margin-bottom: 0.5rem;
}

.trust-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: #0F172A;
    color: #94A3B8;
    padding: 4rem 2rem 2rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #1E293B;
    padding-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #94A3B8;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
    line-height: 1.5;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: bold;
    cursor: pointer;
}

.btn-cookie-deny {
    background: var(--border-color);
    color: var(--text-dark);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-heading);
    cursor: pointer;
}

/* Custom Decorative Element */
.svg-pattern {
    position: absolute;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 100 C 20 80, 40 80, 50 100 C 60 80, 80 80, 100 100' fill='none' stroke='%23E2E8F0' stroke-width='2'/%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Responsive design */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-color);
    }
    nav.active {
        display: block;
    }
    nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 15px;
    }
    .menu-toggle {
        display: block;
    }
    .pricing-card.recommended {
        transform: none;
    }
}