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

:root {
    --primary: #2d1b4e;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --light: #faf5ff;
    --dark: #1a1025;
    --text: #3d3d3d;
    --text-light: #6b7280;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #2d1b4e 0%, #5b21b6 100%);
    --gradient-2: linear-gradient(180deg, #faf5ff 0%, #ede9fe 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

ul {
    list-style: none;
}

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 35px;
    height: 35px;
}

.nav-desktop {
    display: none;
}

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

.nav-desktop a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

.nav-desktop a:hover {
    color: var(--secondary);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 1000;
    padding: 80px 30px 30px;
}

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

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-mobile a {
    display: block;
    font-size: 1.1rem;
    color: var(--text);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.nav-mobile a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #e08e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

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

.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

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

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

.section-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.problem-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.problem-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #fee2e2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    color: #dc2626;
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.problem-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.story-section {
    position: relative;
}

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

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.story-text h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 15px;
    color: var(--text);
}

.story-quote {
    background: var(--light);
    padding: 25px;
    border-left: 4px solid var(--secondary);
    border-radius: 0 15px 15px 0;
    margin: 25px 0;
    font-style: italic;
    color: var(--primary);
}

.insight-section {
    background: var(--gradient-1);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.insight-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.insight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.insight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

.benefits-section {
    background: var(--white);
}

.benefits-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.benefit-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonials-section {
    background: linear-gradient(180deg, #ede9fe 0%, #ddd6fe 100%);
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--primary);
    font-size: 1rem;
}

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

.services-section {
    background: var(--white);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
}

.service-card.featured {
    border-color: var(--accent);
    position: relative;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-image {
    height: 180px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 60px;
    height: 60px;
    color: var(--white);
    opacity: 0.8;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

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

.service-price .currency {
    font-size: 1rem;
    color: var(--text-light);
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text);
    font-size: 0.9rem;
}

.service-features li svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.urgency-section {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: var(--white);
    text-align: center;
}

.urgency-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.urgency-content p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.timer-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 70px;
}

.timer-box .number {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.timer-box .label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.form-section {
    background: var(--gradient-2);
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-info h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text);
    margin-bottom: 15px;
}

.form-guarantees {
    margin-top: 25px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.guarantee-item svg {
    width: 22px;
    height: 22px;
    color: #10b981;
}

.contact-form {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.about-hero {
    background: var(--gradient-1);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-content {
    padding: 60px 0;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.value-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

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

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-hero {
    background: var(--gradient-1);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
}

.services-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    background: var(--gradient-1);
    padding: 30px;
    color: var(--white);
}

.service-detail-header h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-detail-body {
    padding: 30px;
}

.service-detail-body p {
    margin-bottom: 20px;
    color: var(--text);
}

.service-detail-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.contact-hero {
    background: var(--gradient-1);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
}

.contact-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-card {
    background: var(--light);
    padding: 30px;
    border-radius: 20px;
}

.contact-info-card h2 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.contact-item-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.contact-item-content h3 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-item-content p {
    color: var(--primary);
    font-weight: 500;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    padding: 20px;
}

.thanks-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.thanks-card h1 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.thanks-card p {
    color: var(--text);
    margin-bottom: 10px;
}

.thanks-service {
    background: var(--light);
    padding: 15px 25px;
    border-radius: 10px;
    margin: 25px 0;
    font-weight: 600;
    color: var(--secondary);
}

.legal-page {
    padding-top: 100px;
}

.legal-content {
    padding: 40px 0 80px;
}

.legal-content h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text);
}

.legal-content ul {
    margin: 15px 0 15px 25px;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text);
}

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

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
}

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

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 998;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-cta .btn {
    width: 100%;
    max-width: 400px;
}

.cookie-banner {
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

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

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 15px;
}

.cookie-banner a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.cta-inline {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.cta-inline h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.cta-inline p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.page-services .services-list {
    padding: 60px 0;
}

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

    .nav-desktop {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

    .problem-card {
        flex: 1 1 calc(50% - 10px);
    }

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

    .story-image {
        flex: 1;
    }

    .story-image img {
        height: 400px;
    }

    .story-text {
        flex: 1;
    }

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

    .insight-card {
        flex: 1 1 calc(50% - 15px);
    }

    .benefits-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 10px);
    }

    .testimonial-slider {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .form-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .form-info {
        flex: 1;
    }

    .contact-form {
        flex: 1;
        padding: 45px 35px;
    }

    .about-grid {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

    .about-image img {
        height: 400px;
    }

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

    .value-card {
        flex: 1;
    }

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

    .contact-info-card {
        flex: 1;
    }

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

    .footer-brand {
        flex: 2;
    }

    .footer-links {
        flex: 1;
    }

    .cookie-banner {
        left: auto;
        right: 20px;
        max-width: 400px;
        bottom: 100px;
    }

    .sticky-cta {
        padding: 20px;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .problem-card {
        flex: 1 1 calc(25% - 15px);
    }

    .insight-card {
        flex: 1 1 calc(25% - 20px);
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}
