﻿:root {
    --primary: #070F2B;
    --primary-light: #1B264A;
    --secondary: #1B9C85;
    --accent: #FF9F29;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --font-head: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background-color: var(--primary); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.hidden { display: none !important; }
.text-center { text-align: center; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }

/* Buttons */
.btn-primary, .btn-accent, .btn-outline {
    display: inline-flex; justify-content: center; align-items: center; gap: 10px;
    border-radius: 8px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s;
}
.btn-primary { background: var(--secondary); color: #fff; }
.btn-primary:hover { background: #147B68; }
.btn-accent { background: var(--accent); color: #000; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.5px;}
.btn-accent:hover { background: #E88915; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 159, 41, 0.2); }
.btn-outline { background: transparent; border: 1px solid var(--text-muted); color: var(--text-main); }
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* Navbar */
.navbar { position: fixed; top:0; width: 100%; background: rgba(7, 15, 43, 0.95); backdrop-filter: blur(10px); z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 35px; }
.logo-text { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; }
.nav-links { display: flex; gap: 30px; align-items: center; font-size: 0.9rem; font-weight: 600; }
.nav-links a:not(.btn-primary):hover { color: var(--secondary); }

/* Hero */
.hero { position: relative; padding: 180px 0 100px; min-height: 90vh; display: flex; align-items: center; overflow: hidden;}
.hero-bg { position: absolute; top: -50%; right: -20%; width: 1000px; height: 1000px; background: radial-gradient(circle, rgba(27, 156, 133, 0.15) 0%, rgba(7, 15, 43, 0) 70%); z-index: -1; }
.hero-text-box { max-width: 800px; }
.badge-tech { display: inline-block; padding: 8px 16px; background: rgba(27, 156, 133, 0.1); border: 1px solid var(--secondary); color: var(--secondary); border-radius: 30px; font-size: 0.85rem; font-weight: 600; margin-bottom: 25px; }
.hero h1 { font-size: clamp(3rem, 6vw, 5.5rem); margin-bottom: 30px; letter-spacing: -1.5px; }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; }

/* Metrics */
.metrics-section { padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); background: var(--primary-light); }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.metric-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.metric-card i { font-size: 2.5rem; color: var(--accent); }
.metric-data h3 { font-size: 2.5rem; color: var(--text-main); }
.metric-data p { color: var(--secondary); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

/* About */
.about { padding: 120px 0; }
.about h2 { font-size: 2.5rem; margin-bottom: 30px; text-align: center;}
.about p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; text-align: center;}

/* Features Split */
.features { padding: 100px 0; background: var(--primary-light); }
.split-layout { display: flex; gap: 60px; align-items: center; }
.image-box { flex: 1; position: relative; }
.styled-img { width: 100%; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); object-fit: cover; min-height: 400px; background: #000;}
.floating-stat { position: absolute; bottom: -20px; right: -20px; background: var(--primary); padding: 20px 30px; border-radius: 12px; border: 1px solid var(--secondary); display: flex; align-items: center; gap: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.floating-stat i { color: var(--secondary); font-size: 1.5rem; }
.floating-stat span { font-weight: 600; font-family: var(--font-head); }
.content-box { flex: 1; }
.content-box h2 { font-size: 2.5rem; margin-bottom: 15px; }
.subtitle { color: var(--secondary); font-size: 1.1rem; margin-bottom: 40px; font-weight: 600; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 30px; }
.feature-list li { display: flex; gap: 20px; }
.icon-wrap { background: rgba(255, 159, 41, 0.1); width: 50px; height: 50px; border-radius: 12px; display: flex; justify-content: center; align-items: center; color: var(--accent); font-size: 1.3rem; flex-shrink: 0; }
.text-wrap h4 { font-size: 1.3rem; margin-bottom: 5px; }
.text-wrap p { color: var(--text-muted); font-size: 0.95rem; }

/* Conversion Form */
.conversion-section { padding: 120px 0; }
.form-wrapper { background: linear-gradient(145deg, var(--primary-light) 0%, var(--primary) 100%); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; padding: 60px; display: flex; gap: 60px; align-items: center; box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.form-text { flex: 1; }
.form-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.form-text p { color: var(--text-muted); font-size: 1.1rem; }
.form-container { flex: 1.2; width: 100%; }
.b2b-form { display: flex; flex-direction: column; gap: 20px; }
.input-row { display: flex; gap: 20px; }
input[type="text"], input[type="email"], input[type="tel"] { width: 100%; padding: 18px 20px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
input:focus { outline: none; border-color: var(--secondary); background: rgba(0,0,0,0.4); }
.consent-label { display: flex; align-items: flex-start; gap: 12px; font-size: 0.85rem; color: var(--text-muted); cursor: pointer; }
.consent-label input { display: none; }
.custom-check { width: 20px; height: 20px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.consent-label input:checked ~ .custom-check { background: var(--secondary); border-color: var(--secondary); }
.consent-label input:checked ~ .custom-check::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #fff; font-size: 12px; }
.consent-label a { color: var(--secondary); text-decoration: underline; }
.btn-submit { width: 100%; padding: 20px; font-size: 1.1rem; margin-top: 10px; }

.success-message { text-align: center; padding: 40px; background: rgba(27, 156, 133, 0.1); border-radius: 12px; border: 1px solid var(--secondary); }
.success-message i { font-size: 4rem; color: var(--secondary); margin-bottom: 20px; }

/* Random Tech */
.random-tech { padding: 80px 0; }
.random-tech h2 { margin-bottom: 40px; font-size: 2.5rem; }
.tech-showcase { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); min-height: 400px;}
.full-width-img { width: 100%; display: block; filter: brightness(0.6); min-height: 400px; object-fit: cover;}
.overlay-gradient { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; background: linear-gradient(to top, var(--primary) 0%, transparent 100%); text-align: left; }
.overlay-gradient h3 { font-size: 2rem; margin-bottom: 10px; }

/* FAQ */
.faq { padding: 100px 0; background: var(--primary-light); }
.faq h2 { margin-bottom: 50px; font-size: 2.5rem; }
.accordion { max-width: 800px; margin: 0 auto; }
details { background: var(--primary); margin-bottom: 15px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
summary { padding: 20px 25px; font-weight: 600; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent); transition: 0.3s; }
details[open] summary::after { transform: rotate(180deg); }
.details-content { padding: 0 25px 25px; color: var(--text-muted); border-top: 1px solid rgba(255,255,255,0.05); margin-top: 10px; padding-top: 20px; }

/* Footer */
.site-footer { padding: 80px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; color: #fff; }
.footer-col p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 10px; }
.company-details { color: #475569 !important; font-size: 0.85rem !important; margin-top: 20px;}
.footer-col.links { display: flex; flex-direction: column; gap: 12px; }
.footer-col.links a { color: var(--text-muted); font-size: 0.95rem; }
.footer-col.links a:hover { color: var(--secondary); padding-left: 5px; }
.footer-bottom { text-align: center; color: #475569; font-size: 0.85rem; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }

/* Cookie Bar */
.cookie-bar { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--primary-light); padding: 20px 0; z-index: 1000; border-top: 2px solid var(--secondary); transition: 0.5s ease-in-out; }
.cookie-bar.show { bottom: 0; }
.cookie-flex { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.cookie-flex p { font-size: 0.9rem; color: var(--text-muted); flex: 1; }
.cookie-flex a { color: var(--secondary); text-decoration: underline; }
.cookie-btns { display: flex; gap: 15px; }

/* Legal Pages Template */
.legal-page { background: #F1F5F9; color: #0F172A; }
.legal-header { background: var(--primary); }
.legal-content { max-width: 900px; margin: 140px auto 80px; background: #FFF; padding: 60px 80px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.legal-content h1 { color: var(--primary); font-size: 2.5rem; margin-bottom: 30px; border-bottom: 3px solid var(--secondary); padding-bottom: 15px; display: inline-block; }
.legal-content h2 { color: var(--primary); font-size: 1.4rem; margin: 35px 0 15px; }
.legal-content p, .legal-content ul { color: #334155; font-size: 1.05rem; margin-bottom: 15px; }
.legal-content ul { padding-left: 20px; }
.contact-layout { display: flex; gap: 40px; margin-top: 40px; }
.contact-data { flex: 1; background: #F8FAFC; padding: 30px; border-radius: 12px; border-left: 4px solid var(--secondary); }
.contact-data p { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 600; color: #0F172A;}
.contact-data i { color: var(--accent); font-size: 1.2rem; width: 25px; text-align: center; }
.map-frame { flex: 1; border-radius: 12px; overflow: hidden; min-height: 350px; background: #E2E8F0; }

/* Responsive */
@media (max-width: 992px) {
    .split-layout, .form-wrapper, .contact-layout { flex-direction: column; }
    .floating-stat { right: 20px; bottom: -20px; }
    .hero h1 { font-size: 2.5rem; }
    .input-row { flex-direction: column; gap: 20px; }
    .legal-content { padding: 40px 20px; width: 92%; margin-top: 100px; }
    .cookie-flex { flex-direction: column; text-align: center; }
    .nav-links { display: none; /* simple mobile hide for focus on CTA */ }
}
