/* Color Palette: Dark Grey, Signal Orange, Silver */
:root {
    --dark: #263238;
    --orange: #FF9800;
    --silver: #CFD8DC;
    --white: #FFFFFF;
    --text: #455A64;
    --bg-light: #F8F9FA;
    
    --font-head: 'Exo 2', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.way-header { background: var(--dark); padding: 15px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--orange); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.orange { color: var(--orange); }
.way-icon { color: var(--orange); margin-right: 5px; }

.way-nav a { margin-left: 25px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; color: #BBB; font-family: var(--font-head); }
.way-nav a:hover, .way-nav a.active { color: var(--orange); }

.btn-orange { background: var(--orange); color: var(--dark) !important; padding: 10px 20px; border-radius: 2px; }
.btn-orange:hover { background: var(--white); }

/* Mobile Menu */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { width: 25px; height: 3px; background: var(--orange); }

.mobile-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--dark); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s ease-in-out; }
.mobile-overlay.active { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; color: var(--white); background: none; border: none; font-size: 2.5rem; cursor: pointer; }
.mobile-overlay a { color: var(--white); font-family: var(--font-head); font-size: 2rem; margin: 15px 0; }

@media (max-width: 900px) {
    .way-nav { display: none; }
    .mobile-toggle { display: flex; }
}

/* Hero */
.hero-ind { height: 85vh; background-size: cover; background-position: center; position: relative; }
.hero-mask { width: 100%; height: 100%; background: rgba(38, 50, 56, 0.8); display: flex; align-items: center; }
.hero-content { color: var(--white); max-width: 750px; padding-left: 5%; }
.ind-tag { color: var(--orange); font-family: var(--font-head); font-weight: 700; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 20px; display: block; }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; color: #B0BEC5; margin-bottom: 40px; }

.btn-row { display: flex; gap: 15px; }
.btn-main { background: var(--orange); color: var(--dark); padding: 15px 35px; font-weight: 700; font-family: var(--font-head); }
.btn-outline { border: 2px solid var(--white); color: var(--white); padding: 13px 35px; font-weight: 700; }

/* Grid Services */
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--dark); }
.orange-bar { width: 60px; height: 5px; background: var(--orange); margin: 15px auto 0; }
.orange-bar.left { margin: 20px 0; }

.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.ind-card { background: var(--bg-light); padding: 40px 25px; text-align: center; border-radius: 4px; transition: 0.3s; border-bottom: 3px solid transparent; }
.ind-card:hover { transform: translateY(-10px); border-bottom-color: var(--orange); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.ind-card .icon { font-size: 3.5rem; margin-bottom: 20px; }
.ind-card h3 { font-family: var(--font-head); color: var(--dark); margin-bottom: 10px; }
.ind-card p { font-size: 0.95rem; color: #666; }

/* Data Strip */
.data-strip { background: var(--dark); color: var(--white); padding: 50px 0; border-top: 5px solid var(--orange); }
.strip-flex { display: flex; justify-content: space-around; text-align: center; }
.data-item strong { display: block; font-size: 3rem; color: var(--orange); font-family: var(--font-head); line-height: 1; }
.data-item span { font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; color: #AAA; }

/* About & Contact */
.about-split { display: grid; grid-template-columns: 1.2fr 1.1fr; gap: 60px; align-items: center; }
.text-side h1 { font-family: var(--font-head); font-size: 2.8rem; line-height: 1.2; color: var(--dark); }
.spec-list { list-style: none; margin-top: 30px; font-weight: 500; }
.spec-list li { margin-bottom: 10px; color: var(--dark); }
.img-side img { border-radius: 4px; border: 1px solid var(--silver); }

.contact-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--bg-light); padding: 50px; }
.contact-info h2 { font-family: var(--font-head); color: var(--dark); }
.data-group { margin-top: 30px; border-left: 3px solid var(--orange); padding-left: 20px; }
.data-group p { margin-bottom: 10px; }

.ind-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.ind-form input, .ind-form select, .ind-form textarea { width: 100%; padding: 15px; border: 1px solid #DDD; font-family: var(--font-body); }
.ind-form select { margin-bottom: 20px; }
.btn-submit { width: 100%; background: var(--dark); color: var(--orange); border: none; padding: 15px; font-weight: 700; font-family: var(--font-head); cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }
.btn-submit:hover { background: var(--orange); color: var(--dark); }

/* References & Legal */
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.ref-card { background: var(--white); border: 1px solid #EEE; padding: 30px; border-top: 5px solid var(--dark); }
.ref-card.highlight { border-top-color: var(--orange); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.ref-card h3 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 15px; color: var(--dark); }
.ref-card strong { display: block; margin-top: 15px; font-size: 0.8rem; color: #AAA; }

.legal-content { max-width: 800px; margin: 0 auto; background: var(--bg-light); padding: 50px; }
.legal-content h1 { font-family: var(--font-head); color: var(--dark); }
.legal-content h3 { color: var(--orange); margin-top: 30px; font-family: var(--font-head); }

/* Footer */
.way-footer { background: var(--dark); color: #888; padding: 60px 0 20px; margin-top: 80px; }
.footer-layout { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #37474F; padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { color: var(--white); font-family: var(--font-head); font-size: 1.5rem; }
.f-links a { color: var(--orange); margin-left: 20px; font-weight: 700; font-family: var(--font-head); }
.copyright { text-align: center; font-size: 0.85rem; opacity: 0.7; }

/* Cookie */
.cookie-ind { position: fixed; bottom: 20px; left: 20px; background: var(--white); border-left: 5px solid var(--orange); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 20px; z-index: 3000; display: none; }
.cookie-ind.active { display: flex; }
.cookie-ind button { background: var(--dark); color: var(--orange); border: none; padding: 8px 20px; font-weight: 700; cursor: pointer; }

@media (max-width: 900px) {
    .ind-grid, .about-split, .contact-box, .ref-grid, .ind-form .form-row, .strip-flex { grid-template-columns: 1fr; }
    .hero-content { padding-right: 5%; text-align: center; padding-left: 5%; }
    .btn-row { justify-content: center; }
    .footer-layout { flex-direction: column; text-align: center; gap: 20px; }
    .strip-flex { gap: 30px; }
}