﻿:root {
    --primary-color: #0B132B;
    --secondary-color: #1C2541;
    --accent-color: #FF6B6B;
    --accent-hover: #ff4c4c;
    --highlight: #4ECDC4;
    --text-dark: #333333;
    --text-light: #F8F9FA;
    --text-muted: #6C757D;
    --bg-light: #F4F6F9;
    --white: #FFFFFF;
    --border-color: #E9ECEF;
    --shadow: 0 15px 35px rgba(11, 19, 43, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.brand-name .highlight {
    color: var(--accent-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-nav a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
}

.main-nav a:hover {
    color: var(--accent-color);
}

.btn-primary, .btn-submit {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary:hover, .btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.15rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--primary-color);
    color: var(--white);
    overflow: hidden;
}

.hero-abstract-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(78,205,196,0.15) 0%, rgba(28,37,65,0) 60%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 850px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--highlight);
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(120deg, var(--highlight), #2ab7a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #A0AEC0;
    margin-bottom: 3rem;
    max-width: 700px;
}

/* Features (Asymmetric) */
.features {
    padding: 8rem 0;
    background: var(--white);
}

.feature-layout {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.feature-image-wrapper {
    flex: 1;
    position: relative;
}

.image-backdrop {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    border-radius: 12px;
    z-index: 0;
}

.feature-image-wrapper img {
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    box-shadow: var(--shadow);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.lead-paragraph {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(78, 205, 196, 0.1);
    color: var(--highlight);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.benefit-content span {
    color: var(--text-muted);
}

/* Form Section */
.form-section {
    padding: 6rem 0;
    background: var(--secondary-color);
    color: var(--white);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.form-copy h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.form-copy p {
    font-size: 1.15rem;
    color: #A0AEC0;
    margin-bottom: 2.5rem;
}

.trust-indicators p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.trust-indicators i {
    color: var(--highlight);
    font-size: 1.2rem;
}

.form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-full {
    margin-bottom: 1.5rem;
}

input[type="text"], input[type="email"], input[type="tel"] {
    width: 100%;
    padding: 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.legal-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-check a {
    color: var(--accent-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
}

.success-message {
    text-align: center;
    color: var(--primary-color);
    padding: 2rem 0;
}

.success-message i {
    font-size: 4rem;
    color: var(--highlight);
    margin-bottom: 1rem;
}

/* About */
.about {
    padding: 8rem 0;
    text-align: center;
    background: var(--white);
}

.about-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Metrics */
.metrics {
    padding: 6rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.metric-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--accent-color);
}

.metric-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--highlight);
    margin-bottom: 1rem;
}

/* FAQ */
.faq {
    padding: 8rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

details[open] {
    border-color: var(--highlight);
    background: var(--white);
    box-shadow: var(--shadow);
}

summary {
    padding: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
}

details[open] summary::after {
    content: '\f068';
}

.details-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

/* Legal Pages */
.legal-main {
    padding: 140px 0 80px;
    background: var(--bg-light);
}

.legal-container {
    background: var(--white);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-container h2 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.legal-container p, .legal-container ul {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-container ul {
    padding-left: 1.5rem;
}

.map-box {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #A0AEC0;
    max-width: 300px;
}

.site-footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #A0AEC0;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    color: #A0AEC0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--highlight);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #A0AEC0;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-layout, .form-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .main-nav, .desktop-only { display: none; }
    .metrics-grid { grid-template-columns: 1fr; }
    .hero { padding: 140px 0 80px; }
    .hero h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .input-row { grid-template-columns: 1fr; }
    .cookie-content { flex-direction: column; text-align: center; }
    .legal-container { padding: 2rem; }
}
