/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #d4af37;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --text-dark: #1a202c;
    --text-light: #718096;
    --border-color: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

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

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

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

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

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

/* Hero Visual */
.hero-visual {
    margin-top: 70px;
    height: 90vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: var(--white);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Story Intro */
.story-intro {
    padding: 5rem 5%;
    background: var(--light-bg);
}

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

.story-lead {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Visual Break */
.visual-break {
    margin: 0;
}

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

/* Problem Amplify */
.problem-amplify {
    padding: 6rem 5%;
    background: var(--white);
}

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

.problem-amplify h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.problem-card {
    flex: 1 1 300px;
    padding: 2.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

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

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

/* Solution Reveal & Split Visual */
.solution-reveal {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.cta-inline {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-inline:hover {
    text-decoration: underline;
}

/* Immersive Showcase */
.immersive-showcase {
    padding: 6rem 5%;
    background: var(--white);
}

.section-title-center {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    flex: 1 1 320px;
}

.showcase-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.showcase-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

/* Trust Builder */
.trust-builder {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

.trust-builder h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.trust-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

/* Testimonials Visual */
.testimonials-visual {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

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

.testimonials-container h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-scroll {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.testimonial-card {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

.testimonial-author {
    font-weight: 600;
    opacity: 0.8;
}

/* Detail Focus */
.detail-focus {
    position: relative;
    height: 80vh;
    min-height: 600px;
}

.detail-split {
    width: 100%;
    height: 100%;
    position: relative;
}

.detail-image-large {
    width: 100%;
    height: 100%;
}

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

.detail-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 4rem 5%;
    color: var(--white);
}

.detail-text-overlay h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.detail-text-overlay p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
}

/* Process Reveal */
.process-reveal {
    padding: 6rem 5%;
    background: var(--white);
}

.process-reveal h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 4rem;
    text-align: center;
    color: var(--primary-color);
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1 1 220px;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

/* Benefits Asymmetric */
.benefits-asymmetric {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.benefits-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-large {
    flex: 2 1 400px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

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

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

.benefit-small {
    flex: 1 1 250px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

/* Urgency Soft */
.urgency-soft {
    padding: 5rem 5%;
    background: var(--white);
}

.urgency-soft h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.urgency-soft p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.urgency-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Pricing Reveal */
.pricing-reveal {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.pricing-reveal h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 320px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.badge-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.service-features span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

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

/* Form Section */
.form-section {
    padding: 6rem 5%;
    background: var(--white);
}

.form-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.form-group {
    margin-bottom: 1.8rem;
}

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col {
    flex: 1 1 200px;
}

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

.footer-col p,
.footer-col ul li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.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);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

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

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #c09a2a;
}

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

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

/* Page Hero */
.page-hero {
    margin-top: 70px;
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Styles */
.about-story {
    padding: 5rem 5%;
    background: var(--white);
}

.story-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.about-story h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

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

.value-card {
    flex: 1 1 250px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.about-team h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

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

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

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

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

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

.about-process h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.about-process > .container-narrow > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

.process-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 70px;
}

.process-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.btn-primary {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Services Page */
.services-intro {
    padding: 3rem 5%;
    background: var(--white);
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.service-item-full {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item-full.reverse {
    flex-direction: row-reverse;
}

.service-item-full .service-image {
    flex: 1;
    height: auto;
}

.service-item-full .service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item-full .service-content {
    flex: 1;
}

.service-item-full h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-item-full p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.service-item-full ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-item-full ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-includes {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
}

.service-price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

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

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

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

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

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

.services-cta {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

/* Contact Page */
.contact-info {
    padding: 4rem 5%;
    background: var(--white);
}

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

.contact-card {
    flex: 1 1 280px;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

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

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

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

.contact-card a {
    color: var(--accent-color);
    font-weight: 600;
}

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

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

.contact-details h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-details h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.contact-details p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.directions-list li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-map {
    margin-top: 2rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.map-placeholder {
    color: var(--text-light);
    font-style: italic;
}

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

.contact-visit h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-visit p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.visit-benefits {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.visit-benefits li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-social h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.contact-social p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--white);
}

.contact-cta {
    padding: 5rem 5%;
    background: var(--white);
    text-align: center;
}

/* Thanks Page */
.thanks-hero {
    margin-top: 70px;
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--accent-color), #c09a2a);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-info {
    padding: 5rem 5%;
    background: var(--white);
}

.thanks-info h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.service-summary {
    margin-top: 3rem;
}

.selected-service-box {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.selected-service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

.thanks-explore h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.thanks-explore > .container-narrow > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.explore-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.explore-card {
    flex: 1 1 250px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.explore-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

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

.thanks-contact h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.thanks-contact p {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-email a {
    color: var(--accent-color);
}

.contact-hours {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    margin-top: 70px;
    padding: 5rem 5%;
    background: var(--white);
}

.legal-page h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.legal-page h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--secondary-color);
}

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

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

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-page ul {
    list-style: disc;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-page strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

.gdpr-table th,
.cookie-table th {
    background: var(--light-bg);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.gdpr-table td,
.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .split-visual,
    .service-item-full {
        flex-direction: column;
    }

    .service-item-full.reverse {
        flex-direction: column;
    }

    .detail-text-overlay {
        padding: 2rem 5%;
    }

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

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

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .testimonials-scroll {
        gap: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 280px;
    }

    .process-timeline,
    .benefits-layout {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 70vh;
        min-height: 500px;
    }

    .problem-grid,
    .showcase-grid,
    .services-cards {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .trust-item {
        flex-direction: column;
        gap: 1rem;
    }

    .process-item,
    .step-item {
        flex-direction: column;
        gap: 1rem;
    }
}
