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

:root {
    --primary-color: #d84315;
    --primary-dark: #bf360c;
    --primary-light: #ff6f42;
    --secondary-color: #424242;
    --text-dark: #212121;
    --text-medium: #616161;
    --text-light: #9e9e9e;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #43a047;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-large: 0 4px 16px rgba(0,0,0,0.12);
}

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

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

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

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-visual {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    padding: 20px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-hero {
    background: var(--primary-color);
    color: white;
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
}

.cta-hero:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

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

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.story-image {
    margin: 50px 0;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.highlight-text {
    background: var(--primary-light);
    color: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    margin-top: 25px;
}

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.insight-reveal h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.insight-reveal p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.chef-quote {
    background: var(--bg-light);
    padding: 40px;
    border-left: 5px solid var(--primary-color);
    margin: 40px 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
}

.chef-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--text-medium);
}

.trust-builder {
    padding: 80px 20px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.trust-builder h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.trust-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 12px;
    min-width: 200px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 10px;
}

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

.testimonials-flow h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-dark);
}

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

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

.benefits-cascade h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-block {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    overflow: hidden;
}

.benefit-block img {
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-large {
    flex: 1 1 calc(60% - 25px);
}

.benefit-medium {
    flex: 1 1 calc(55% - 25px);
}

.benefit-small {
    flex: 1 1 calc(35% - 25px);
}

.benefit-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-block p {
    color: var(--text-medium);
    line-height: 1.7;
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.urgency-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.urgency-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.urgency-highlight {
    background: white;
    color: var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 30px 0;
}

.cta-urgency {
    background: white;
    color: var(--primary-color);
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
}

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

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

.pricing-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 350px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-color);
}

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

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
}

.pricing-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-medium);
}

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

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

.pricing-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.pricing-button:hover {
    background: var(--primary-dark);
}

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

.form-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.form-section > .container-narrow > p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.order-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.form-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-submit:hover {
    background: var(--primary-dark);
}

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

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-final {
    background: var(--primary-color);
    color: white;
    padding: 18px 50px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
}

.cta-final:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta button {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-large);
}

.sticky-cta button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.98);
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
}

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

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

.page-header {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    text-align: center;
}

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

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

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

.about-story img {
    border-radius: 12px;
    margin: 30px 0;
}

.about-story h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.about-story p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-values {
    margin: 60px 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 25px);
    min-width: 250px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.about-cta {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.about-cta h2 {
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

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

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.services-catalog {
    margin-bottom: 80px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.service-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-content {
    flex: 1;
    position: relative;
}

.service-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-content > p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-specs {
    list-style: none;
    margin: 20px 0;
}

.service-specs li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-medium);
}

.service-specs li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

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

.service-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 600;
}

.service-button:hover {
    background: var(--primary-dark);
}

.services-guarantee {
    text-align: center;
    margin-top: 80px;
}

.services-guarantee h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.guarantee-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.guarantee-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.guarantee-item p {
    color: var(--text-medium);
}

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

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

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

.contact-note {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
}

.contact-faq h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.faq-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
}

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

.faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.update-date {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.legal-section p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
    color: var(--text-medium);
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section a {
    color: var(--primary-color);
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

.thanks-hero {
    padding: 150px 20px 100px;
    text-align: center;
}

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

.thanks-hero h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 50px;
}

.thanks-info {
    margin: 60px 0;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.thanks-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-step {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

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

.thanks-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.thanks-step p {
    color: var(--text-medium);
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        border-radius: 16px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

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

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

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

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

    .service-item,
    .service-item-reverse {
        flex-direction: column;
        padding: 25px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .story-intro h2,
    .pricing-reveal h2 {
        font-size: 1.8rem;
    }

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