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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

.nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    max-width: 300px;
    background: var(--bg-white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    list-style: none;
    padding: 2rem 0;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.3s;
}

.nav-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.hero-visual {
    position: relative;
    height: 90vh;
    min-height: 500px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--bg-white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.95;
}

.story-intro {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.narrow-container {
    max-width: 700px;
    margin: 0 auto;
}

.opening-hook {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    line-height: 1.8;
}

.story-intro p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.visual-impact {
    background: var(--bg-light);
}

.split-visual {
    display: flex;
    flex-direction: column;
}

.visual-left {
    width: 100%;
}

.visual-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.visual-right {
    width: 100%;
    padding: 3rem 5%;
    display: flex;
    align-items: center;
}

.content-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-box p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    transition: 0.3s;
}

.inline-cta:hover {
    color: var(--accent-color);
}

.problem-amplify {
    padding: 4rem 5%;
    background: var(--bg-white);
}

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

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-card {
    background: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-light);
}

.insight-reveal {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--bg-white);
}

.insight-reveal h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.insight-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-building {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.trust-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.trust-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.trust-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

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

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
}

.testimonials-inline {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.testimonial {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-left: 5px solid var(--accent-color);
}

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

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

.benefits-reveal {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.section-title-center {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.benefits-visual-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

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

.benefit-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.services-preview {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.services-grid-funnel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-funnel {
    background: var(--bg-white);
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card-funnel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card-funnel.featured {
    border: 3px solid var(--accent-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-tag {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-tag.premium {
    background: var(--secondary-color);
}

.service-tag.exclusive {
    background: var(--primary-color);
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

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

.service-price-reveal {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

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

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

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

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

.cta-urgency {
    padding: 4rem 5%;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.urgency-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgency-container p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.urgency-note {
    font-style: italic;
    opacity: 0.9;
}

.btn-primary-large {
    padding: 1.2rem 3rem;
    background: white;
    color: var(--secondary-color);
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 2rem;
    transition: 0.3s;
}

.btn-primary-large:hover {
    background: var(--bg-light);
}

.form-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

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

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group a {
    color: var(--secondary-color);
}

.btn-submit {
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 1rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

.sticky-cta span {
    color: white;
    font-weight: 600;
    text-align: center;
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--accent-color);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-sticky:hover {
    background: var(--bg-light);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

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

.footer-col p {
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

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

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

.btn-accept:hover {
    background: #45a049;
}

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

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 300px;
    margin-top: 70px;
    overflow: hidden;
}

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

.about-content {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

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

.about-values {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.about-values h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-top: 4px solid var(--secondary-color);
}

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

.value-card p {
    color: var(--text-light);
}

.about-team {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.about-team h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-team p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.about-workshop {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.about-workshop h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.workshop-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.workshop-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.about-numbers {
    padding: 4rem 5%;
    background: var(--primary-color);
    color: white;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.number-card {
    text-align: center;
    padding: 2rem;
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.cta-box {
    background: var(--bg-light);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

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

.services-intro {
    padding: 3rem 5% 1rem;
    background: var(--bg-white);
}

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

.services-detailed {
    padding: 3rem 5%;
    background: var(--bg-white);
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    background: var(--bg-light);
    padding: 2rem;
}

.service-detail-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-price-box {
    background: white;
    padding: 1.5rem;
    margin: 2rem 0 1.5rem;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.price-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

.services-faq {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.services-faq h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
}

.services-cta {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.contact-content {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-info > p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-detail-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.contact-detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.contact-detail-item p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

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

.map-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-faq {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.contact-faq h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.thanks-page {
    min-height: calc(100vh - 300px);
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 600px;
    background: white;
    padding: 3rem 2rem;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.thanks-info {
    background: var(--bg-light);
    padding: 1rem;
    margin-bottom: 2rem;
}

.selected-service {
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.step-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.step-num {
    background: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    transition: 0.3s;
}

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

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

.legal-page {
    padding: 5rem 5% 3rem;
    background: var(--bg-white);
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-update {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

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

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

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        box-shadow: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .hero-title {
        font-size: 4rem;
    }

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

    .split-visual {
        flex-direction: row;
    }

    .visual-left {
        width: 50%;
    }

    .visual-left img {
        height: 100%;
        min-height: 500px;
    }

    .visual-right {
        width: 50%;
    }

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

    .problem-card {
        flex: 1;
        min-width: 250px;
    }

    .trust-layout {
        flex-direction: row;
    }

    .trust-visual {
        flex: 1;
    }

    .trust-content {
        flex: 1;
    }

    .benefits-visual-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1;
        min-width: 300px;
    }

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

    .service-card-funnel {
        flex: 1;
        min-width: 350px;
    }

    .sticky-cta {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

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

    .value-card {
        flex: 1;
        min-width: 250px;
    }

    .workshop-layout {
        flex-direction: row;
    }

    .workshop-text {
        flex: 1;
    }

    .workshop-image {
        flex: 1;
    }

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

    .number-card {
        flex: 1;
    }

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

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

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

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

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

    .contact-info {
        flex: 1;
    }

    .contact-map {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

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

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