:root {
    --color-primary: #1a5f4a;
    --color-primary-dark: #134438;
    --color-primary-light: #2d7a4f;
    --color-secondary: #e8f5e9;
    --color-accent: #ff7043;
    --color-text: #2c3e50;
    --color-text-light: #546e7a;
    --color-bg: #ffffff;
    --color-bg-alt: #f8faf9;
    --color-border: #e0e6e3;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

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

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

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

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.editorial-content {
    padding-top: 80px;
}

.story-flow {
    max-width: 100%;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.hero-overlay h1 {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 2.75rem;
    color: white;
    text-align: center;
}

.hero-lead {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    opacity: 0.9;
}

.story-intro {
    background: var(--color-bg-alt);
}

.drop-cap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
    color: var(--color-primary);
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.story-intro p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.split-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    margin-top: 0.5rem;
}

.split-text p {
    margin-bottom: 1rem;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.story-testimonial-inline {
    background: var(--color-secondary);
    padding: 4rem 2rem;
}

.testimonial-featured {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
}

.testimonial-featured p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-featured cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}

.cta-inline {
    text-align: center;
    padding: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition);
    border: 2px solid var(--color-primary);
}

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

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: 2px solid var(--color-primary);
    transition: all var(--transition);
}

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

.insight-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.insight-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.insight-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.insight-card p {
    font-size: 1.125rem;
    opacity: 0.95;
}

.story-solution {
    background: var(--color-bg-alt);
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 50px;
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.story-image-break {
    position: relative;
}

.story-image-break img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    text-align: center;
    font-style: italic;
}

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

.benefit-card {
    flex: 1;
    min-width: 220px;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    margin-bottom: 0.5rem;
}

.cta-section-wide {
    background: var(--color-primary);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.story-testimonials {
    background: var(--color-bg-alt);
}

.testimonial-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.story-pricing {
    padding: 4rem 2rem;
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.price-card h4 {
    margin-bottom: 0.5rem;
}

.price-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

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

.price-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.price-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
}

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

.price-features li::before {
    content: '\2713';
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.urgency-box {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-radius: var(--radius-md);
    padding: 2rem;
}

.urgency-box h3 {
    color: #e65100;
    margin-bottom: 1rem;
}

.urgency-note {
    font-weight: 600;
    color: #e65100;
    margin-top: 1rem;
}

.story-form {
    background: var(--color-bg-alt);
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.main-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 1rem;
}

.story-final {
    text-align: center;
}

.story-final h2 {
    margin-bottom: 1.5rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 999;
    text-align: center;
    transform: translateY(100%);
    transition: transform var(--transition);
}

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

.btn-sticky {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.btn-sticky:hover {
    background: #f4511e;
    color: white;
}

.site-footer {
    background: #1a2530;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.7;
}

.footer-links {
    flex: 3;
    display: flex;
    gap: 3rem;
}

.footer-col h5 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.6;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2530;
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 200px;
}

.cookie-content a {
    color: var(--color-accent);
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background: var(--color-primary-light);
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

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

.page-content {
    padding-top: 80px;
}

.page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.hero-overlay-dark h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.hero-overlay-dark p {
    opacity: 0.9;
    font-size: 1.125rem;
}

.about-content,
.services-detailed {
    padding-bottom: 4rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-mission {
    background: var(--color-bg-alt);
    padding: 4rem 2rem;
}

.mission-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.mission-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.value-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.value-content h4 {
    margin-bottom: 0.5rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.process-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-photo {
    margin-top: 2rem;
}

.team-photo img {
    border-radius: var(--radius-lg);
}

.cta-box {
    background: var(--color-primary);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 600px;
    margin: 3rem auto;
}

.cta-box h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-full-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}

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

.service-full-card:last-child {
    border-bottom: none;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-details {
    flex: 1;
    min-width: 300px;
}

.service-tag {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.service-price-block {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.price-from {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.services-comparison {
    background: var(--color-bg-alt);
    padding: 4rem 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--color-bg-alt);
}

.guarantee-box {
    background: var(--color-secondary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.guarantee-box h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.cta-box-large {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    padding: 4rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 4rem auto;
    max-width: 800px;
}

.cta-box-large h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cta-box-large p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info,
.contact-faq {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    color: var(--color-primary);
    min-width: 40px;
}

.contact-text h4 {
    margin-bottom: 0.25rem;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.contact-note h4 {
    margin-bottom: 0.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.contact-map {
    position: relative;
}

.map-placeholder {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

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

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

.legal-container h1 {
    margin-bottom: 0.5rem;
}

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

.legal-section {
    margin-bottom: 2.5rem;
}

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

.legal-section h4 {
    margin: 1.5rem 0 0.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.thanks-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    margin-bottom: 1rem;
}

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

.thanks-message {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-message h3 {
    margin: 1.5rem 0 1rem;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.thanks-steps li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

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

.thanks-email {
    font-size: 1.25rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        box-shadow: var(--shadow-md);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 1.75rem;
    }

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

    .service-full-card,
    .service-full-card.reverse {
        flex-direction: column;
    }

    .mission-block {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .content-narrow,
    .content-wide {
        padding: 2rem 1rem;
    }

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

    .price-card {
        max-width: 100%;
    }

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

    .process-steps {
        flex-direction: column;
    }
}
