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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d6a4f;
    --accent-color: #40916c;
    --text-dark: #1b263b;
    --text-light: #415a77;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --error-color: #d62828;
    --success-color: #52b788;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-brand a {
    color: inherit;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    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: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 100%);
    padding: 8rem 2rem 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-pattern.svg') center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.cta-hero {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

.section-story {
    padding: 6rem 0;
    background: var(--bg-white);
}

.story-lead {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.story-image {
    margin: 4rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-story h2 {
    font-size: 2.25rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
}

.section-story p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-inline {
    background: var(--bg-light);
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--accent-color);
    margin: 3rem 0;
    font-size: 1.2rem;
    font-style: italic;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.section-contrast {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1.2;
}

.split-visual {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.problem-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.visual-stat {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

.section-revelation {
    padding: 6rem 0;
    background: var(--bg-white);
}

.section-title-center {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.timeline-flow {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    padding: 1.75rem 2.5rem;
    background: var(--bg-light);
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
    transition: transform 0.3s;
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-marker {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-item p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.cta-inline-box {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-inline-text {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-inline-btn {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s;
}

.cta-inline-btn:hover {
    transform: scale(1.05);
}

.section-insight {
    padding: 6rem 0;
    background: var(--bg-light);
}

.insight-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.section-trust {
    padding: 6rem 0;
    background: var(--bg-white);
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.section-benefits {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-large {
    flex: 1 1 calc(60% - 1rem);
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-small {
    flex: 1 1 calc(40% - 1rem);
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-large h3,
.benefit-small h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit-large p,
.benefit-small p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1.25rem 2rem;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.sticky-cta-btn {
    background: white;
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
}

.section-services {
    padding: 6rem 0;
    background: var(--bg-white);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-form {
    margin-top: 3rem;
}

.service-option {
    margin-bottom: 1.5rem;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option label {
    display: block;
    padding: 2rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-option input[type="radio"]:checked + label {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(26, 77, 46, 0.15);
}

.service-option.featured label {
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.05), rgba(45, 106, 79, 0.05));
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.form-group {
    margin: 2rem 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.section-urgency {
    padding: 4rem 0;
    background: var(--bg-light);
}

.urgency-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border-left: 6px solid var(--error-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.urgency-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--error-color);
}

.urgency-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.urgency-highlight {
    font-weight: 700;
    color: var(--primary-color);
}

.section-faq {
    padding: 6rem 0;
    background: var(--bg-white);
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.content-section ul,
.content-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.highlight-box {
    background: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
}

.highlight-box p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

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

.approach-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin: 3rem 0;
}

.cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 1rem;
}

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

.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.service-detail-header {
    background: var(--bg-light);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.service-detail-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.service-detail-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-detail-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.btn-service {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s;
}

.btn-service:hover {
    background: var(--secondary-color);
}

.featured-service {
    border: 2px solid var(--accent-color);
}

.services-comparison {
    padding: 4rem 0;
    background: var(--bg-light);
}

.services-comparison h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.services-cta {
    padding: 4rem 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-cta p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.contact-info {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-item {
    flex: 1;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-item p,
.contact-item a {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-note,
.contact-faq {
    margin: 3rem 0;
}

.contact-note h3,
.contact-faq h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-note ol {
    padding-left: 1.5rem;
}

.contact-note li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.thanks-section {
    padding: 6rem 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

.thanks-message {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-service {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.next-steps-list {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.next-steps-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-note p {
    margin: 0;
    color: var(--text-dark);
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.legal-content {
    padding: 4rem 0;
}

.legal-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.75rem;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

.legal-content a:hover {
    color: var(--secondary-color);
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.gdpr-table th,
.cookies-table th {
    background: var(--bg-light);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.gdpr-table td,
.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-table tr:last-child td,
.cookies-table tr:last-child td {
    border-bottom: none;
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .split-content {
        flex-direction: column;
    }

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

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

    .benefit-large,
    .benefit-small {
        flex: 1 1 100%;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title-center {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .service-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}
