:root {
    --color-primary: #c9a962;
    --color-secondary: #1a1a2e;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f8f6f0;
    --color-border: #e5e5e5;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
}

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

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

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

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    color: var(--color-secondary);
    line-height: 1.3;
    font-weight: 400;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-background);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--color-secondary);
    text-decoration: none;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

main {
    padding-top: 80px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-secondary);
}

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

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

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

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

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

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--color-background-alt) 0%, var(--color-background) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.hero-feature svg {
    flex-shrink: 0;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-illustration {
    max-width: 300px;
    width: 100%;
}

.page-hero {
    padding: 5rem 0 3rem;
    background: var(--color-background-alt);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-small {
    padding: 4rem 0 2rem;
}

.philosophy {
    padding: 5rem 0;
}

.philosophy .container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 2rem;
}

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

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

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
}

.value-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
}

.services-highlight {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.services-highlight h2 {
    text-align: center;
}

.services-highlight .section-label {
    text-align: center;
    display: block;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--color-background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-card.featured {
    flex: 1 1 100%;
    background: var(--color-secondary);
    color: var(--color-background);
}

.service-card.featured h3 {
    color: var(--color-background);
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.service-card.featured .service-link {
    color: var(--color-primary);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.stats {
    padding: 4rem 0;
    background: var(--color-secondary);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.process {
    padding: 5rem 0;
}

.process h2 {
    text-align: center;
}

.process .section-label {
    text-align: center;
    display: block;
}

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

.process-step {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.testimonials {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.testimonials h2 {
    text-align: center;
}

.testimonials .section-label {
    text-align: center;
    display: block;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: var(--color-background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-text-light);
}

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

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

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

.brands {
    padding: 4rem 0;
}

.brands h2 {
    text-align: center;
}

.brands .section-label {
    text-align: center;
    display: block;
}

.brands-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.brand-item {
    opacity: 0.7;
    transition: opacity var(--transition);
}

.brand-item:hover {
    opacity: 1;
}

.insights {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.insights h2 {
    text-align: center;
}

.insights .section-label {
    text-align: center;
    display: block;
}

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

.insight-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: var(--color-background);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.insight-icon {
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.insight-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.faq {
    padding: 5rem 0;
}

.faq h2 {
    text-align: center;
}

.faq .section-label {
    text-align: center;
    display: block;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    font-weight: 500;
}

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

.faq-icon {
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2a2a4e 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--color-background);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: var(--color-secondary);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-background);
    margin-bottom: 1rem;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: var(--color-background);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--color-background);
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
    padding: 0;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--color-secondary);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.cookie-option-info p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

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

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-border);
    border-radius: 26px;
    transition: var(--transition);
}

.toggle-slider::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input:checked + .toggle-slider {
    background: var(--color-primary);
}

.cookie-toggle input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
    text-align: right;
}

.story {
    padding: 5rem 0;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

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

.story-visual {
    flex: 1;
}

.story-illustration {
    width: 100%;
    max-width: 400px;
}

.milestones {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.milestones h2 {
    text-align: center;
}

.milestones .section-label {
    text-align: center;
    display: block;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 60px;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-primary);
    text-align: right;
}

.timeline-content {
    background: var(--color-background);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    flex: 1;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 1.5rem;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 3px solid var(--color-background-alt);
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.team {
    padding: 5rem 0;
}

.team h2 {
    text-align: center;
}

.team .section-label {
    text-align: center;
    display: block;
}

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

.team-member {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.member-avatar {
    margin-bottom: 1rem;
}

.member-avatar svg {
    display: block;
    margin: 0 auto;
}

.team-member h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.member-title {
    display: block;
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

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

.values-section h2 {
    text-align: center;
}

.values-section .section-label {
    text-align: center;
    display: block;
}

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

.value-card {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    background: var(--color-background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.philosophy-extended {
    padding: 4rem 0;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-block {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 1.5rem;
    border-left: 3px solid var(--color-primary);
}

.philosophy-block h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.philosophy-block p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.trust-indicators {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.trust-indicators h2 {
    text-align: center;
}

.trust-indicators .section-label {
    text-align: center;
    display: block;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.trust-item {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail-card {
    background: var(--color-background);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-background-alt);
}

.service-detail-icon {
    flex-shrink: 0;
}

.service-detail-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.service-price {
    font-size: 1.125rem;
    color: var(--color-primary);
    font-weight: 500;
    margin: 0;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-content > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
}

.service-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-tier {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 220px;
    padding: 1.5rem;
    background: var(--color-background-alt);
    border-radius: 8px;
}

.service-tier h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.tier-price {
    font-size: 1.125rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.service-tier p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

.process-section {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.process-section h2 {
    text-align: center;
}

.process-section .section-label {
    text-align: center;
    display: block;
}

.process-detailed {
    max-width: 800px;
    margin: 3rem auto 0;
}

.process-step-detailed {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

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

.step-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.comparison {
    padding: 5rem 0;
}

.comparison h2 {
    text-align: center;
}

.comparison .section-label {
    text-align: center;
    display: block;
}

.comparison-table {
    max-width: 800px;
    margin: 3rem auto 0;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: flex;
}

.comparison-header {
    background: var(--color-secondary);
    color: var(--color-background);
}

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

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: var(--color-background-alt);
}

.comparison-feature,
.comparison-tier,
.comparison-value {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.comparison-feature {
    flex: 1.5;
    text-align: left;
    font-weight: 500;
}

.comparison-header .comparison-feature {
    font-weight: 600;
}

.comparison-header .comparison-tier {
    font-weight: 600;
}

.comparison-value svg {
    display: inline-block;
}

.contact-info {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
    background: var(--color-background-alt);
    border-radius: 8px;
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.contact-detail a {
    color: var(--color-primary);
}

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

.company-info {
    padding: 4rem 0;
    background: var(--color-background-alt);
}

.company-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.company-description {
    flex: 1;
    min-width: 300px;
}

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

.company-details {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.company-detail {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-weight: 500;
}

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

.directions h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.direction-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.direction-icon {
    flex-shrink: 0;
}

.direction-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.direction-text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.appointment {
    padding: 4rem 0;
}

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

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

.appointment-list {
    text-align: left;
    display: inline-block;
    margin: 1rem 0;
}

.appointment-list li {
    color: var(--color-text-light);
}

.showroom-info {
    padding: 4rem 0;
    background: var(--color-background-alt);
}

.showroom-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.showroom-description {
    flex: 1;
    min-width: 300px;
}

.showroom-description h2 {
    font-size: 1.5rem;
}

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

.showroom-features {
    flex: 1;
    min-width: 300px;
}

.showroom-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.thank-you-section {
    padding: 6rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon svg {
    display: inline-block;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.thank-you-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 2rem 0;
}

.info-block h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-block p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.legal-content {
    padding: 3rem 0 5rem;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

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

.legal-text h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

.legal-text p,
.legal-text ul {
    color: var(--color-text-light);
}

.legal-text a {
    color: var(--color-primary);
}

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

.cookie-table {
    margin: 1.5rem 0;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

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

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-row span {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

.cookie-row.cookie-header {
    background: var(--color-background-alt);
    font-weight: 600;
}

.cookie-row.cookie-header span {
    color: var(--color-secondary);
}

@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        max-width: none;
    }

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

    .philosophy .container {
        flex-direction: column;
    }

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

    .timeline::before {
        left: 30px;
    }

    .timeline-year {
        width: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-background);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin-bottom: 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .process-step {
        flex: 1 1 100%;
    }

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

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .footer-brand {
        max-width: none;
    }

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

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

    .thank-you-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .company-details {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-feature,
    .comparison-tier,
    .comparison-value {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

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

    .brands-list {
        gap: 2rem;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-year {
        width: 15px;
        font-size: 0.75rem;
    }

    .timeline-content::before {
        left: -8px;
        width: 12px;
        height: 12px;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .service-tiers {
        flex-direction: column;
    }

    .contact-card {
        flex: 1 1 100%;
        max-width: none;
    }
}
