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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e1e2a;
    background-color: #fefefe;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: #0a1927;
    color: #fff;
    padding: 20px 0;
    border-bottom: 4px solid #d4af37;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo h1 span {
    color: #d4af37;
}

.logo p {
    font-size: 0.85rem;
    color: #ccc;
}

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

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #d4af37;
}

.header-phone a {
    background: #d4af37;
    color: #0a1927;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0f2c26 0%, #08211c 100%);
    color: white;
    padding: 70px 0;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #d4af37;
}

/* Sections */
section {
    margin: 60px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0a1927;
    border-left: 6px solid #d4af37;
    padding-left: 18px;
}

h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: #1e3a32;
}

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

.service-card, .diff-card, .step-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid #e0e7e6;
}

/* FAQ */
.faq-item {
    margin-bottom: 30px;
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
}

/* Footer */
footer {
    background: #0a1927;
    color: #ddd;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: #d4af37;
    margin-bottom: 18px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    margin-top: 35px;
    border-top: 1px solid #2c3e3a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a1927;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1000;
    gap: 20px;
    border-top: 2px solid #d4af37;
}

.cookie-banner button {
    background: #d4af37;
    border: none;
    padding: 10px 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
}

@media (max-width: 800px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .hero h2 {
        font-size: 2rem;
    }
}