/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #2C3E50;
    line-height: 1.5;
}

:root {
    --primary-dark: #1A3B5C;
    --primary-gold: #E6A817;
    --gray-bg: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #5A6E7F;
    --white: #FFFFFF;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

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

/* ========== HEADER ========== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
}

.nav__list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav__list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.nav__list a:hover {
    color: var(--primary-gold);
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
}

.btn {
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn--small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn--large {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn--gold {
    background-color: var(--primary-gold);
    color: #1E2A3A;
}

.btn--gold:hover {
    background-color: #d49c0e;
    transform: scale(1.02);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* ========== HERO ========== */
.hero {
    padding: 60px 0;
    background: var(--gray-bg);
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero__content {
    flex: 1;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.highlight {
    color: var(--primary-gold);
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.hero__trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__image {
    flex: 1;
    background: #ddd;
    border-radius: 24px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image-placeholder {
    color: #888;
}

/* ========== MODAL (placeholder) ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal__content {
    background: white;
    padding: 32px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 24px;
    background: var(--gray-bg);
    border-radius: 20px;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 60px 0;
    background: var(--gray-bg);
}

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

.service-card {
    background: white;
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-quote-btn {
    width: 100%;
}

/* ========== HOW IT WORKS ========== */
.howitworks-section {
    padding: 60px 0;
    background: white;
}

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

.step-card {
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-dark);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.step-card p {
    color: var(--text-light);
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio-section {
    padding: 60px 0;
    background: var(--gray-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.portfolio-item {
    background: #ddd;
    border-radius: 16px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
}

.portfolio-more {
    text-align: center;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 60px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--gray-bg);
    border-radius: 20px;
    padding: 28px;
    font-style: italic;
}

.testimonial-card p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.client-name {
    font-weight: 600;
    color: var(--primary-gold);
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2a3f 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section .btn--gold {
    background: var(--primary-gold);
    color: var(--primary-dark);
    font-size: 1.2rem;
    padding: 14px 40px;
}

/* ========== FOOTER MODERN ========== */
.footer {
    background: var(--primary-dark);
    color: #e2e8f0;
    padding: 60px 0 30px;
    margin-top: 0;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer__logo-icon {
    font-size: 32px;
}

.footer__logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.footer__description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #cbd5e1;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s;
    color: white;
}

.social-link:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.footer__links,
.footer__contact {
    list-style: none;
    padding: 0;
}

.footer__links li,
.footer__contact li {
    margin-bottom: 12px;
}

.footer__links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.contact-icon {
    font-size: 1.1rem;
    min-width: 24px;
}

.footer__contact a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer__contact a:hover {
    color: var(--primary-gold);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
}

.footer__copyright {
    color: #94a3b8;
}

.footer__badges {
    display: flex;
    gap: 20px;
    color: #94a3b8;
}

.footer__badges span {
    font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav, .header__phone {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero__title {
        font-size: 2rem;
    }
    .hero__inner {
        flex-direction: column;
    }
    .hero__trust {
        flex-wrap: wrap;
        gap: 12px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .features-grid, .services-grid, .steps-grid, .portfolio-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .cta-section h2 {
        font-size: 1.5rem;
    }
    .footer {
        padding: 40px 0 20px;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer__badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    .footer__title::after {
        left: 0;
        right: auto;
    }
}