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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
    background: #4a9fb5;
    color: #fff;
}

.nav-menu a.active {
    background: #4a9fb5;
    color: #fff;
    font-weight: 600;
}

/* Trust Bar */
.trust-bar {
    background: #2d2d2d;
    color: #fff;
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
}

.trust-bar-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 30s linear infinite;
}

.trust-bar-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    white-space: nowrap;
    font-size: 1.1rem;
}

.trust-bar-content span {
    display: inline-block;
}

.trust-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    filter: brightness(1.2);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trust-bar:hover .trust-bar-track {
    animation-play-state: paused;
}

/* Hero Product Section */
.hero-product {
    background: #fff;
    padding: 4rem 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

/* Product Title */
.product-title {
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.star-decoration {
    font-size: 2.5rem;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.star-decoration-small {
    font-size: 1.5rem;
    color: #d4a574;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    text-align: right;
}

.product-title h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: #000;
    letter-spacing: -1px;
}

.character-image {
    margin-top: 1rem;
    text-align: center;
}

.character-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.hero-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Product Image */
.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 8px solid #4a9fb5;
}

/* Product Card */
.product-card {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border: 3px solid #d4a574;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card h2 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #000;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffa500;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    padding: 0.4rem 0;
    color: #333;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

.price {
    margin-bottom: 1rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    display: block;
}

.price .edition {
    font-size: 0.9rem;
    color: #666;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.qty-btn {
    background: #fff;
    border: 2px solid #ddd;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #f0f0f0;
    border-color: #999;
}

.quantity input {
    width: 60px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 0.5rem;
    font-size: 1rem;
}

.btn-buy-now {
    width: 100%;
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-buy-now:hover {
    background: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #333;
}

.badge .icon {
    font-size: 1.5rem;
}

/* What's Included Section */
.whats-included {
    background: #f9f9f9;
    padding: 4rem 0;
}

.whats-included h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: #000;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.included-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.included-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.included-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.included-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials Row */
.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-box {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border: 2px solid #d4a574;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.testimonial-box .stars {
    color: #ffa500;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.testimonial-box p {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #333;
}

.testimonial-box span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #4a9fb5;
    color: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: #357a8f;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Meet the Cast Section */
.meet-the-cast {
    background: #fff;
    padding: 4rem 0;
}

.meet-the-cast h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: #000;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cast-card {
    background: #fff;
    border: 3px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cast-card:hover {
    border-color: #4a9fb5;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cast-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0.8rem;
}

.cast-card p {
    font-weight: 700;
    color: #000;
    font-size: 1rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c5f6f 0%, #4a9fb5 100%);
    color: #fff;
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d4a574;
    font-weight: 300;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
    background: #fff;
}

.content-section.alt-bg {
    background: #f9f9f9;
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
}

.content-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.content-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f6f;
    margin: 2.5rem 0 1rem;
}

.content-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-text ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #4a9fb5;
    box-shadow: 0 10px 30px rgba(74, 159, 181, 0.2);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #4a9fb5;
    line-height: 1;
}

.pricing-unit {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #333;
    font-size: 0.95rem;
}

.pricing-btn {
    background: #4a9fb5;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.pricing-btn:hover {
    background: #3a8fa5;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4a574;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* From Sketch to Masterpiece Section */
.sketch-to-masterpiece {
    background: #f9f9f9;
    padding: 5rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.process-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.process-number {
    font-size: 3rem;
    font-weight: 900;
    color: #d4a574;
    margin-bottom: 1rem;
    line-height: 1;
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.process-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Expanding the Universe Section */
.expanding-universe {
    background: #fff;
    padding: 5rem 0;
}

.universe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.universe-card {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.universe-card:hover {
    border-color: #4a9fb5;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 159, 181, 0.2);
}

.universe-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.universe-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.universe-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.coming-badge {
    display: inline-block;
    background: #4a9fb5;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: #fff;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a9fb5;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #999;
}

/* Illustrated Section with Comic Backgrounds */
.illustrated-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
}

.illustrated-overlay {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(10, 10, 10, 0.95) 100%);
    padding: 4rem 0;
}

.illustrated-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.illustrated-section .section-intro {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 1.5rem auto 0;
}

.illustrated-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.illustrated-card {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.illustrated-card .card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.illustrated-card h3 {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.illustrated-card p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 6rem 0;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-section .section-intro {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 1.5rem auto 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    min-height: 450px;
    position: relative;
    border: 2px solid #333;
}

.process-card .card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.stage-label {
    background: #d4af37;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.process-card h3 {
    color: #d4af37;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.process-card h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-card p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Quality Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.quality-item h3 {
    color: #2c5f6f;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quality-item p {
    color: #555;
    line-height: 1.7;
}

/* Visual Hero Section */
.visual-hero {
    background: #f9f9f9;
    padding: 4rem 0;
}

.visual-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.visual-hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.visual-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c5f6f;
    margin-bottom: 1rem;
}

.visual-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Character Showcase */
.character-showcase {
    background: #fff;
    padding: 4rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.showcase-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.showcase-item img:hover {
    transform: translateY(-10px);
}

.showcase-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* Brand Showcase */
.brand-showcase {
    background: #f9f9f9;
    padding: 3rem 0;
}

.brand-showcase-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.brand-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.brand-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f6f;
    margin-bottom: 1rem;
}

.brand-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-title {
        text-align: center;
    }

    .star-decoration-small {
        text-align: center;
    }

    .cast-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .illustrated-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .visual-hero-image img {
        margin: 0 auto;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-showcase-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .brand-image {
        margin: 0 auto;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .product-title h1 {
        font-size: 2rem;
    }

    .included-grid,
    .testimonials-row {
        grid-template-columns: 1fr;
    }

    .cast-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .universe-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .product-title h1 {
        font-size: 1.5rem;
    }

    .cast-grid {
        grid-template-columns: 1fr;
    }
}

/* Reference Site Styles - About Section */
.reference-illustrated-section {
    position: relative;
    min-height: 100vh;
    background-image: url('IMG_2653.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.reference-illustrated-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.95) 100%);
}

.reference-illustrated-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem;
}

.reference-section-header {
    margin-bottom: 4rem;
}

.reference-section-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.reference-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: #f5f5f5;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.reference-section-description {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ddd;
    line-height: 1.8;
    max-width: 900px;
}

.reference-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.reference-grid-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.reference-grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.reference-grid-item-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.reference-grid-item-content {
    padding: 2.5rem;
}

.reference-grid-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.reference-grid-item-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

/* Reference Site Styles - Process Section */
.reference-process-showcase {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 8rem 0;
}

.reference-process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.reference-process-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.reference-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.reference-process-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
}

.reference-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.reference-process-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.reference-process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reference-process-card:hover .reference-process-image {
    transform: scale(1.05);
}

.reference-process-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #D4AF37;
    color: #0a0a0a;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.reference-process-info {
    padding: 2.5rem;
}

.reference-process-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 1rem;
}

.reference-process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.reference-process-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #bbb;
}

/* Responsive Design for Reference Styles */
@media (max-width: 968px) {
    .reference-section-title {
        font-size: 3rem;
    }
    
    .reference-premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reference-process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Bottom CTA Section - Matches Hero Product Card */
.bottom-cta {
    background: #f5f5f5;
    padding: 60px 20px;
}

.cta-card {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border: 3px solid #d4a574;
    border-radius: 15px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.cta-card h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: 1px;
}

.cta-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cta-rating .stars {
    color: #ffa500;
    font-size: 1.2rem;
}

.cta-rating .rating-text {
    font-size: 1rem;
    color: #666;
}

.cta-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-features li {
    padding: 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
    position: relative;
}

.cta-features li::before {
    content: "•";
    margin-right: 0.5rem;
    color: #000;
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-price {
    margin-bottom: 2rem;
    text-align: center;
}

.cta-price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    display: block;
    line-height: 1;
}

.cta-price .edition {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

.btn-buy-cta {
    width: 100%;
    max-width: 600px;
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 2rem;
    display: block;
    letter-spacing: 2px;
}

.btn-buy-cta:hover {
    background: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

.cta-trust .badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #333;
}

.cta-trust .badge .icon {
    font-size: 2rem;
}

.cta-trust .badge span:last-child {
    text-align: left;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-card h2 {
        font-size: 1.5rem;
    }
    
    .cta-price .amount {
        font-size: 2.5rem;
    }
    
    .btn-buy-cta {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-trust .badge {
        justify-content: center;
    }
}
