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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #d4a373;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

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

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

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

.btn-cookie.reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-cookie:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
}

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

.hero-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.4);
}

.story-intro {
    background: var(--secondary-color);
    padding: 80px 20px;
}

.story-intro p {
    font-size: 22px;
    margin-bottom: 28px;
    color: var(--text-color);
}

.intro-hook {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
}

.emphasis {
    font-style: italic;
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 500;
}

.problem-section {
    padding: 100px 20px;
    background: var(--white);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--primary-color);
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.problem-list {
    list-style: none;
    margin-top: 30px;
}

.problem-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.insight-reveal {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 20px;
}

.insight-reveal h2 {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
}

.insight-reveal p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 50px;
    margin: 50px 0;
    text-align: center;
}

.big-number {
    display: block;
    font-size: 80px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.solution-narrative {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.solution-narrative h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.narrative-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.narrative-card {
    flex: 1;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.narrative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.narrative-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.narrative-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.narrative-card p {
    font-size: 16px;
    margin: 0 25px 25px;
    color: var(--light-text);
    line-height: 1.6;
}

.cta-inline {
    background: var(--accent-color);
    padding: 60px 20px;
    text-align: center;
}

.cta-inline p {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 500;
}

.btn-cta {
    display: inline-block;
    padding: 18px 48px;
    background: var(--white);
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.trust-section {
    padding: 100px 20px;
    background: var(--white);
}

.trust-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-color);
}

.author {
    font-size: 16px;
    font-weight: 600;
    color: var(--light-text);
    font-style: normal;
}

.services-reveal {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.services-reveal h2 {
    font-size: 52px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 70px;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.service-features span {
    font-size: 15px;
    color: var(--text-color);
}

.price-reveal {
    margin: 30px 0;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select {
    padding: 16px 36px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.service-item img {
    flex: 0 0 350px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.urgency-section {
    background: #fff3e6;
    padding: 80px 20px;
}

.urgency-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.urgency-section p {
    font-size: 20px;
    margin-bottom: 20px;
}

.urgency-box {
    background: var(--white);
    border: 2px solid var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.urgency-box p {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
}

.final-form-section {
    padding: 100px 20px;
    background: var(--white);
}

.final-form-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.order-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 50px;
    border-radius: 12px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.guarantee-section {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.guarantee-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.guarantee-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-item {
    flex: 1;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.guarantee-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.guarantee-item p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.6;
}

.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
    transition: bottom 0.3s ease;
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta span {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}

.btn-sticky {
    padding: 12px 32px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-sticky:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #2a2a2a);
    color: var(--white);
    padding: 150px 20px 100px;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    background: var(--white);
}

.about-content h2 {
    font-size: 38px;
    margin: 60px 0 30px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--light-text);
    line-height: 1.8;
}

.content-image {
    width: 100%;
    max-width: 700px;
    margin: 50px auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.values-section {
    background: var(--secondary-color);
    padding: 60px;
    border-radius: 12px;
    margin: 60px 0;
}

.value-item {
    margin-bottom: 40px;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 17px;
    color: var(--light-text);
}

.cta-about {
    text-align: center;
    margin-top: 70px;
}

.cta-about p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.services-page {
    padding: 80px 20px;
    background: var(--white);
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 0 0 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-tagline {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.service-info h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.service-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-info ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-color);
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-price-box {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: var(--light-text);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    font-size: 14px;
    color: var(--light-text);
    font-style: italic;
    margin-left: 10px;
}

.btn-service {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.why-choose {
    background: var(--secondary-color);
    padding: 80px 20px;
}

.why-choose h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
}

.benefit h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit p {
    font-size: 15px;
    color: var(--light-text);
}

.contact-content {
    padding: 80px 20px;
    background: var(--white);
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info h2,
.contact-map h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.8;
}

.info-block a {
    color: var(--accent-color);
}

.info-block a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background: var(--secondary-color);
    padding: 60px 40px;
    border-radius: 12px;
    height: 100%;
}

.map-placeholder p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-faq {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-faq h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 0 0 calc(50% - 15px);
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.6;
}

.contact-cta {
    background: var(--accent-color);
    padding: 80px 20px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: var(--secondary-color);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #4caf50;
    color: var(--white);
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.thanks-info {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-number {
    flex: 0 0 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.timeline-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.timeline-text p {
    font-size: 16px;
    color: var(--light-text);
}

.thanks-reminder {
    background: #fff3e6;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-reminder p {
    font-size: 18px;
    color: var(--text-color);
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary {
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

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

.thanks-contact p {
    font-size: 16px;
    color: var(--light-text);
}

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

.legal-page {
    padding: 120px 20px 80px;
    background: var(--white);
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.update-date {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 50px;
}

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

.legal-content h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 24px;
    margin: 35px 0 20px;
    color: var(--text-color);
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.legal-content strong {
    color: var(--text-color);
    font-weight: 600;
}

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

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--secondary-color);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 15px;
    color: var(--light-text);
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .split-layout,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .narrative-grid,
    .guarantee-grid,
    .benefits-grid {
        flex-direction: column;
    }

    .service-img {
        flex: 1;
        width: 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .faq-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        width: calc(100% - 40px);
        padding: 15px 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        border-radius: 12px;
        box-shadow: var(--shadow);
        padding: 20px;
        gap: 15px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .service-item {
        flex-direction: column;
        padding: 30px;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-item img {
        flex: 1;
        width: 100%;
        height: 250px;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 15px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        font-size: 13px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    .order-form {
        padding: 30px 25px;
    }
}