:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #d97706;
    --accent-hover: #b45309;
    --text: #334155;
    --text-light: #64748b;
    --bg: #f8fafc;
    --bg-card: #ffffff;
    --border: #e2e8f0;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 700;
}

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

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    z-index: 9999;
    font-weight: bold;
    border-radius: 4px;
}

.skip-link:focus {
    top: 10px;
}

header {
    background-color: var(--primary);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.logo-text {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

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

nav ul li a {
    color: #cbd5e1;
    font-weight: 500;
}

nav ul li a:hover {
    color: white;
}

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

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

.burger {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

.hero {
    padding: 80px 5% 120px 5%;
    background-color: var(--primary-light);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    color: #cbd5e1;
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

.hero-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stats {
    background: white;
    padding: 40px 5%;
    margin-top: -60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
}

.step-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.principles {
    background-color: var(--primary);
    color: white;
}

.principles h2 {
    color: white;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.principle-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
}

.principle-item i {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.features-img img {
    width: 100%;
    border-radius: 12px;
}

.features-list {
    list-style: none;
}

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

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.15);
}

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

.price {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.pricing-features i {
    color: green;
}

.form-section {
    background-color: var(--primary-light);
    color: white;
}

.form-section h2 {
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    color: var(--text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.faq-teaser-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
    border-top: 1px solid var(--border);
}

.trust-layer {
    background-color: #f1f5f9;
    padding: 40px 5%;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-layer h4 {
    margin-bottom: 10px;
}

footer {
    background-color: var(--primary);
    color: #cbd5e1;
    padding: 40px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #cbd5e1;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 12px;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-content {
    flex: 1;
    font-size: 0.9rem;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

@media (max-width: 1024px) {
    .hero, .steps, .services-grid, .principles-grid, .pricing-grid, .features {
        grid-template-columns: 1fr;
    }
    .stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: var(--primary-light);
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    nav ul.active {
        display: flex;
    }
    .burger {
        display: block;
    }
    .stats {
        grid-template-columns: 1fr;
    }
}