:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #b45309;
    --accent-hover: #92400e;
    --text: #334155;
    --text-light: #f8fafc;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --border: #cbd5e1;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg-white);
    line-height: 1.6;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    z-index: 1000;
    transition: top 0.2s;
}

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

header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
}

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

nav ul a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

main {
    min-height: 60vh;
}

.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('images/hero.jpg') no-repeat center center/cover;
    color: var(--text-light);
    padding: 120px 20px;
    text-align: center;
}

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

.hero h1 {
    color: var(--text-light);
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

.section {
    padding: 80px 20px;
}

.section-alt {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

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

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
}

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

.stat-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-bottom: 4px solid var(--accent);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

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

.step-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}

.step-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 36px;
    font-weight: bold;
    color: var(--bg-light);
}

.step-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
}

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

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

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

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

.service-content {
    padding: 25px;
}

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

.features-block {
    display: flex;
    align-items: center;
    gap: 50px;
}

.features-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.features-image img {
    width: 100%;
    height: auto;
    display: block;
}

.features-text {
    flex: 1;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.features-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent);
}

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

.price-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
}

.price-card.popular {
    border: 2px solid var(--accent);
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(180,83,9,0.15);
}

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

.price-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
}

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

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

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

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

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

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

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 10px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.accordion-content p {
    padding: 0 10px 20px 10px;
}

.trust-layer {
    background: #0b0f19;
    color: #94a3b8;
    padding: 40px 20px;
    font-size: 13px;
    border-top: 1px solid #1e293b;
}

.trust-layer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-title {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 5px;
}

footer {
    background: #020617;
    color: #64748b;
    padding: 30px 20px;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #0f172a;
}

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

.footer-nav a {
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: #0f172a;
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

.btn-cookie-deny {
    background: transparent;
    border: 1px solid white;
    color: white;
}

/* Page styles for auxiliary pages */
.page-header {
    background: var(--primary-light);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    color: white;
}

.legal-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.legal-content p, .legal-content ul {
    margin-bottom: 20px;
}

.legal-content ul {
    padding-left: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Custom visual asset background pattern on Index main */
.custom-pattern {
    background-image: radial-gradient(var(--accent) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.15;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 20px;
        gap: 15px;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .burger-menu {
        display: block;
    }
    
    .features-block {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
    
    .price-card.popular {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}