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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --accent-color: #f59e0b;
    --success-color: #10b981;
}

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

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

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

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

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

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

.main-nav {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text .lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-light);
}

.hero-visual {
    flex: 1;
    display: flex;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

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

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

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

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

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

.intro-statement h2 {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.intro-statement p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-light);
}

.split-feature {
    display: flex;
    min-height: 500px;
}

.split-feature.reverse {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 1;
    display: flex;
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

.feature-text h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.trust-builder {
    padding: 80px 0;
    background: var(--primary-color);
}

.stats-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 200px;
}

.testimonial-block {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-block blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 32px;
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.problem-amplify {
    padding: 100px 0;
    background: var(--bg-white);
}

.problem-split {
    display: flex;
    gap: 60px;
}

.problem-left {
    flex: 1;
}

.problem-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.problem-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.problem-right {
    flex: 1;
}

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

.problem-list li {
    padding: 16px 0 16px 40px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.problem-list li:before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-size: 24px;
}

.services-showcase {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-showcase h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro {
    font-size: 19px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.service-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0 10px 28px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-dark);
    position: relative;
}

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

.service-price {
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.service-price .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.social-proof {
    padding: 100px 0;
    background: var(--bg-white);
}

.social-proof h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.testimonial-author strong {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

.urgency-block {
    padding: 80px 0;
    background: var(--accent-color);
    text-align: center;
}

.urgency-block h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.urgency-block p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
}

.urgency-block strong {
    font-weight: 700;
    color: var(--bg-white);
}

.urgency-block .btn {
    margin-top: 20px;
}

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

.form-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-section > div > p {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 48px;
}

.contact-form {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group span {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-light);
}

.checkbox-group a {
    text-decoration: underline;
}

.final-cta {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.final-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.main-footer {
    background: var(--text-dark);
    padding: 60px 0 24px;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

.footer-col a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    padding: 24px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.sticky-cta:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.page-hero {
    padding: 100px 0 80px;
    background: var(--bg-light);
    text-align: center;
}

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

.page-hero .lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.content-visual {
    flex: 1;
}

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

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

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.mission-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.team-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.team-grid {
    display: flex;
    gap: 32px;
}

.team-card {
    flex: 1;
    text-align: center;
}

.team-photo {
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-role {
    display: block;
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    padding: 32px;
    background: var(--bg-white);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-section {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.services-detail {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-header {
    margin-bottom: 24px;
}

.service-detail-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.badge-popular {
    display: inline-block;
    margin-left: 12px;
    padding: 4px 12px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.service-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.service-benefits,
.service-includes {
    list-style: none;
    margin-bottom: 32px;
}

.service-benefits li,
.service-includes li {
    padding: 10px 0 10px 28px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
}

.service-benefits li:before,
.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-detail-price {
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-label {
    display: block;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-detail-image {
    flex: 1;
    max-width: 500px;
}

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

.comparison-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.comparison-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-item {
    padding: 24px;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.comparison-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.comparison-item p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.contact-info {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
}

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

.image-caption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 48px;
}

.next-steps {
    margin: 48px 0;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 8px;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

.steps-list {
    padding-left: 24px;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-info {
    margin: 48px 0;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.thanks-info h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
}

.social-proof-thanks {
    padding: 80px 0;
    background: var(--bg-white);
}

.social-proof-thanks h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.social-proof-thanks p {
    font-size: 17px;
    text-align: center;
    color: var(--text-light);
}

.legal-page {
    padding: 80px 0;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    margin: 48px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 19px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

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

    .mobile-toggle {
        display: flex;
    }

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

    .hero-content {
        padding: 60px 24px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .split-feature.reverse {
        flex-direction: column;
    }

    .feature-text {
        padding: 60px 24px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 24px;
    }

    .problem-split {
        flex-direction: column;
        gap: 32px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    .sticky-cta {
        bottom: 80px;
        right: 16px;
        left: 16px;
        text-align: center;
    }

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

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

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

    .value-card {
        flex: 1 1 100%;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 60px;
    }

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

    .service-detail-image {
        max-width: 100%;
    }

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

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

    .thanks-actions .btn {
        width: 100%;
    }
}