/* 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.6;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
}

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

a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #764ba2;
}

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

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

.center {
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-cookie {
    background: #667eea;
    color: #fff;
}

.btn-cookie:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Navigation */
.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 900px;
    width: calc(100% - 40px);
}

.nav-brand {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #667eea;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

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

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

/* Hero Visual Section */
.hero-visual {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 120px 60px 60px;
    position: relative;
    z-index: 2;
}

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

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.hero-image {
    flex: 1;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

/* Story Hook Section */
.story-hook {
    padding: 100px 20px;
    background: #f9f9f9;
}

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

.lead {
    font-size: 24px;
    font-weight: 600;
    color: #e63946;
    margin-bottom: 25px;
    line-height: 1.4;
}

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

/* Visual Break - Split Section */
.visual-break {
    padding: 80px 0;
}

.split-visual {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    min-width: 50%;
}

.split-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: #333;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-large {
    max-width: 900px;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
    text-align: center;
    border: none;
}

.testimonial-large footer {
    margin-top: 25px;
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

/* Collection Showcase */
.collection-showcase {
    padding: 100px 20px;
}

.collection-showcase h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 20px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 25px;
}

.card-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.card-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.card-body p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.card-status {
    display: inline-block;
    padding: 8px 14px;
    background: #ffeaa7;
    color: #d63031;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: #fff;
}

/* Our Story */
.our-story {
    padding: 100px 20px;
    background: #f9f9f9;
}

.our-story h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
}

.our-story h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

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

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    font-size: 18px;
    line-height: 1.7;
}

/* Trust Signals */
.trust-signals {
    padding: 80px 20px;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

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

.testimonials-section h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 35px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card footer {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
}

/* Authenticity Process */
.authenticity-process {
    padding: 100px 20px;
}

.authenticity-process h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.process-steps {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: #667eea;
    opacity: 0.3;
    min-width: 80px;
}

.step h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Urgency Block */
.urgency-block {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.urgency-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.urgency-block h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.urgency-block p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Pricing Reveal */
.pricing-reveal {
    padding: 100px 20px;
}

.pricing-reveal h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    padding: 35px 30px 25px;
    background: #f9f9f9;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.pricing-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.pricing-body {
    padding: 35px 30px;
}

.price {
    font-size: 42px;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 25px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.btn-select {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

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

.order-form-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

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

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: #f9f9f9;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 20px;
    color: #666;
    margin-bottom: 35px;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 20px 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    color: #fff;
}

/* Page Hero */
.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.page-hero .hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* About Content */
.about-content {
    padding: 80px 20px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
}

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

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

.about-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.about-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    flex: 1 1 calc(25% - 23px);
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 16px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 17px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.cta-box {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    text-align: center;
}

.cta-box h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.cta-box .btn-primary {
    background: #fff;
    color: #667eea;
}

.cta-box .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #764ba2;
}

/* Services Page */
.services-intro {
    padding: 60px 20px;
}

.services-detailed {
    padding: 40px 20px 100px;
}

.service-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-height: 400px;
    border-radius: 20px;
}

.service-content {
    flex: 1;
}

.service-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 20px;
}

.service-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

.service-content p,
.service-content ol li {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #333;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

.service-note,
.service-calculation {
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    margin: 25px 0;
    font-size: 15px;
    line-height: 1.7;
}

.services-comparison {
    padding: 80px 20px;
    background: #f9f9f9;
}

.services-comparison h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.comparison-table td {
    font-size: 15px;
    color: #333;
}

.comparison-table tbody tr:hover {
    background: #f9f9f9;
}

.services-faq {
    padding: 80px 20px;
}

.services-faq h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
}

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

.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: #555;
}

.services-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.services-cta h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

/* Contact Page */
.contact-content {
    padding: 80px 20px;
}

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

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

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

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

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

.contact-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 8px;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
}

.visit-us {
    padding: 80px 20px;
    background: #f9f9f9;
}

.visit-info {
    margin-top: 30px;
}

.visit-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.appointment-box {
    padding: 25px;
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid #667eea;
    border-radius: 8px;
    margin-top: 30px;
}

.appointment-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.contact-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-cta h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    padding: 150px 20px 100px;
    display: flex;
    align-items: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 30px;
}

.thanks-page h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.thanks-info {
    margin: 50px 0;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 16px;
}

.thanks-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
}

.thanks-steps {
    text-align: left;
    margin: 25px 0;
    padding-left: 25px;
}

.thanks-steps li {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.thanks-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    text-align: left;
    margin-top: 20px;
}

.thanks-service {
    margin: 30px 0;
    padding: 30px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    text-align: left;
}

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

.thanks-contact {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.thanks-contact h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.next-steps {
    padding: 80px 20px;
    background: #f9f9f9;
}

.next-steps h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.suggestion-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 35px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.suggestion-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.suggestion-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-link {
    color: #667eea;
    font-weight: 600;
    font-size: 15px;
}

.btn-link:hover {
    color: #764ba2;
}

/* Legal Pages */
.legal-page {
    padding: 150px 20px 80px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.updated {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 25px;
    color: #1a1a1a;
}

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

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

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

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 25px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.cookies-table td {
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-visual {
        flex-direction: column;
    }

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

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

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .floating-nav {
        padding: 12px 20px;
        gap: 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

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

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

    .story-hook h2 {
        font-size: 32px;
    }

    .collection-showcase h2,
    .testimonials-section h2,
    .authenticity-process h2,
    .pricing-reveal h2 {
        font-size: 36px;
    }

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

    .trust-item,
    .testimonial-card,
    .pricing-card {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta a {
        padding: 14px 20px;
        font-size: 14px;
    }

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

    .service-visual {
        min-height: 300px;
    }

    .order-form {
        padding: 35px 25px;
    }

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

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

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

    .legal-page h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .cta-hero,
    .btn-primary,
    .btn-primary-large {
        padding: 14px 28px;
        font-size: 15px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-reject {
        width: 100%;
    }

    .step {
        flex-direction: column;
    }

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

    .comparison-table {
        font-size: 13px;
    }
}