/* MINIMAL PREMIUM ARCHETYPE - RESET & BASICS */

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

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #0f4c75;
    --color-highlight: #3282b8;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-border: #e0e0e0;
    --spacing-unit: 2rem;
    --max-width: 1400px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: var(--color-highlight);
}

/* MINIMAL PREMIUM TYPOGRAPHY */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: 1.5rem;
}

.display-large {
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.lead-text {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.6;
    color: var(--color-text-light);
    max-width: 50rem;
}

.body-large {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    line-height: 1.8;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
}

.section-title-center {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle-center {
    text-align: center;
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    color: var(--color-text-light);
    margin-top: -2rem;
    margin-bottom: 4rem;
}

/* NAVIGATION - MINIMAL STYLE */

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: transparent;
    position: relative;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

/* HERO - MINIMAL PREMIUM */

.hero-minimal {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-unit) 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content-wide {
    max-width: 1100px;
    text-align: center;
}

.hero-minimal h1 {
    margin-bottom: 3rem;
}

.hero-minimal .lead-text {
    margin: 0 auto 4rem;
}

/* PAGE HERO */

.page-hero-minimal {
    padding: 8rem 5% 6rem;
    background: var(--color-bg-alt);
    text-align: center;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* BUTTONS & CTAs */

.cta-primary,
.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--color-accent);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary:hover,
.btn-primary:hover {
    background: var(--color-highlight);
    transform: translateY(-2px);
    color: #ffffff;
}

.cta-secondary,
.btn-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-accent);
    background: transparent;
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background: var(--color-accent);
    color: #ffffff;
}

/* SPACER SECTION */

.spacer-section {
    height: 8rem;
}

/* INTRO STATEMENT */

.intro-statement {
    padding: 8rem 5%;
    background: var(--color-bg);
}

.statement-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.statement-number {
    font-size: clamp(6rem, 12vw, 12rem);
    font-weight: 900;
    color: #e8e8e8;
    line-height: 1;
    flex-shrink: 0;
}

.statement-text h2 {
    margin-bottom: 2rem;
}

/* VISUAL BREAK */

.visual-break {
    padding: 4rem 0;
}

.wide-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* PROBLEM INSIGHT */

.problem-insight {
    padding: 10rem 5%;
    background: var(--color-primary);
    color: #ffffff;
}

.insight-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
}

.insight-left {
    flex: 0 0 35%;
}

.insight-right {
    flex: 1;
}

.problem-insight h3 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
}

.problem-insight p {
    color: rgba(255, 255, 255, 0.9);
}

/* APPROACH SECTION */

.approach-section {
    padding: 10rem 5%;
    background: var(--color-bg-alt);
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.approach-item {
    flex: 1;
}

.approach-icon {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.approach-item h4 {
    margin-bottom: 1rem;
}

/* TRUST SECTION */

.trust-section {
    padding: 10rem 5%;
    background: var(--color-bg);
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-large {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.6;
    font-style: italic;
    color: var(--color-text);
    border-left: 4px solid var(--color-accent);
    padding-left: 3rem;
}

.testimonial-large cite {
    display: block;
    margin-top: 2rem;
    font-size: 1.125rem;
    font-style: normal;
    color: var(--color-text-light);
}

/* SERVICES PREVIEW */

.services-preview {
    padding: 10rem 5% 12rem;
    background: var(--color-bg-alt);
}

.services-header {
    margin-bottom: 6rem;
}

.services-grid-minimal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    padding: 3rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background: var(--color-primary);
    color: #ffffff;
    border: 3px solid var(--color-accent);
}

.service-card.featured h3,
.service-card.featured .price {
    color: #ffffff;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--color-accent);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 1.5rem;
}

.service-card.featured .service-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-header h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

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

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.service-card.featured .service-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

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

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

/* FORM SECTION */

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

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

.form-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

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

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

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

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

.btn-submit {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--color-accent);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-align: center;
}

.form-note a {
    text-decoration: underline;
}

/* FINAL CTA */

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

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

/* FOOTER */

.minimal-footer {
    background: var(--color-primary);
    color: #ffffff;
    padding: 5rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 0.75rem;
}

.footer-col a:hover {
    color: #ffffff;
}

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

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

/* STICKY CTA */

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--color-highlight);
    transform: scale(1.05);
    color: #ffffff;
}

/* COOKIE BANNER */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: #ffffff;
    padding: 2rem 5%;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s 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: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--color-accent);
    color: #ffffff;
}

.btn-accept:hover {
    background: var(--color-highlight);
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: #ffffff;
}

/* ABOUT PAGE */

.about-story {
    padding: 8rem 5%;
    background: var(--color-bg);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-image {
    flex: 0 0 45%;
}

.story-image img {
    width: 100%;
}

.story-content {
    flex: 1;
}

.values-section {
    padding: 10rem 5%;
    background: var(--color-bg-alt);
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.value-item h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.team-section {
    padding: 10rem 5%;
    background: var(--color-bg);
}

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

.team-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 0 0 300px;
    text-align: center;
}

.team-member img {
    width: 100%;
    margin-bottom: 1.5rem;
}

.team-role {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.credentials-section {
    padding: 8rem 5%;
    background: var(--color-bg-alt);
}

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

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

.credentials-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.125rem;
}

.cta-about {
    padding: 8rem 5%;
    background: var(--color-bg);
    text-align: center;
}

.cta-about-content {
    max-width: 700px;
    margin: 0 auto;
}

/* SERVICES PAGE */

.services-detail {
    padding: 6rem 5% 10rem;
    background: var(--color-bg);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: center;
}

.service-full {
    max-width: 1100px;
    margin: 0 auto 4rem;
    background: var(--color-bg-alt);
    padding: 3rem;
    position: relative;
}

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

.service-full.premium-service {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-badge-large {
    position: absolute;
    top: -20px;
    left: 3rem;
    background: var(--color-accent);
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-full-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-border);
}

.service-full-title h3 {
    margin-bottom: 0.5rem;
}

.service-duration {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.service-full-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
}

.service-full-content {
    display: flex;
    gap: 3rem;
}

.service-full-description {
    flex: 1;
}

.service-full-description h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-full-description ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-full-description li {
    margin-bottom: 0.75rem;
}

.service-full-action {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-service-large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--color-accent);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

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

.btn-service-large.featured-btn {
    background: var(--color-primary);
}

.btn-service-large.featured-btn:hover {
    background: var(--color-accent);
}

.btn-service-large.premium-btn {
    background: var(--color-accent);
}

.service-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-align: center;
}

.comparison-section {
    padding: 8rem 5%;
    background: var(--color-bg-alt);
}

.comparison-table {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
}

.comparison-row.comparison-header {
    background: var(--color-primary);
    color: #ffffff;
}

.comparison-row.comparison-header .comparison-cell {
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 1.5rem;
    text-align: center;
}

.comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
}

.faq-section {
    padding: 8rem 5%;
    background: var(--color-bg);
}

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

.faq-item {
    margin-bottom: 3rem;
}

.faq-item h4 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* CONTACT PAGE */

.contact-section {
    padding: 6rem 5% 10rem;
    background: var(--color-bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-info {
    flex: 0 0 40%;
}

.contact-detail {
    margin-bottom: 3rem;
}

.contact-detail h3 {
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-intro {
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.map-section {
    padding: 0;
}

.map-placeholder {
    position: relative;
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 5%;
    right: 5%;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    max-width: 500px;
}

/* THANKS PAGE */

.thanks-section {
    padding: 8rem 5%;
    background: var(--color-bg);
    min-height: 70vh;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

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

.thanks-details {
    background: var(--color-bg-alt);
    padding: 2rem;
    margin-bottom: 4rem;
    text-align: left;
}

.thanks-next-steps {
    margin-bottom: 4rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    flex: 1;
    text-align: center;
}

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.thanks-info {
    background: var(--color-bg-alt);
    padding: 2rem;
}

/* LEGAL PAGES */

.legal-content {
    padding: 6rem 5% 10rem;
    background: var(--color-bg);
}

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

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

.legal-container h2 {
    margin-top: 3rem;
    font-size: 2rem;
}

.legal-container h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
}

.legal-container h4 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
}

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.75rem;
}

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

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

.cookie-table th {
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
}

.cookie-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

#resetCookieConsent {
    margin-top: 1rem;
}

/* RESPONSIVE - MOBILE FIRST */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
    }

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

    .nav-menu a {
        color: #ffffff;
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .statement-container,
    .insight-grid,
    .approach-container,
    .story-container,
    .contact-container {
        flex-direction: column;
    }

    .insight-left,
    .story-image {
        flex: 1;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-full-header {
        flex-direction: column;
        gap: 1rem;
    }

    .service-full-content {
        flex-direction: column;
    }

    .service-full-action {
        flex: 1;
    }

    .comparison-row {
        flex-direction: column;
    }

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

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

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

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-unit: 1.5rem;
    }

    .minimal-nav {
        padding: 1.5rem 5%;
    }

    .hero-minimal,
    .page-hero-minimal,
    .intro-statement,
    .problem-insight,
    .approach-section,
    .trust-section,
    .services-preview,
    .form-section,
    .final-cta,
    .about-story,
    .values-section,
    .team-section,
    .credentials-section,
    .cta-about,
    .services-detail,
    .comparison-section,
    .faq-section,
    .contact-section,
    .thanks-section,
    .legal-content {
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .approach-container {
        gap: 2rem;
    }

    .values-grid {
        gap: 2rem;
    }

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

    .service-full {
        padding: 2rem;
    }

    .contact-container {
        gap: 3rem;
    }
}