:root {
    --navy-deep: #1a2b4a;
    --royal-blue: #2c5aa0;
    --sky-blue: #4a90e2;
    --light-blue: #7db3e8;
    --ice-blue: #e8f4fd;
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --soft-gray: #e9ecef;
    --medium-gray: #6c757d;
    --charcoal: #343a40;
    --success-green: #28a745;
    --warning-amber: #ffc107;
    --alert-red: #dc3545;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-deep);
}

a {
    color: var(--royal-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--sky-blue);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.header-executive {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--pure-white);
    box-shadow: 0 2px 10px rgba(26, 43, 74, 0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.logo-img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-deep);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--royal-blue);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--royal-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--ice-blue);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-deep);
    transition: background-color 0.3s ease;
}

.contact-phone:hover {
    background-color: var(--light-blue);
    color: var(--pure-white);
}

.language-switcher {
    display: flex;
    gap: 4px;
    background-color: var(--soft-gray);
    border-radius: 6px;
    padding: 4px;
}

.lang-btn {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--medium-gray);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: var(--royal-blue);
    color: var(--pure-white);
}

.lang-btn:hover:not(.active) {
    color: var(--royal-blue);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy-deep);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--pure-white);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    padding: 80px 30px 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--navy-deep);
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    padding: 12px 0;
    border-bottom: 1px solid var(--soft-gray);
}

.mobile-lang-switch {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.mobile-lang-btn {
    padding: 12px;
    background-color: var(--soft-gray);
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    color: var(--charcoal);
}

.mobile-lang-btn.active {
    background-color: var(--royal-blue);
    color: var(--pure-white);
}

main {
    margin-top: 60px;
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--royal-blue) 100%);
    overflow: hidden;
    padding: 100px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-artisan.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: var(--pure-white);
}

.hero-title {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--pure-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--ice-blue);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--royal-blue);
    color: var(--pure-white);
    border: 2px solid var(--royal-blue);
}

.btn-primary:hover {
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-secondary:hover {
    background-color: var(--pure-white);
    color: var(--royal-blue);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--ice-blue);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--navy-deep);
}

.section-description {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.8;
}

.services-section, .advantages-section, .process-section, .portfolio-section, .contact-section {
    padding: 100px 20px;
}

.services-grid, .advantages-grid, .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card, .advantage-card {
    background-color: var(--pure-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover, .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(26, 43, 74, 0.15);
}

.service-icon, .advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-blue), var(--sky-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--pure-white);
    margin-bottom: 24px;
}

.service-title, .advantage-title {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--navy-deep);
}

.service-description, .advantage-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--success-green);
    font-size: 16px;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--royal-blue), var(--sky-blue));
}

.process-step {
    position: relative;
    padding-left: 90px;
    margin-bottom: 60px;
}

.step-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-blue), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--pure-white);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.step-content {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
}

.step-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--navy-deep);
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--charcoal);
}

.step-details span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-details i {
    color: var(--royal-blue);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(26, 43, 74, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-title {
    font-size: 20px;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.portfolio-category {
    font-size: 14px;
    color: var(--ice-blue);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--ice-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--royal-blue);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--navy-deep);
}

.contact-text p {
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-text a {
    color: var(--royal-blue);
    font-weight: 600;
}

.contact-hours {
    display: block;
    font-size: 13px;
    color: var(--medium-gray);
    margin-top: 4px;
}

.contact-map {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.1);
}

.contact-form-wrapper {
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(26, 43, 74, 0.12);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-deep);
}

.form-input, .form-textarea {
    padding: 12px 16px;
    border: 2px solid var(--soft-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--royal-blue);
    text-decoration: underline;
}

.btn-submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--royal-blue), var(--sky-blue));
    color: var(--pure-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(44, 90, 160, 0.4);
}

.iti, #phone {
    width: 100%;
}

.site-footer {
    background-color: var(--navy-deep);
    color: var(--ice-blue);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--light-blue);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links i {
    color: var(--sky-blue);
    margin-top: 3px;
}

.footer-links a {
    color: var(--ice-blue);
    transition: color 0.3s ease;
}

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

.footer-lang-switch {
    display: flex;
    gap: 10px;
}

.footer-lang-btn {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ice-blue);
    transition: all 0.3s ease;
}

.footer-lang-btn.active {
    background-color: var(--royal-blue);
    color: var(--pure-white);
}

.footer-lang-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: var(--light-blue);
}

.thanks-page {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--ice-blue), var(--pure-white));
}

.thanks-container {
    max-width: 700px;
    background-color: var(--pure-white);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(26, 43, 74, 0.15);
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: var(--success-green);
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--navy-deep);
}

.thanks-message {
    font-size: 16px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.thanks-info {
    background-color: var(--ice-blue);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--navy-deep);
}

.thanks-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.thanks-steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    color: var(--charcoal);
}

.thanks-steps i {
    font-size: 20px;
    color: var(--royal-blue);
    margin-top: 2px;
}

.thanks-contact {
    margin-bottom: 40px;
}

.thanks-contact h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy-deep);
}

.thanks-contact p {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.thanks-contact-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--ice-blue);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--royal-blue);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: var(--royal-blue);
    color: var(--pure-white);
}

.thanks-actions {
    margin-top: 30px;
}

.legal-page {
    padding: 100px 20px;
    background-color: var(--off-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--navy-deep);
}

.legal-date {
    font-size: 16px;
    color: var(--medium-gray);
    font-style: italic;
}

.legal-content {
    background-color: var(--pure-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(26, 43, 74, 0.08);
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--navy-deep);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ice-blue);
}

.legal-section h3 {
    font-size: 20px;
    margin: 24px 0 16px;
    color: var(--royal-blue);
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.legal-section a {
    color: var(--royal-blue);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--sky-blue);
}

.contact-info-legal {
    background-color: var(--ice-blue);
    padding: 24px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info-legal p {
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background-color: var(--navy-deep);
    color: var(--pure-white);
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid var(--soft-gray);
    font-size: 14px;
}

.cookie-table tbody tr:hover {
    background-color: var(--ice-blue);
}

.cookie-settings-btn-wrapper {
    text-align: center;
    margin: 30px 0;
}

#openCookieSettings {
    cursor: pointer;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--navy-deep);
    color: var(--pure-white);
    padding: 24px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

.cookie-consent-banner.show {
    display: block;
}

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

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cookie-consent-text a {
    color: var(--light-blue);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--success-green);
    color: var(--pure-white);
}

.cookie-btn-accept:hover {
    background-color: #218838;
}

.cookie-btn-reject {
    background-color: var(--medium-gray);
    color: var(--pure-white);
}

.cookie-btn-reject:hover {
    background-color: var(--charcoal);
}

.cookie-btn-customize {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.cookie-btn-customize:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 11000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--pure-white);
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cookie-modal-header h2 {
    font-size: 24px;
    color: var(--navy-deep);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
}

.cookie-category {
    padding: 20px;
    border: 2px solid var(--soft-gray);
    border-radius: 8px;
    margin-bottom: 16px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-category-header h3 {
    font-size: 18px;
    color: var(--navy-deep);
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--medium-gray);
    border-radius: 26px;
    transition: 0.3s;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--success-green);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--medium-gray);
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: flex-end;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .contact-phone span {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid, .advantages-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        left: 0;
    }

    .process-step {
        padding-left: 70px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .thanks-container {
        padding: 40px 24px;
    }

    .cookie-modal-content {
        padding: 24px;
    }
}

.reveal-text {
    opacity: 0;
    animation: revealText 1s ease forwards;
}

@keyframes revealText {
    to {
        opacity: 1;
    }
}