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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

/* Navigation - Floating Style for Visual-First Archetype */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

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

/* Hero Visual Section - Image Dominant */
.hero-visual {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-image-overlay {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 18px 50px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Intro Hook Section */
.intro-hook {
    padding: 100px 20px;
    background: #fafafa;
}

.intro-hook h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 300;
}

/* Story Visual Section - Split Layout */
.story-visual {
    padding: 0;
}

.story-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.story-content h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

/* Problem Amplify Section */
.problem-amplify {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ffffff;
}

.problem-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Insight Reveal Section */
.insight-reveal {
    padding: 120px 20px;
    background: #f9f9f9;
    text-align: center;
}

.insight-reveal h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.insight-text {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

/* Visual Showcase - Image Grid */
.visual-showcase {
    padding: 0;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
}

.showcase-item {
    position: relative;
    flex: 1;
    min-width: 300px;
    height: 500px;
    overflow: hidden;
}

.showcase-item.large {
    flex: 2;
    height: 700px;
}

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

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

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
}

.showcase-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.showcase-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

/* Trust Build Section */
.trust-build {
    padding: 100px 20px;
    background: #ffffff;
}

.trust-build h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: #fafafa;
    border-left: 4px solid #1a1a1a;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
}

/* CTA Inline Section */
.cta-inline {
    padding: 80px 20px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-inline h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Benefits Grid Section */
.benefits-grid {
    padding: 100px 20px;
    background: #f9f9f9;
}

.benefits-grid h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Visual Divider */
.visual-divider {
    height: 400px;
    overflow: hidden;
}

.divider-image {
    width: 100%;
    height: 100%;
}

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

/* Detail Focus Section */
.detail-focus {
    padding: 100px 20px;
    background: #ffffff;
}

.detail-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.detail-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.detail-text {
    flex: 1;
}

.detail-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.detail-image {
    flex: 1;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 20px;
    background: #fef9f5;
}

.urgency-box {
    padding: 50px;
    background: #fff5eb;
    border-left: 5px solid #ff6b35;
    text-align: center;
}

.urgency-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.urgency-note {
    font-weight: 700;
    color: #ff6b35;
}

/* Services Reveal Section */
.services-reveal {
    padding: 100px 20px;
    background: #ffffff;
}

.services-reveal h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1;
    min-width: 350px;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2a2a2a;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

.form-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 50px;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

/* Final CTA Section */
.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
}

.final-cta-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-final {
    display: inline-block;
    padding: 20px 60px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-cta-content span {
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 30px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #f0f0f0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #1a1a1a;
    color: #ffffff;
    padding: 30px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #f0f0f0;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Footer */
.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 80px 20px 40px;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

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

.footer-col ul li a {
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* Page Hero */
.page-hero {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

/* About Page Styles */
.about-intro {
    padding: 100px 20px;
    background: #ffffff;
}

.about-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.about-image-full {
    width: 100%;
    height: 100%;
}

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

.about-values {
    padding: 100px 20px;
    background: #fafafa;
}

.about-values h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-story {
    padding: 100px 20px;
    background: #ffffff;
}

.story-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.about-craftsmanship {
    padding: 100px 20px;
    background: #fafafa;
}

.about-craftsmanship h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-craftsmanship p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.craftsmanship-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.craftsmanship-list li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    padding-left: 30px;
    position: relative;
}

.craftsmanship-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.about-mission {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.mission-box {
    max-width: 900px;
    margin: 0 auto;
}

.mission-box h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.mission-text {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 25px;
}

.about-cta {
    padding: 100px 20px;
    background: #f9f9f9;
    text-align: center;
}

.about-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-cta p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 35px;
}

/* Services Page Styles */
.services-page {
    padding: 80px 20px;
    background: #ffffff;
}

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

.services-intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro-text p {
    font-size: 18px;
    color: #4a4a4a;
}

.services-benefits {
    padding: 80px 20px;
    background: #fafafa;
}

.services-benefits h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-item a {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-faq {
    padding: 80px 20px;
    background: #fafafa;
}

.contact-faq h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-cta {
    padding: 80px 20px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Thanks Page Styles */
.thanks-page {
    padding: 150px 20px 100px;
    background: #f9f9f9;
}

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

.thanks-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.thanks-details {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.thanks-next {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-steps {
    counter-reset: step-counter;
}

.thanks-steps li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    counter-increment: step-counter;
}

.thanks-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    background: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.thanks-contact {
    font-size: 16px;
    color: #666;
}

.thanks-contact a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 150px 20px 100px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 15px;
    color: #999;
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-bottom: 25px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.legal-page ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-page a:hover {
    opacity: 0.7;
}

.legal-back {
    margin-top: 60px;
    text-align: center;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    font-weight: 700;
    background: #fafafa;
    color: #1a1a1a;
}

.cookies-table td {
    color: #4a4a4a;
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #ffffff;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

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

    .story-content {
        padding: 50px 30px;
    }

    .detail-split {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .btn-secondary,
    .btn-primary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-hook h2,
    .insight-reveal h2,
    .trust-build h2,
    .benefits-grid h2,
    .services-reveal h2 {
        font-size: 32px;
    }

    .showcase-item,
    .showcase-item.large {
        min-width: 100%;
    }

    .service-card {
        min-width: 100%;
    }

    .problem-grid,
    .benefits-layout,
    .values-grid {
        flex-direction: column;
    }

    .testimonial-flow {
        flex-direction: column;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .final-cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .nav-floating {
        padding: 15px 20px;
    }

    .nav-brand {
        font-size: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-hero {
        padding: 14px 35px;
    }

    .intro-hook {
        padding: 60px 20px;
    }

    .intro-hook h2 {
        font-size: 26px;
    }

    .lead-text {
        font-size: 18px;
    }

    .story-content {
        padding: 40px 25px;
    }

    .story-content h3 {
        font-size: 24px;
    }

    .urgency-box {
        padding: 30px 20px;
    }

    .service-content {
        padding: 30px 25px;
    }

    .service-price {
        font-size: 26px;
    }

    .form-section,
    .trust-build,
    .benefits-grid {
        padding: 60px 20px;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-grid {
        gap: 40px;
    }
}