:root {
    --color-primary: #2d3436;
    --color-secondary: #6d5c4e;
    --color-accent: #8b7355;
    --color-light: #f8f6f3;
    --color-cream: #faf9f7;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-muted: #6b7280;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', -apple-system, sans-serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-primary);
    background: var(--color-white);
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 14px;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--color-accent);
    color: var(--color-white);
}

.cookie-accept:hover {
    background: var(--color-secondary);
}

.cookie-reject {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: var(--color-white);
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
}

.nav-floating.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    transition: var(--transition);
}

.nav-floating.scrolled .nav-logo {
    color: var(--color-primary);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.nav-floating.scrolled .nav-toggle span {
    background: var(--color-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-floating.scrolled .nav-links a {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: var(--transition);
}

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

/* Hero Section */
.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

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

.hero-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    padding: 18px 40px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-white);
    opacity: 0.7;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-white);
    margin: 0 auto;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

/* Section Eyebrow */
.section-eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

/* Problem Section */
.problem-section {
    padding: 120px 0;
    background: var(--color-cream);
}

.problem-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 60px;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.problem-card {
    flex: 1 1 280px;
    padding: 40px;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.problem-icon {
    color: var(--color-accent);
    margin-bottom: 24px;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--color-muted);
    font-size: 16px;
}

/* Story Section */
.story-section {
    padding: 0;
}

.story-split {
    display: flex;
    flex-wrap: wrap;
}

.story-image {
    flex: 1 1 50%;
    min-height: 500px;
}

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

.story-content {
    flex: 1 1 50%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-light);
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 24px;
    line-height: 1.3;
}

.story-content p {
    color: var(--color-muted);
    margin-bottom: 16px;
}

.btn-text {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    color: var(--color-accent);
    position: relative;
}

.btn-text::after {
    content: ' →';
}

/* Insight Section */
.insight-section {
    padding: 120px 0;
    background: var(--color-primary);
    color: var(--color-white);
}

.insight-header {
    text-align: center;
    margin-bottom: 60px;
}

.insight-header .section-eyebrow {
    color: rgba(255,255,255,0.6);
}

.insight-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
}

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

.insight-visual {
    flex: 1 1 300px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 120px;
    line-height: 1;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    font-size: 16px;
    opacity: 0.8;
    margin-top: 16px;
}

.insight-text {
    flex: 1 1 400px;
}

.insight-text p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.insight-list {
    list-style: none;
    margin-bottom: 24px;
}

.insight-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Trust Strip */
.trust-strip {
    padding: 60px 0;
    background: var(--color-accent);
    color: var(--color-white);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

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

.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
}

.trust-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 100px 0;
    background: var(--color-cream);
}

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

.testimonial-large p {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial-large cite {
    font-style: normal;
}

.cite-name {
    display: block;
    font-weight: 600;
    font-size: 16px;
}

.cite-location {
    display: block;
    color: var(--color-muted);
    font-size: 14px;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
}

.benefits-stacked {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.benefit-row {
    display: flex;
    flex-wrap: wrap;
}

.benefit-row-reverse {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1 1 50%;
    min-height: 400px;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-content {
    flex: 1 1 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-light);
}

.benefit-row-reverse .benefit-content {
    background: var(--color-cream);
}

.benefit-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
}

.benefit-content p {
    color: var(--color-muted);
}

/* CTA Mid */
.cta-mid {
    padding: 100px 0;
    background: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
}

.cta-mid h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 16px;
}

.cta-mid p {
    opacity: 0.9;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--color-white);
    color: var(--color-secondary);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Testimonials Grid */
.testimonials-grid {
    padding: 120px 0;
    background: var(--color-white);
}

.testimonials-grid h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 60px;
}

.testimonials-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.testimonial-card {
    flex: 1 1 280px;
    padding: 40px;
    background: var(--color-light);
}

.testimonial-card-featured {
    flex: 1 1 100%;
    background: var(--color-cream);
    font-size: 18px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 14px;
    color: var(--color-muted);
}

/* Services Preview */
.services-preview {
    padding: 120px 0;
    background: var(--color-cream);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.services-header p {
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 350px;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--color-muted);
    font-size: 15px;
    margin-bottom: 16px;
}

.service-price {
    font-weight: 600;
    color: var(--color-accent);
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
}

.urgency-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.urgency-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 20px;
}

.urgency-content p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 16px;
}

.urgency-note {
    font-weight: 600;
    color: var(--color-accent);
}

/* Form Section */
.form-section {
    padding: 120px 0;
    background: var(--color-light);
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1 1 400px;
}

.form-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 20px;
}

.form-intro > p {
    color: var(--color-muted);
    margin-bottom: 32px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-muted);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

.consultation-form {
    flex: 1 1 400px;
    background: var(--color-white);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

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

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.form-row .form-group {
    flex: 1 1 200px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--color-muted);
    margin-top: 16px;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}

.final-cta p {
    opacity: 0.9;
    margin-bottom: 32px;
}

/* Footer */
.site-footer {
    padding: 80px 0 40px;
    background: var(--color-dark);
    color: var(--color-white);
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 15px;
}

.footer-links {
    flex: 1 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column h4 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.6;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    opacity: 0.8;
    font-size: 15px;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

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

.btn-sticky {
    display: block;
    padding: 16px 28px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

/* Page Styles */
.page-header {
    padding: 160px 0 80px;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
}

.page-header p {
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.9;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin: 48px 0 20px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    margin-bottom: 16px;
    color: var(--color-muted);
}

.page-content ul {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--color-muted);
}

.page-content li {
    margin-bottom: 8px;
}

/* About Page */
.about-intro {
    padding: 80px 0;
    background: var(--color-cream);
}

.about-intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 24px;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
}

.about-image-section {
    padding: 0;
}

.about-image-full {
    height: 500px;
    overflow: hidden;
}

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

.about-values {
    padding: 100px 0;
}

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

.value-item {
    flex: 1 1 280px;
    text-align: center;
    padding: 40px;
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 16px;
}

.value-item p {
    color: var(--color-muted);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1 1 300px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 24px;
}

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

.contact-detail h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 18px;
}

.contact-map {
    flex: 1 1 400px;
    min-height: 400px;
    background: var(--color-light);
}

/* Services Page */
.services-full {
    padding: 80px 0;
}

.service-full-card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    background: var(--color-light);
}

.service-full-card:nth-child(even) {
    flex-direction: row-reverse;
    background: var(--color-cream);
}

.service-full-image {
    flex: 1 1 400px;
    min-height: 350px;
}

.service-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-full-content {
    flex: 1 1 400px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-full-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 16px;
}

.service-full-content p {
    color: var(--color-muted);
    margin-bottom: 16px;
}

.service-full-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 16px;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    background: var(--color-light);
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--color-muted);
    font-size: 18px;
    margin-bottom: 16px;
}

.thanks-content .btn-secondary {
    margin-top: 32px;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 40px;
    text-align: center;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 40px 0 16px;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--color-muted);
}

.legal-content li {
    margin-bottom: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        color: var(--color-white);
        font-size: 24px;
    }

    .story-content,
    .benefit-content {
        padding: 48px 24px;
    }

    .consultation-form {
        padding: 32px 24px;
    }

    .footer-links {
        gap: 40px;
    }

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

    .service-full-content {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .container,
    .container-narrow {
        padding: 0 16px;
    }

    .problem-card,
    .value-item {
        padding: 24px;
    }

    .trust-items {
        gap: 40px;
    }

    .trust-number {
        font-size: 36px;
    }

    .stat-number {
        font-size: 80px;
    }
}
