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

:root {
    --primary: #eb2525;
    --primary-dark: #af1e1e;
    --primary-light: #f63b3b;
    --gray-50: #f9fafb;
    --gray-100: #f6f3f3;
    --gray-200: #ebe5e5;
    --gray-300: #dbd1d1;
    --gray-600: #634b4b;
    --gray-700: #513737;
    --gray-800: #371f1f;
    --gray-900: #271111;
    --white: #ffffff;
    --red: #a31616;
    --red-50: #ffefef;
    --red-100: #fedbdb;
    --red-900: #8a1e1e;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-size {
    width: 100px;
    height: 60px;
}

.logo-text h1 {
    font-size: 1.125rem;
    color: var(--red-900);
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

nav a:hover {
    color: var(--primary);
    border-bottom: var(--primary) 2px solid;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    gap: 0.5rem;
}

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

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    border-bottom: 5px solid rgba(255, 255, 255, 0.694);
    border-right: 4px solid rgba(255, 255, 255, 0.698);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.141);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1rem;
}

.mobile-nav a {
    display: block;
    padding: 0.5rem 0;
    color: var(--gray-700);
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.254), rgba(255, 0, 0, 0.249));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    color: var(--white);
    padding: 2rem 0;
    margin-top: 10%;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 2px 4px 6px rgb(0, 0, 0);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--white);
    text-shadow: 2px 4px 6px rgb(0, 0, 0);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--red-100);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 1rem auto 0;
}

.bg-gray {
    background: var(--gray-50);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-card .description {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.checkmark {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.advantages {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.advantages h3 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
}

.advantage-item .icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.advantage-item h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.advantage-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.qualifications {
    margin-top: 2rem;
}

.qualification-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.qualification-item .icon {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.about-badge .number {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-badge .text {
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 2rem;
}

.pricing-card h3 {
    color: var(--red-900);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
}

.pricing-card li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.pricing-card li::before {
    content: "•";
    color: var(--primary);
    font-weight: 700;
    margin-top: 0.25rem;
}

.alert {
    background: var(--red-50);
    border: 1px solid var(--red-100);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 3rem;
}

.alert-content {
    color: var(--gray-700);
    font-size: 0.875rem;
}

.alert-content strong {
    display: block;
    margin-bottom: 0.5rem;
}

.cta-box {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--red-100);
    margin-bottom: 1.5rem;
}

.cta-box .btn {
    background: var(--white);
    color: var(--red-900);
}

.cta-box .btn:hover {
    background: var(--red-50);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 2rem;
}

.contact-card h3 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.contact-item .icon {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item .label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.contact-item .value {
    color: var(--gray-900);
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

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

.urgent-card {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.urgent-btn {
    width: 100%;
    background: var(--white);
    color: var(--red-900);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.urgent-btn:hover {
    background: var(--red-100);
    color: var(--red);
    border-color: var(--red-100);
}

.urgent-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.urgent-card p {
    color: var(--red-100);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-left: 10%;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: var(--white);
}

.footer-logo p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Icons */
.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.icon-lg {
    width: 40px;
    height: 40px;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.toast-description {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav.active {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    h2 {
        font-size: 1.875rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-badge {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 640px) {
    .header-phone-desktop {
        display: none;
    }
}