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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0f3460;
    --highlight: #e94560;
    --light: #f8f9fa;
    --text: #2d3436;
    --text-light: #636e72;
    --border: #dfe6e9;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s;
}

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

.nav-menu a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav-menu a:hover {
    border-bottom-color: var(--highlight);
}

.hero-asymmetric {
    min-height: 100vh;
    padding: 7rem 5% 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin-left: 8%;
    z-index: 2;
}

.hero-text-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    backdrop-filter: blur(5px);
    border-left: 5px solid var(--highlight);
}

.hero-title-large {
    font-size: 2.5rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta-inline {
    margin-left: 15%;
}

.btn-primary-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.hero-visual-offset {
    position: relative;
    margin-top: -3rem;
    margin-right: -5%;
}

.hero-visual-offset img {
    width: 100%;
    border-radius: 8px 0 0 8px;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.3);
}

.story-intro-asymmetric {
    padding: 5rem 5%;
    background: white;
}

.story-container-offset {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text-narrow {
    max-width: 650px;
    margin-left: 10%;
}

.story-text-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.story-text-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-visual-small {
    max-width: 500px;
    margin-left: auto;
    margin-right: 8%;
}

.story-visual-small img {
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.problem-amplification-split {
    padding: 5rem 5%;
    background: var(--light);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-left-wide {
    flex: 1;
}

.split-left-wide h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.problem-list-stacked {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-left: 4px solid var(--highlight);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: rotate(-0.5deg);
}

.problem-card:nth-child(2) {
    transform: rotate(0.5deg);
    margin-left: 5%;
}

.problem-card:nth-child(3) {
    transform: rotate(-0.3deg);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.split-right-narrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-block-floating {
    background: var(--highlight);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.3);
    transform: rotate(3deg);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
}

.insight-reveal-offset {
    padding: 6rem 5%;
    background: var(--secondary);
    color: white;
}

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

.insight-quote-large {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 5px solid var(--highlight);
}

.insight-explanation {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-left: 10%;
}

.trust-building-asymmetric {
    padding: 5rem 5%;
    background: white;
}

.trust-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
}

.trust-large {
    margin-left: 5%;
}

.trust-large h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.trust-medium {
    margin-left: auto;
    max-width: 450px;
    padding: 0;
    overflow: hidden;
}

.trust-medium img {
    border-radius: 8px;
}

.trust-small {
    max-width: 400px;
    margin-left: 15%;
    background: var(--accent);
    color: white;
}

.trust-small h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.testimonials-flow {
    padding: 5rem 5%;
    background: var(--light);
}

.section-title-offset {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    margin-left: 10%;
    color: var(--primary);
}

.testimonials-stacked {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-offset-left {
    margin-left: 5%;
    max-width: 600px;
}

.testimonial-offset-right {
    margin-left: auto;
    margin-right: 5%;
    max-width: 650px;
}

.testimonial-center {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.benefits-reveal-cards {
    padding: 5rem 5%;
    background: white;
}

.benefits-header-offset {
    max-width: 700px;
    margin-bottom: 3rem;
    margin-left: 8%;
}

.benefits-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.benefits-header-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.benefits-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    padding: 2rem;
    border-radius: 8px;
}

.benefit-primary {
    background: var(--primary);
    color: white;
    margin-left: 5%;
}

.benefit-secondary {
    background: var(--light);
    max-width: 500px;
    margin-left: auto;
    margin-right: 10%;
}

.benefit-accent {
    background: var(--highlight);
    color: white;
    max-width: 550px;
    margin-left: 12%;
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1.1rem;
}

.cta-sticky-trigger {
    padding: 4rem 5%;
    background: var(--accent);
}

.cta-content-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
}

.cta-text h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.services-pricing-reveal {
    padding: 5rem 5%;
    background: white;
}

.pricing-intro-offset {
    max-width: 800px;
    margin-bottom: 4rem;
    margin-left: 10%;
}

.pricing-intro-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.pricing-intro-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-cards-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
}

.pricing-standard {
    margin-left: 5%;
}

.pricing-featured {
    background: var(--primary);
    color: white;
    margin-left: auto;
    margin-right: 8%;
    max-width: 500px;
}

.pricing-premium {
    margin-left: 10%;
}

.pricing-compact {
    max-width: 450px;
    margin-left: auto;
    margin-right: 12%;
}

.pricing-business {
    margin-left: 7%;
}

.pricing-essential {
    max-width: 480px;
    margin-left: auto;
    margin-right: 5%;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--highlight);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: 700;
}

.pricing-featured .pricing-features li::before {
    color: white;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.pricing-featured .pricing-price {
    color: white;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--highlight);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #d63851;
}

.urgency-block-offset {
    padding: 3rem 5%;
    background: var(--light);
}

.urgency-content {
    max-width: 700px;
    margin-left: 12%;
    background: white;
    padding: 2rem;
    border-left: 5px solid var(--highlight);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.urgency-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.urgency-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.urgency-indicator {
    background: var(--highlight);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
}

.form-section-asymmetric {
    padding: 5rem 5%;
    background: var(--secondary);
}

.form-container-offset {
    max-width: 700px;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    margin-left: 8%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.form-header p {
    color: var(--text-light);
}

.contact-form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    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(--accent);
}

.btn-form-submit {
    padding: 1rem 2rem;
    background: var(--highlight);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-form-submit:hover {
    background: #d63851;
}

.form-trust-elements {
    max-width: 400px;
    margin-left: auto;
    margin-right: 10%;
    margin-top: 2rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    color: white;
}

.final-cta-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.final-cta-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.final-cta-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 3rem;
}

.final-cta-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-final-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--highlight);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-final-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
}

.footer-asymmetric {
    background: var(--primary);
    color: white;
    padding: 3rem 5%;
}

.footer-content-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

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

.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--highlight);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    transition: bottom 0.3s;
    z-index: 999;
}

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

.sticky-cta-button {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

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

.page-header-asymmetric {
    padding: 8rem 5% 3rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
}

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

.page-header-asymmetric p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story,
.values-section,
.team-section {
    padding: 4rem 5%;
}

.story-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.team-section {
    text-align: center;
}

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.team-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section {
    padding: 4rem 5%;
    background: var(--accent);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.services-detailed {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
}

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

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-content ul {
    margin: 1.5rem 0;
}

.service-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: 700;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight);
    margin-top: 1rem;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-section {
    padding: 4rem 5%;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-map-section {
    padding: 4rem 5%;
    background: var(--light);
    text-align: center;
}

.contact-map-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.thanks-section {
    min-height: 70vh;
    padding: 8rem 5% 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.thanks-details {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.thanks-next-steps ol {
    list-style: decimal;
    padding-left: 2rem;
}

.thanks-next-steps li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.thanks-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 5% 4rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .hero-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .hero-content-offset {
        flex: 1;
    }

    .hero-visual-offset {
        flex: 1;
        margin-top: 0;
    }

    .story-container-offset {
        flex-direction: row;
        align-items: center;
    }

    .problem-amplification-split {
        flex-direction: row;
    }

    .split-right-narrow {
        max-width: 350px;
    }

    .trust-grid-irregular {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-large {
        flex: 1 1 100%;
    }

    .trust-medium {
        flex: 1 1 45%;
    }

    .trust-small {
        flex: 1 1 40%;
    }

    .benefits-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .cta-content-split {
        flex-direction: row;
        text-align: left;
    }

    .cta-text {
        flex: 1;
    }

    .pricing-cards-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pricing-card {
        flex: 0 1 450px;
    }

    .footer-content-split {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-actions {
        flex-shrink: 0;
    }

    .story-container {
        flex-direction: row;
        align-items: center;
    }

    .story-block,
    .story-visual {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(33.333% - 2rem);
    }

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

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

    .service-content,
    .service-image {
        flex: 1;
    }

    .contact-container {
        flex-direction: row;
    }

    .contact-details,
    .contact-visual {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}
