:root {
    --primary-orange: #e35205;
    --primary-dark: #222222;
    --text-grey: #555555;
    --light-bg: #f4f6f8;
    --white: #ffffff;
    --map-base: #dbeafe;
    --map-stroke: #ffffff;
    --map-hover: #93c5fd;
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', sans-serif; color: var(--primary-dark); line-height: 1.6; background-color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===================== HEADER ===================== */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0;
}
.logo img {
    height: 35px;
    width: auto;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
nav a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}
nav a:hover {
    color: var(--primary-orange);
}
.btn-quote {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s;
    white-space: nowrap;
}
.btn-quote:hover {
    background-color: #c04300;
}

/* ===================== HERO ===================== */
section { padding: 60px 0; }

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        to right,
        rgba(238, 242, 243, 1) 0%,
        rgba(238, 242, 243, 0.97) 30%,
        rgba(238, 242, 243, 0.85) 50%,
        rgba(238, 242, 243, 0.5) 70%,
        rgba(238, 242, 243, 0.15) 100%
    );
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}
.hero-left {
    flex: 1;
    max-width: 50%;
}
.hero h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--primary-dark);
}
.hero h2 {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-grey);
    margin-bottom: 20px;
}
.hero p {
    font-size: 15px;
    margin-bottom: 25px;
    color: #444;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-product-image {
    margin-top: 25px;
}
.hero-product-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
}

/* ===================== HERO FORM ===================== */
.hero-form-wrapper {
    flex: 0 0 400px;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.hero-form-wrapper h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-dark);
}
.hero-form-wrapper .form-subtitle {
    font-size: 13px;
    color: var(--text-grey);
    margin-bottom: 20px;
}
.hero-form .form-group {
    margin-bottom: 14px;
}
.hero-form .form-row {
    display: flex;
    gap: 12px;
}
.hero-form .form-row .form-group {
    flex: 1;
}
.hero-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}
.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
    background: #f9fafb;
}
.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
}
.hero-form textarea {
    height: 80px;
    resize: vertical;
}
.hero-form .btn-submit {
    width: 100%;
    padding: 13px;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 5px;
}
.hero-form .btn-submit:hover {
    background-color: #c04300;
}
.form-note {
    font-size: 11px;
    color: #999;
    margin-top: 10px;
    text-align: center;
}
.form-privacy {
    margin-bottom: 12px;
}
.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400 !important;
    color: #555;
    line-height: 1.5;
}
.privacy-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    accent-color: var(--primary-orange);
    cursor: pointer;
}
.privacy-label a {
    color: var(--primary-orange);
    text-decoration: underline;
}
.privacy-label a:hover {
    color: #c04300;
}

/* intl-tel-input overrides */
.iti { width: 100%; }
.iti__tel-input {
    width: 100%;
    padding: 10px 12px 10px 52px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
    background: #f9fafb;
}
.iti__tel-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
}

/* CTA Buttons */
.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s;
}
.cta-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    border: 2px solid var(--primary-orange);
}
.cta-primary:hover {
    background-color: #c04300;
    border-color: #c04300;
}
.cta-secondary {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}
.cta-secondary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}
.hero-cta-secondary {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.hero-cta-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* ===================== SECTORS ===================== */
.sectors-section { background: var(--white); }
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 700;
}
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.sector-item {
    padding: 20px 10px;
    transition: transform 0.3s;
}
.sector-item:hover {
    transform: translateY(-5px);
}
.sector-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 15px;
}
.sector-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

/* Product Family Section */
.product-family-section {
    background: var(--white);
    padding: 60px 0;
}
.product-family-desc {
    text-align: center;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-width: 750px;
    margin: -30px auto 40px;
}
.product-family-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 30px;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.product-family-grid li {
    font-size: 14px;
    color: #444;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    border-radius: 8px;
    font-weight: 500;
}
.product-family-grid li i {
    color: var(--primary-orange);
    font-size: 16px;
    flex-shrink: 0;
}
.product-family-cta {
    display: inline-block;
}

/* ===================== LOCAL INFO & MAP (2-column grid) ===================== */
.local-info {
    background: var(--light-bg);
    padding: 60px 0;
}
.local-info-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: stretch;
}
.info-text {
    max-width: 100%;
}
.info-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--primary-dark);
}
.info-text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}
.trust-block {
    border-left: 4px solid var(--primary-orange);
    padding-left: 15px;
    font-style: italic;
    color: #444;
    margin-top: 10px;
}
.info-machine-image {
    margin-top: 20px;
}
.info-machine-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}
.map-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
}
.osm-map-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
}
.osm-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 8px;
}
.map-caption {
    font-size: 14px;
    color: var(--primary-dark);
    font-style: normal;
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
}

/* ===================== PROVEN EQUIPMENT ===================== */
.proven-section {
    background: var(--white);
}
.proven-subtitle {
    text-align: center;
    color: var(--text-grey);
    font-size: 16px;
    margin-top: -30px;
    margin-bottom: 40px;
}
.proven-images {
    display: flex;
    justify-content: center;
}
.proven-card {
    position: relative;
    max-width: 700px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border: 1px solid #e5e7eb;
}
.proven-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.proven-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding: 30px 24px 20px;
}
.proven-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.2);
}
.proven-badge i {
    font-size: 22px;
    color: var(--primary-orange);
    background: rgba(255,255,255,0.2);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}
.proven-badge strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}
.proven-badge span {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 400;
}

/* ===================== OPTIONS ===================== */
.options-section {
    background: var(--light-bg);
}
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.option-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.option-icon {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 5px;
}
.option-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.option-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ===================== FOOTER FORM SECTION ===================== */
.footer-form-section {
    background: var(--primary-dark);
    padding: 70px 0;
}
.footer-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.footer-form-text {
    color: var(--white);
}
.footer-form-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.3;
}
.footer-form-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}
.footer-form-features {
    list-style: none;
    padding: 0;
}
.footer-form-features li {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-form-features li i {
    color: var(--primary-orange);
    font-size: 16px;
    flex-shrink: 0;
}
.footer-form-wrapper {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.footer-form-wrapper h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

/* ===================== FOOTER ===================== */
footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.6);
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
}
footer a {
    color: var(--primary-orange);
    text-decoration: none;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
    }
    .hero-content {
        flex-direction: column;
    }
    .hero-left {
        max-width: 100%;
    }
    .hero-form-wrapper {
        flex: auto;
        width: 100%;
    }
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(238, 242, 243, 0.95) 0%,
            rgba(238, 242, 243, 0.85) 100%
        );
    }
    .local-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .info-text {
        max-width: 100%;
    }
    .footer-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .proven-images {
        grid-template-columns: 1fr;
    }
    .product-family-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 28px; }
    .section-title { font-size: 24px; }
    .options-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .product-family-grid { grid-template-columns: 1fr; }
    nav ul { display: none; }
    .header-inner { flex-wrap: wrap; gap: 10px; }
    .logo { flex-grow: 1; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .cta-primary,
    .hero-buttons .cta-secondary { width: 100%; }
    .footer-form-text h3 { font-size: 24px; }
    .hero-form .form-row { flex-direction: column; gap: 0; }
}
