:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.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(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-md);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.hero-visual {
    position: relative;
    height: 90vh;
    min-height: 600px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-content-centered {
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.hero-visual h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.section-cards {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.section-header-centered {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.cards-grid {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.card-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
    color: var(--accent-color);
}

.card-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.card-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.card-link:hover {
    color: var(--secondary-color);
}

.section-story {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.section-story h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.section-story p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.story-image-inline {
    margin: var(--spacing-lg) 0;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius);
}

.section-cards-alt {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.cards-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.card-service {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    transition: all 0.3s;
}

.card-service:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.card-service-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
}

.card-service h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

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

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-features li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
}

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

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

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.section-testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.section-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-size: 1.05rem;
}

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

.section-process {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.section-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.process-cards {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.process-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: var(--spacing-md);
}

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.section-cta-inline {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.cta-box {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.btn-cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin-top: var(--spacing-md);
}

.btn-cta-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.section-benefits {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.benefits-split {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.benefits-left {
    flex: 1;
}

.benefits-left h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.benefits-right {
    flex: 1;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: var(--spacing-lg);
}

.benefits-list strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.benefits-list span {
    color: var(--text-light);
}

.section-form {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.form-group label {
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    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-color);
}

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

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

.section-final-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.section-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.btn-outline-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin-top: var(--spacing-md);
}

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

.footer {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

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

.footer-col li {
    margin-bottom: var(--spacing-xs);
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}

.sticky-cta {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 998;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

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

.section-services-detail {
    padding: var(--spacing-xl) 0;
}

.service-detail-card {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: var(--spacing-lg);
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

.service-detail-image .placeholder-image {
    height: 100%;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.service-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.service-detail-list {
    margin-bottom: var(--spacing-md);
    padding-left: 1.5rem;
}

.service-detail-list li {
    margin-bottom: var(--spacing-xs);
}

.section-cta-services {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.cta-services-box {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-services-box h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.section-about-story {
    padding: var(--spacing-xl) 0;
}

.story-block {
    margin-bottom: var(--spacing-xl);
}

.story-block h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.story-block p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.story-image-full {
    margin: var(--spacing-xl) 0;
}

.stats-row {
    display: flex;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

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

.values-grid {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin: var(--spacing-xl) 0;
}

.value-card {
    flex: 1;
    min-width: 240px;
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.section-cta-about {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.cta-about-box {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-about-box h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.section-contact-info {
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    color: var(--accent-color);
}

.contact-info-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.contact-info-card a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.section-contact-cta {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.contact-cta-box {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.contact-cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.section-thanks {
    padding: var(--spacing-xl) 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-box {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    color: var(--success-color);
}

.thanks-box h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
}

.thanks-service {
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s;
}

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

.legal-page {
    padding: 6rem 0 var(--spacing-xl);
    margin-top: 70px;
}

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

.updated {
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.legal-page p,
.legal-page li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.legal-page ul {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

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

.legal-page a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    margin: var(--spacing-md) 0;
    border-collapse: collapse;
}

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

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

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

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

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

    .hero-visual h1 {
        font-size: 2.25rem;
    }

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

    .section-header-centered h2,
    .section-title-left,
    .page-header h1 {
        font-size: 2rem;
    }

    .cards-grid,
    .cards-masonry,
    .testimonials-grid,
    .process-cards,
    .footer-grid,
    .benefits-split,
    .stats-row,
    .values-grid,
    .contact-grid {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
        left: var(--spacing-sm);
    }

    .sticky-cta-btn {
        width: 100%;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    :root {
        --spacing-xl: 3rem;
    }

    .hero-visual {
        height: 70vh;
        min-height: 500px;
    }

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