:root {
    --bg: #FFF8F0;
    --accent-1: #F8CFB9;
    --accent-2: #C16858;
    --muted: #8E3240;
    --text: #681D31;
    --white: #ffffff;
    --font-primary: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 248, 240, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(193, 104, 88, 0.12);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(104, 29, 49, 0.04);
}

.logo-svg {
    width: 140px;
    height: 40px;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-2);
}

.intro-section {
    padding: 9rem 0 4rem;
}

.intro-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--muted);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.intro-lead {
    font-size: 1.25rem;
    color: var(--text);
    opacity: 0.85;
    line-height: 1.6;
}

.decorative-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.visual-panel {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(193, 104, 88, 0.04) 0%, rgba(248, 207, 185, 0.08) 100%);
}

.panel-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(104, 29, 49, 0.15);
}

.method-section {
    padding: 5rem 0;
}

.method-col {
    text-align: center;
    padding: 2rem 1.5rem;
}

.icon {
    display: inline-block;
    color: var(--accent-2);
    margin-bottom: 1.5rem;
}

.icon--lg {
    width: 48px;
    height: 48px;
    stroke-width: 1.6;
}

.method-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 1rem;
}

.method-text {
    font-size: 1rem;
    color: var(--text);
    opacity: 0.8;
}

.scenari-section {
    padding: 5rem 0;
    background: var(--white);
}

.scenario-strip {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(193, 104, 88, 0.1);
}

.scenario-strip:last-child {
    border-bottom: none;
}

.scenario-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 1rem;
}

.scenario-list {
    list-style: none;
    padding: 0;
}

.scenario-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
    opacity: 0.85;
}

.scenario-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--accent-2);
    border-radius: 50%;
}

.trust-section {
    padding: 5rem 0;
    background: var(--muted);
    color: var(--white);
}

.trust-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.trust-item {
    padding: 1.5rem 0;
}

.trust-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.trust-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.contact-section {
    padding: 5rem 0;
}

.form-label {
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.form-control {
    border: none;
    border-bottom: 2px solid rgba(193, 104, 88, 0.3);
    border-radius: 0;
    padding: 0.75rem 0;
    font-size: 1rem;
    background: transparent;
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-2);
    box-shadow: none;
    background: transparent;
}

.btn-submit {
    background: var(--accent-2);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--muted);
    transform: translateY(-2px);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

footer {
    padding: 3rem 0;
    background: var(--text);
    color: var(--white);
}

.footer-link {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--white);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 3rem;
    text-align: center;
}
.tech-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(248, 207, 185, 0.03) 0%, rgba(193, 104, 88, 0.05) 100%);
}

.tech-card {
    background: var(--white);
    border: 1px solid rgba(193, 104, 88, 0.15);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: var(--accent-2);
    box-shadow: 0 8px 24px rgba(104, 29, 49, 0.1);
    transform: translateY(-4px);
}

.tech-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tech-icon i {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.tech-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 1rem;
}

.tech-card-text {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.process-section {
    padding: 5rem 0;
    background: var(--white);
}

.process-flow {
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 1rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child):before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent-1) 100%);
    opacity: 0.3;
}

.process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--muted) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 1.5rem;
    box-shadow: 0 4px 12px rgba(193, 104, 88, 0.25);
}

.process-content {
    flex: 1;
    padding-top: 0.5rem;
}

.process-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.process-text {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}
.cookie-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--accent-2);
    box-shadow: 0 -4px 20px rgba(104, 29, 49, 0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-notice.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-notice.hide {
    opacity: 0;
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.cookie-description {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-primary);
}

.cookie-btn-accept {
    background: var(--accent-2);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--muted);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(193, 104, 88, 0.3);
}

.cookie-btn-decline:hover {
    border-color: var(--accent-2);
    color: var(--accent-2);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .tech-card {
        margin-bottom: 1.5rem;
    }
    .process-step {
        padding-left: 0;
    }
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin-right: 1rem;
    }
    .process-step:not(:last-child):before {
        left: 24px;
    }
}
@media (max-width: 768px) {
    .intro-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .decorative-svg {
        margin-top: 2rem;
    }
}