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

:root {
    --red: #e02020;
    --red-dark: #b91a1a;
    --dark: #0f0f0f;
    --dark2: #1a1a1a;
    --dark3: #242424;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
    --text: #1f2937;
    --text-light: #6b7280;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

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

/* HEADER */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: padding 0.3s;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}
.logo-icon { font-size: 1.4rem; color: var(--red); }
.logo-text strong { color: var(--red); }
.logo-img { height: 68px; width: auto; display: block; }
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav a:hover { color: var(--white); }
.btn-nav {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
}
.btn-nav:hover { background: var(--red-dark) !important; }
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3) saturate(0.8);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15,15,15,0.95) 40%, rgba(15,15,15,0.4) 100%),
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(224,32,32,0.15) 0%, transparent 60%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224,32,32,0.15);
    border: 1px solid rgba(224,32,32,0.3);
    color: #ff6b6b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero h1 span { color: var(--red); }
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(224,32,32,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
}
.btn-full { width: 100%; }
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}
.stat span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header.left { text-align: left; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.55); }
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* SERVICES */
.services {
    padding: 100px 0;
    background: var(--gray-light);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1.5px solid transparent;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-card.featured {
    border-color: var(--red);
    background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
}
.service-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--red);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.service-img {
    margin: -36px -32px 24px;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.65;
}
.service-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-card ul li {
    font-size: 0.88rem;
    color: var(--text);
    padding-left: 18px;
    position: relative;
}
.service-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* GEOGRAPHY */
.geography {
    padding: 100px 0;
    background: var(--dark2);
}
.geo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.geo-card {
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
    background-color: var(--dark3);
    background-size: cover;
    background-position: center;
}
.geo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15,15,15,0.82) 0%, rgba(15,15,15,0.65) 100%);
    transition: background 0.3s;
}
.geo-card:hover::before { background: linear-gradient(160deg, rgba(15,15,15,0.72) 0%, rgba(180,20,20,0.35) 100%); }
.geo-card:hover {
    border-color: rgba(224,32,32,0.5);
    transform: translateY(-3px);
}
.geo-card > * { position: relative; z-index: 1; }
.geo-flag { font-size: 2rem; margin-bottom: 16px; }
.geo-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.geo-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
}
.geo-brands {
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ABOUT */
.about {
    padding: 100px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.feature strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}
.feature span {
    font-size: 0.88rem;
    color: var(--text-light);
}
.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-card {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
}
.about-card.accent {
    background: var(--dark);
    color: var(--white);
}
.about-card.accent div:last-child { color: rgba(255,255,255,0.5); }
.about-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: -1px;
    margin-bottom: 6px;
}
.about-card div:last-child {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* HOW IT WORKS */
.howto {
    padding: 100px 0;
    background: var(--gray-light);
}
.steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.step {
    flex: 1;
    padding: 32px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(224,32,32,0.15);
    margin-bottom: 16px;
    line-height: 1;
}
.step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.step p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}
.step-arrow {
    font-size: 1.5rem;
    color: var(--red);
    align-self: center;
    padding: 0 8px;
    flex-shrink: 0;
}

/* CONTACT */
.contact {
    padding: 100px 0;
    background: var(--dark);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.contact-info h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.contact-info > p {
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 40px;
}
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ci-icon {
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.contact-item a, .contact-item span {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}
.contact-item a:hover { color: var(--red); }

/* FORM */
.contact-form-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
}
.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #16a34a;
    font-weight: 700;
    margin: 0 auto 20px;
}
.form-success h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.form-success p {
    color: var(--text-light);
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}
.req { color: var(--red); }
.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(224,32,32,0.1);
}
.form-group textarea { resize: vertical; }
.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
}

/* FOOTER */
.footer {
    background: var(--dark2);
    padding: 60px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    margin-top: 16px;
    max-width: 260px;
    line-height: 1.6;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links strong {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}
.footer-links a, .footer-links span {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.25);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .services-grid,
    .geo-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps {
        flex-direction: column;
        gap: 16px;
    }
    .step-arrow { transform: rotate(90deg); align-self: center; }
    .about-visual { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .nav { display: none; }
    .nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--dark);
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 99;
    }
    .nav.open a { font-size: 1.3rem; }
    .burger { display: flex; z-index: 101; }
    .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .contact-form-wrap { padding: 28px 20px; }
    .reviews-grid { grid-template-columns: 1fr; }
}

/* REVIEWS */
.reviews {
    padding: 96px 0;
    background: var(--gray-light);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.review-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.review-card p {
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.7;
    flex: 1;
}
.review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-light);
}
.review-author strong {
    font-size: 0.9rem;
    color: var(--text);
}
.review-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* CONTACT MAP */
.contact-map iframe {
    border-radius: var(--radius);
}

/* FOOTER LEGAL */
.footer-legal {
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.25) !important;
    margin-top: 12px !important;
    line-height: 1.7 !important;
}
