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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

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

/* HEADER */
.header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 32px;
    color: #f97316;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: #f97316;
}

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

.nav-list a {
    text-decoration: none;
    font-weight: 500;
    color: #334155;
    transition: 0.2s;
}

.nav-list a:hover {
    color: #f97316;
}

.phone-link {
    text-decoration: none;
    font-weight: 600;
    background: #f1f5f9;
    padding: 10px 20px;
    border-radius: 40px;
    color: #1e293b;
    transition: 0.2s;
}

.phone-link:hover {
    background: #f97316;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: #f97316;
    color: white;
    box-shadow: 0 4px 6px rgba(249,115,22,0.2);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316;
}

.btn-outline:hover {
    background: #fff7ed;
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* HERO */
.hero {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #fef9f4, #ffffff);
}

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

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}

.accent {
    color: #f97316;
}

.hero-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 28px;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
    color: #334155;
}

.hero-trust i {
    color: #f97316;
    margin-right: 6px;
}

.visual-card {
    background: #f1f5f9;
    border-radius: 32px;
    padding: 50px 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.visual-card i {
    font-size: 4rem;
    color: #f97316;
    margin-bottom: 16px;
}

.visual-card p {
    font-weight: 500;
    color: #475569;
}

/* ABOUT */
.about {
    padding: 80px 0;
    background: #fff;
}

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

.section-tag {
    display: inline-block;
    background: #fff7ed;
    color: #f97316;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.about-text p {
    color: #475569;
    margin-bottom: 24px;
}

.about-list {
    list-style: none;
    margin-bottom: 32px;
}

.about-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list i {
    color: #f97316;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.stat-card {
    background: #f8fafc;
    padding: 28px 20px;
    border-radius: 24px;
    text-align: center;
    flex: 1;
    font-weight: 500;
}

.stat-card span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 8px;
}

/* SERVICES */
.services {
    background: #fef9f4;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 2rem;
    margin-top: 8px;
}

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

.service-card {
    background: white;
    padding: 28px 24px;
    border-radius: 28px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #f97316;
}

.service-card i {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-card p {
    color: #475569;
}

/* TARIFFS */
.tariffs {
    padding: 80px 0;
    background: #fff;
}

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

.tariff-card {
    background: #f8fafc;
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    position: relative;
}

.tariff-card.popular {
    border: 2px solid #f97316;
    background: #ffffff;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: white;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tariff-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 24px;
}

.tariff-card ul {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
    padding-left: 8px;
}

.tariff-card li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.tariff-card li::before {
    content: "✓";
    color: #f97316;
    position: absolute;
    left: 0;
}

/* CONTACT */
.contact {
    background: #0f172a;
    color: white;
    padding: 80px 0;
}

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

.contact-info .section-tag {
    background: rgba(249,115,22,0.15);
    color: #f97316;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.contact-info p {
    color: #cbd5e1;
    margin-bottom: 32px;
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-details i {
    width: 24px;
    color: #f97316;
}

.contact-details a {
    color: white;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #1e293b;
    padding: 32px;
    border-radius: 32px;
}

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

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 16px;
    border: none;
    background: #0f172a;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid #334155;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #f97316;
}

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

.checkbox input {
    width: auto;
}

.checkbox a {
    color: #f97316;
    text-decoration: none;
}

.form-note {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 16px;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 48px 0 24px;
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.logo-footer span {
    color: #f97316;
}

.footer-brand p {
    line-height: 1.5;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: #f97316;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: #cbd5e1;
    font-size: 1.5rem;
    transition: 0.2s;
}

.social-icons a:hover {
    color: #f97316;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    font-size: 0.8rem;
}

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

.modal-content {
    background: white;
    max-width: 600px;
    width: 90%;
    padding: 32px;
    border-radius: 32px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    color: #1e293b;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #64748b;
}

.modal-close:hover {
    color: #f97316;
}

.modal-content h2 {
    margin-bottom: 20px;
}

.modal-content p {
    margin-bottom: 16px;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: white;
    z-index: 1500;
    padding: 16px 24px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-text i {
    font-size: 1.8rem;
    color: #f97316;
}

.cookie-text a {
    color: #f97316;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 32px 24px;
        transition: 0.3s;
        z-index: 99;
    }
    .nav-open {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .tariffs-grid {
        grid-template-columns: 1fr;
    }
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}