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

:root {
    --color-primary: #667eea;
    --color-secondary: #764ba2;
    --color-accent: #f093fb;
    --color-earth-brown: #8B6F47;
    --color-earth-dark: #5C4033;
    --color-forest: #4A6741;
    --color-terracotta: #C4704B;
    --color-olive: #6B7B3A;
    --color-sand: #D4C5A9;
    --color-sand-light: #EDE6D6;
    --color-white: #ffffff;
    --color-off-white: #FAFAF7;
    --color-text: #2D2A26;
    --color-text-light: #5A5650;
    --color-text-muted: #8A847C;
    --color-border: #E0D8CC;
    --color-card-bg: rgba(255, 255, 255, 0.92);
    --color-card-bg-solid: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    --gradient-earth: linear-gradient(135deg, #8B6F47, #4A6741, #6B7B3A, #C4704B);
    --gradient-mesh: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #8B6F47 50%, #4A6741 75%, #C4704B 100%);
    --gradient-hero: linear-gradient(135deg, #2D2A26 0%, #5C4033 20%, #4A6741 40%, #667eea 60%, #764ba2 80%, #C4704B 100%);
    --gradient-soft: linear-gradient(135deg, var(--color-sand-light), var(--color-off-white), var(--color-sand-light));
    --shadow-sm: 0 1px 3px rgba(45, 42, 38, 0.08);
    --shadow-md: 0 4px 12px rgba(45, 42, 38, 0.1);
    --shadow-lg: 0 8px 32px rgba(45, 42, 38, 0.12);
    --shadow-xl: 0 16px 48px rgba(45, 42, 38, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --container-max: 1200px;
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
details summary:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-xl); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-xl);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.5;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-sand);
    color: var(--color-text);
}

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

.btn-outline {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

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

.btn-large {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--font-size-lg);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes meshFloat {
    0% { background-position: 0% 0%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 0%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(250, 250, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background: rgba(250, 250, 247, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text);
    font-weight: 700;
    font-size: var(--font-size-lg);
    text-decoration: none;
}

.logo:hover {
    color: var(--color-primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--color-text-light);
    font-weight: 500;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-4xl);
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: meshFloat 20s ease infinite;
    overflow: hidden;
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.hero-mesh-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.hero-mesh-1 {
    width: 500px;
    height: 500px;
    background: var(--color-accent);
    top: -100px;
    right: -100px;
    animation: pulseGlow 6s ease infinite;
}

.hero-mesh-2 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    bottom: -50px;
    left: -50px;
    animation: pulseGlow 8s ease infinite 2s;
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: var(--font-size-5xl);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #ffffff 0%, #f093fb 50%, #667eea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-2xl);
    max-width: 540px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 1s ease 0.3s both;
}

.social-proof {
    background: var(--color-card-bg-solid);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-lg) 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-content: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.proof-icon {
    display: flex;
    color: var(--color-primary);
    flex-shrink: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    border-radius: var(--radius-xl);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

.section-desc {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 auto;
}

.about-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.about-card {
    background: var(--color-card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(240,147,251,0.1));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
}

.about-card h3 {
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-xl);
}

.about-card p {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.features-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--color-off-white);
    overflow: hidden;
}

.features-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(102,126,234,0.06) 2px, transparent 2px);
    background-size: 40px 40px;
    pointer-events: none;
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.bento-item {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-rows: 1fr auto;
}

.bento-medium {
    grid-column: span 1;
}

.bento-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.bento-content {
    padding: var(--space-2xl);
}

.bento-content h3 {
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.bento-visual {
    overflow: hidden;
}

.bento-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bento-item:hover .bento-visual img {
    transform: scale(1.05);
}

.gallery-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    background: var(--color-card-bg-solid);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item figcaption {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    font-weight: 500;
}

.trust-section {
    padding: var(--space-4xl) 0;
    background: var(--color-off-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.trust-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74,103,65,0.1), rgba(107,123,58,0.1));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--color-forest);
}

.trust-card h3 {
    margin-bottom: var(--space-sm);
}

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

.trust-card a {
    font-weight: 600;
}

.how-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: meshFloat 20s ease infinite;
}

.how-section .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
}

.how-section .section-title {
    background: linear-gradient(135deg, #ffffff, #f093fb);
    -webkit-background-clip: text;
    background-clip: text;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.step-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: transform var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.step-card h3 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.step-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.faq-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--gradient-soft);
    overflow: hidden;
}

.faq-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(118,75,162,0.04) 2px, transparent 2px);
    background-size: 35px 35px;
    pointer-events: none;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    font-weight: 600;
    font-size: var(--font-size-base);
    color: var(--color-text);
    user-select: none;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    content: '';
}

.faq-icon {
    display: flex;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--color-primary);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--color-off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    color: var(--color-text);
    background: var(--color-card-bg-solid);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(102,126,234,0.15);
    outline: none;
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.contact-card h3 {
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-lg);
}

.contact-card p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-sm);
}

.contact-card a {
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.newsletter-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: meshFloat 20s ease infinite;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.newsletter-text h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    -webkit-text-fill-color: var(--color-white);
}

.newsletter-text p {
    color: rgba(255,255,255,0.8);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.newsletter-input-group {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-input-group input {
    flex: 1;
    padding: var(--space-md);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    backdrop-filter: blur(10px);
}

.newsletter-input-group input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.newsletter-consent {
    color: rgba(255,255,255,0.7);
}

.newsletter-consent a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
}

.site-footer {
    background: var(--color-text);
    color: rgba(255,255,255,0.7);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
}

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

.footer-about p {
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.site-footer h3 {
    color: var(--color-white);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-white);
}

.footer-contact p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xs);
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xs);
}

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

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    max-width: 700px;
    margin: var(--space-sm) auto 0;
}

.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base), opacity var(--transition-base);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--color-card-bg-solid);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    padding: var(--space-xl) var(--space-lg);
}

.cookie-inner p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    max-width: 800px;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-actions .btn {
    font-size: var(--font-size-sm);
    padding: var(--space-sm) var(--space-lg);
}

.cookie-actions .btn-outline {
    border-color: var(--color-border);
    color: var(--color-text-light);
}

.cookie-actions .btn-outline:hover {
    background: var(--color-sand-light);
    color: var(--color-text);
}

.cookie-settings-panel {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.cookie-setting-row {
    font-size: var(--font-size-sm);
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.cookie-setting-row input {
    accent-color: var(--color-primary);
}

.legal-hero {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: meshFloat 20s ease infinite;
    text-align: center;
}

.legal-hero-title {
    color: var(--color-white);
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-sm);
}

.legal-hero-date {
    color: rgba(255,255,255,0.7);
    font-size: var(--font-size-sm);
}

.legal-content {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--color-off-white);
}

.legal-card {
    background: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 0 auto;
}

.legal-card h2 {
    font-size: var(--font-size-2xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-card h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-card h3 {
    font-size: var(--font-size-lg);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-earth-dark);
}

.legal-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-card ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-card li {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-xs);
    list-style: disc;
}

.legal-card address {
    background: var(--color-sand-light);
    padding: var(--space-lg);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    line-height: 1.8;
    color: var(--color-text-light);
}

.legal-card a {
    font-weight: 600;
}

@media (max-width: 1024px) {
    :root {
        --font-size-5xl: 2.75rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 280px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-about {
        grid-column: span 2;
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2.25rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
        --space-4xl: 4rem;
        --space-3xl: 3rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-card-bg-solid);
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-lg);
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition-base), opacity var(--transition-base);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-wide {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: span 1;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
    }

    .legal-card {
        padding: var(--space-xl);
    }

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

@media (max-width: 480px) {
    :root {
        --font-size-5xl: 1.875rem;
        --font-size-4xl: 1.5rem;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-2xl));
        padding-bottom: var(--space-2xl);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

@media print {
    .site-header,
    .cookie-banner,
    .back-to-top,
    .newsletter-section {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        background: #fff;
        color: #000;
        min-height: auto;
        padding: var(--space-xl) 0;
    }

    .hero-title,
    .section-title {
        -webkit-text-fill-color: #000;
        color: #000;
    }
}
```

```javascript