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

:root {
    --primary-color: #f59e0b;
    --secondary-color: #1e293b;
    --accent-color: #0ea5e9;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 16px;
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.brand a {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero-immersive {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 20px;
    overflow: hidden;
}

.hero-immersive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/solar-hero.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-hero {
    background: var(--primary-color);
    color: white;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: #d97706;
}

.story-intro {
    padding: 100px 20px;
    background: var(--bg-white);
}

.story-intro h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 700;
}

.story-intro p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.problem-amplification {
    padding: 100px 20px;
    background: var(--bg-light);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 700;
}

.split-text p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.insight-reveal h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-reveal p {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.how-it-works {
    padding: 100px 20px;
    background: var(--bg-white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 700;
}

.steps-funnel {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-item p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.trust-builder {
    padding: 100px 20px;
    background: var(--bg-light);
}

.trust-builder h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.testimonial-block {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

.benefits-reveal {
    padding: 100px 20px;
    background: var(--bg-white);
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.benefit-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.cta-block-mid {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--accent-color), #0284c7);
    color: white;
    text-align: center;
}

.cta-block-mid h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.cta-block-mid p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-primary {
    background: var(--primary-color);
    color: white;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: #d97706;
}

.services-pricing {
    padding: 100px 20px;
    background: var(--bg-light);
}

.services-pricing h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-light);
}

.pricing-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.price-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.price-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.price-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.package-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.package-features {
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--text-dark);
}

.package-features li:last-child {
    border-bottom: none;
}

.price-value {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.btn-select-service {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.additional-services {
    margin-top: 60px;
}

.additional-services h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.addon-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.addon-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.addon-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.addon-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.addon-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.urgency-section {
    padding: 100px 20px;
    background: #fef3c7;
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
}

.urgency-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.urgency-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--text-light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-checkbox {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 15px;
    color: var(--text-dark);
}

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

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.final-cta {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
}

.sticky-cta button {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s;
}

.sticky-cta button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--secondary-color), #334155);
    color: white;
    text-align: center;
}

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

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

.content-section {
    padding: 80px 20px;
}

.content-section.bg-light {
    background: var(--bg-light);
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.value-list {
    margin-top: 30px;
}

.value-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 18px;
    line-height: 1.7;
}

.value-list li:last-child {
    border-bottom: none;
}

.cta-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.services-list {
    padding: 80px 20px;
}

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

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

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content ul {
    margin: 25px 0;
}

.service-content ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 17px;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

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

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

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.map-placeholder {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
}

.map-note {
    padding: 20px;
    font-size: 15px;
    color: var(--text-light);
}

.faq-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-hero {
    padding: 120px 20px;
    background: var(--bg-light);
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.thanks-content .lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.selected-service-info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.next-steps {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.next-steps ul li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.next-steps ul li:last-child {
    border-bottom: none;
}

.next-steps ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.additional-info {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.additional-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.additional-info ul li {
    padding: 10px 0;
    font-size: 16px;
}

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

.urgency-reminder {
    background: #fef3c7;
    border: 2px solid var(--primary-color);
    padding: 25px;
    border-radius: 12px;
    text-align: left;
}

.urgency-reminder p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

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

.updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    padding: 8px 0;
    font-size: 17px;
    line-height: 1.7;
    position: relative;
    list-style: disc;
}

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

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

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

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--secondary-color);
}

.cookies-table td {
    font-size: 15px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }

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

    .hero-lead {
        font-size: 18px;
    }

    .split-content {
        flex-direction: column;
        gap: 30px;
    }

    .steps-funnel {
        gap: 40px;
    }

    .step-item {
        flex-direction: column;
    }

    .step-number {
        font-size: 42px;
    }

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

    .benefit-card {
        flex: 1 1 100%;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .price-card {
        flex: 1 1 100%;
    }

    .price-card.featured {
        transform: none;
    }

    .addon-list {
        flex-direction: column;
    }

    .addon-item {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

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

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

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

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

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